/* -------------------------
   Modernes Redesign - Frontstyle.css
   (voll kompatibel zu allen JS-Funktionen)
   ------------------------- */

:root{
    --header-height: 88px;
    --footer-height: 72px;
    --container-max: 1200px;
    --accent-1: #608996;
    --accent-2: #2F3F48;
    --muted: #666;
    --h1accent: #FAC41E;
    --h1subaccent: #FAC41E;
    /*--h1accent: #148cd1;*/
    /*--h1subaccent: #148cd1;*/
}

/* ------- BASE ------- */
*{
    box-sizing: border-box;
    margin:0;
    padding:0;
}

html,body{
    height:100%;
}

body{
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial;
    line-height:1.4;
    color:#1b2b2f;

    /* Hintergrund-Funktion NICHT entfernt */
/*    background-image: url("background3.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

    -webkit-font-smoothing:antialiased;*/

    /* Hintergrundverlauf */
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--accent-2) 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;

}

/* Container */
.container{
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ------- FIXED HEADER ------- */
.main-header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:var(--header-height);
    z-index:9999;

    /* OPTIMALER HEADER (kein Doppelhintergrund) */
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    display:flex;
    align-items:center;
}

.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
}

/* ---- Logo Fix ---- */
.logo-img{
    width:74px;
    height:74px;
    object-fit: contain; /* NICHT mehr cover → kein Abschneiden */
    padding:4px;
    border-radius:0;
    background: transparent;
}

/* Title */
.header-left{
    display:flex;
    align-items:center;
    gap:14px;
}

.header-title h1{
    font-size:22px;
    /*color:var(--accent-2);*/
    color:var(--h1accent);
    margin-bottom:4px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.header-title .subtitle{
    font-size:15px;
    /*color: var(--muted);*/
    color: var(--h1subaccent);
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* ------- NAVIGATION ------- */
.header-nav{
    display:flex;
    gap:12px;
    align-items:center;
}

/* Dropdown Button */
.dropbtn{
    padding:10px 14px;
    background: rgba(255,255,255,0.9);
    border:1px solid rgba(34,50,60,0.06);
    border-radius:9px;
    font-weight:600;
    font-size:14px;
    color:var(--accent-2);
    cursor:pointer;
    transition: .12s ease;
}

.dropbtn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Dropdown Menu */
.dropdown{
    position:relative;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:54px;
    left:0;
    min-width:200px;
    background: rgba(255,255,255,0.98);
    border-radius:12px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    overflow:hidden;
    z-index:10000;
}

.dropdown-content a{
    display:block;
    padding:10px 16px;
    text-decoration:none;
    color:#163033;
    font-weight:500;
}

.dropdown-content a:hover{
    background: rgba(96,137,150,0.08);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content{
    display:block;
}

/* Right area placeholder */
.header-right{
    min-width:96px;
}


/* ------- PAGE LAYOUT ------- */
.site-wrapper{
    padding-top: calc(var(--header-height) + 20px);
}

.page-content{
    padding:30px 0 40px;
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
}

/* ------- HERO ------- */
.hero{
    margin-bottom:20px;
}

.hero-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;

    background: rgba(255,255,255,0.83);
    padding:24px;
    border-radius:14px;
    backdrop-filter: blur(3px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.hero-text h2{
    font-size:20px;
    color:var(--accent-2);
}

.lead{
    font-size:14px;
    color:var(--muted);
}

/* Search Box */
.search-box{
    display:flex;
    gap:12px;
    width:560px;
    max-width:100%;
}

#searchInput{
    flex:1;
    padding:14px 16px;
    border-radius:10px;
    border:1px solid rgba(33,33,33,0.06);
    background:#fff;
    font-size:15px;
}

.search-btn{
    padding:12px 18px;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color:white;
    border:none;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
    transition: .12s;
}

.search-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(47,63,72,0.12);
}

/* ------- RESULTS ------- */
.results{
    margin-top:20px;
    padding:20px;
    background: rgba(255,255,255,0.92);
    border-radius:12px;
    box-shadow: 0 18px 60px rgba(0,0,0,0.12);
    display:none;
}

.results.show{
    display:block;
    animation: slideUp .28s ease-out;
}

@keyframes slideUp{
    from{ opacity:0; transform:translateY(8px); }
    to{ opacity:1; transform:translateY(0); }
}

/* Reputation */
.reputation-badge{
    padding:10px 18px;
    border-radius:999px;
    font-weight:700;
    font-size:15px;
    margin-bottom:12px;
}

.reputation-clean{ background:#4caf50; color:white; }
.reputation-low{ background:#8bc34a; color:white; }
.reputation-medium{ background:#ff9800; color:white; }
.reputation-high{ background:#f44336; color:white; }
.reputation-critical{ background:#d32f2f; color:white; }

/* Score meter */
.score-meter{
    width:100%;
    height:18px;
    background:#e9eef0;
    border-radius:999px;
    overflow:hidden;
}

.score-fill{
    height:100%;
    border-radius:999px;
    transition: width 1s ease-out;
}

/* Info grid */
.info-grid{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap:16px;
    margin-top:16px;
}

.info-card{
    padding:16px;
    background:#fff;
    border-radius:10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.info-card h3{
    color:var(--accent-1);
    margin-bottom:8px;
    font-size:14px;
}

/* Reason list */
.reasons-list{
    list-style:none;
    margin-top:12px;
}

.reasons-list li{
    background: rgba(96,137,150,0.10);
    padding:10px;
    border-left:4px solid #ffc107;
    border-radius:6px;
    margin-bottom:8px;
}

/* Buttons */
.delist-btn, .submit-btn{
    padding:12px 20px;
    border:none;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color:white;
    border-radius:10px;
    font-weight:700;
    cursor:pointer;
}

.delist-btn:hover, .submit-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(47,63,72,0.12);
}

/* ------- MODAL ------- */
.modal{
    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.45);
    z-index:2000;
    padding:30px;
    z-index: 99999 !important;   /* garantiert über Header GPT Erweiterung*/
    background: rgba(0, 0, 0, 0.6); /* optional: schöner Hintergrund GPT Erweiterung*/
}

.modal-content{
    background:#fff;
    padding:28px;
    border-radius:14px;
    max-width:680px;
    margin:auto;
    position:relative;
    box-shadow: 0 30px 90px rgba(0,0,0,0.25);
    position: relative;/*GPT erweiterung*/
    z-index: 100000 !important; /* Inhalt über dem Overlay  GPT Erweiterung*/
}

.modal-close{
    position:absolute;
    top:12px;
    right:14px;
    font-size:26px;
    cursor:pointer;
}

/* Form styling */
.form-group{
    margin-bottom:14px;
}

.form-group label{
    font-weight:700;
    margin-bottom:6px;
    display:block;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:10px 12px;
    border:1px solid rgba(0,0,0,0.1);
    border-radius:8px;
    background:#fff;
}

.form-group textarea{
    min-height:120px;
    resize:vertical;
}

/* ------- CARD GRIDS ------- */
.stats,.links,.infobox{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap:16px;
    margin-top:18px;
}

.stat-card,.links-card,.infobox-card{
    background:#fff;
    padding:16px;
    border-radius:10px;
    text-align:center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.stat-number{
    font-size:20px;
    font-weight:800;
    color:var(--accent-1);
}

.stat-label{
    font-size:13px;
    color:var(--muted);
}


/* ------- FOOTER ------- */
.site-footer{
    height: var(--footer-height);
    background: rgba(255,255,255,0.9);
    border-top: 1px solid rgba(0,0,0,0.08);
    display:flex;
    align-items:center;
    box-shadow: 0 -6px 20px rgba(0,0,0,0.03);
}

.footer-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.footer-links a{
    margin-right:18px;
    text-decoration:none;
    font-weight:600;
    color:var(--accent-2);
}

.footer-copy{
    color:var(--muted);
    font-size:13px;
}

/* ------- RESPONSIVE ------- */
@media (max-width: 900px){
    .header-nav{ display:none; }
    .header-right{ display:none; }
    .hero-inner{ flex-direction:column; }
}

@media (max-width: 520px){
    .search-box{ flex-direction:column; }
    .logo-img{ width:52px; height:52px; }
}

/* --------------------------------------------------
   �Groessen-Upgrade fuer alle Karten, Boxen + Inhalte
   -------------------------------------------------- */

/* HERO größer */
.hero-inner{
    padding: 32px;
    border-radius: 18px;
}

.hero-text h2{
    font-size: 24px;
}

.lead{
    font-size: 16px;
}

#searchInput{
    padding: 16px 20px;
    font-size: 17px;
}

.search-btn{
    padding: 14px 22px;
    font-size: 16px;
}

/* RESULTS Box größer */
.results{
    padding: 28px;
    font-size: 17px;
}

/* Reputation Badge größer */
.reputation-badge{
    padding: 14px 24px;
    font-size: 17px;
}

/* Meter größer */
.score-meter{
    height: 22px;
    margin: 18px 0;
}

/* Info Grid – Cards größer */
.info-card{
    padding: 22px;
    font-size: 16px;
}

.info-card h3{
    font-size: 16px;
    margin-bottom: 10px;
}

/* Reasons größer */
.reasons-list li{
    padding: 14px;
    font-size: 16px;
}

/* Buttons größer */
.delist-btn, .submit-btn{
    padding: 14px 24px;
    font-size: 16px;
}

/* Modal Content größer */
.modal-content{
    padding: 36px;
}

.form-group input,
.form-group textarea{
    padding: 14px 16px;
    font-size: 16px;
}

/* STAT / INFO / LINKS Karten größer */
.stat-card, .links-card, .infobox-card{
    padding: 24px;
    border-radius: 14px;
}

.stat-number{
    font-size: 26px;
}

.stat-label{
    font-size: 15px;
}

/* Links-Card Buttons größer */
.links-card .search-btn{
    padding: 14px 20px;
    font-size: 16px;
}

/* Abstand zwischen "View List" und "Copy Link" Buttons vergrößern */
.links-card .search-btn{
    margin-bottom: 10px; /* sorgt für vertikalen Abstand */
}

.links-card button + button{
    margin-top: 10px; /* zusätzlicher Abstand falls Buttons als Block angezeigt werden */
}

/* Deaktiviere reines Hover-Öffnen (überschreibt vorherige Regel) */
.dropdown:hover .dropdown-content {
    display: none !important;
}

/* Öffnen per Klasse .open (wird per JS gesetzt) */
.dropdown.open .dropdown-content {
    display: block !important;
}

/*Dropdown Position*/
/* NAVIGATION wieder korrekt zentrieren */
.header-nav {
    display: flex;
    justify-content: center;      /* zentriert horizontal */
    align-items: center;          /* vertikal ausrichten */
    gap: 20px;                    /* Abstand zwischen Dropdowns */
    flex-grow: 1;                 /* nutzt mittleren Bereich voll aus */
}

/* Verhindert Rechtsverschiebung durch auto-Margin */
.header-right {
    margin-left: 0 !important;
}

/* Entfernt ungewollte automatische Stretch-Effekte */
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Cookie Banner Styles - Einfügen in frontend/public/css/frontstyle.css */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(47, 63, 72, 0.98);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #4fc3f7;
    text-decoration: underline;
}

.cookie-content a:hover {
    color: #81d4fa;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #4caf50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
    transform: translateY(-2px);
}

.btn-decline {
    background: #f44336;
    color: white;
}

.btn-decline:hover {
    background: #da190b;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-buttons button {
        flex: 1;
    }
}


/**********************/
/*Whois*/
        .whois-search-section {
            margin-bottom: 30px;
        }

        .whois-hero {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 14px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .whois-hero h2 {
            color: var(--accent-2);
            margin-bottom: 10px;
        }

        .whois-hero p {
            color: var(--muted);
            font-size: 16px;
        }

        .whois-input-group {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .whois-input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid rgba(96, 137, 150, 0.2);
            border-radius: 10px;
            font-size: 17px;
            background: #fff;
            transition: all 0.3s;
        }

        .whois-input:focus {
            outline: none;
            border-color: var(--accent-1);
            box-shadow: 0 0 0 3px rgba(96, 137, 150, 0.1);
        }

        .whois-btn {
            padding: 16px 32px;
            background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .whois-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(47, 63, 72, 0.15);
        }

        .whois-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .whois-results {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 14px;
            padding: 30px;
            box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
            display: none;
            animation: slideUp 0.3s ease-out;
        }

        .whois-results.show {
            display: block;
        }

        .whois-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(96, 137, 150, 0.15);
        }

        .whois-domain {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-2);
        }

        .whois-status {
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 14px;
        }

        .status-available {
            background: #4caf50;
            color: white;
        }

        .status-registered {
            background: #2196f3;
            color: white;
        }

        .status-error {
            background: #f44336;
            color: white;
        }

        .whois-section {
            margin-bottom: 30px;
        }

        .whois-section h3 {
            color: var(--accent-1);
            font-size: 18px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .whois-data-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 16px;
        }

        .whois-data-item {
            background: #f8f9fa;
            padding: 16px;
            border-radius: 10px;
            border-left: 4px solid var(--accent-1);
        }

        .whois-label {
            font-weight: 700;
            color: var(--accent-2);
            font-size: 13px;
            text-transform: uppercase;
            margin-bottom: 6px;
        }

        .whois-value {
            color: #333;
            font-size: 15px;
            word-break: break-word;
        }

        .whois-raw {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #ddd;
            max-height: 400px;
            overflow-y: auto;
        }

        .whois-raw pre {
            margin: 0;
            font-family: 'Courier New', monospace;
            font-size: 13px;
            line-height: 1.6;
            color: #333;
            white-space: pre-wrap;
            word-wrap: break-word;
        }

        .loading-spinner {
            text-align: center;
            padding: 40px;
        }

        .spinner {
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--accent-1);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .error-message {
            background: #ffebee;
            color: #c62828;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #f44336;
        }

        .nameservers-list, .contacts-list {
            list-style: none;
            padding: 0;
        }

        .nameservers-list li, .contacts-list li {
            background: #fff;
            padding: 12px 16px;
            margin-bottom: 8px;
            border-radius: 8px;
            border-left: 3px solid var(--accent-1);
        }

        .toggle-raw-btn {
            margin-top: 20px;
            padding: 12px 24px;
            background: rgba(96, 137, 150, 0.1);
            color: var(--accent-2);
            border: 2px solid var(--accent-1);
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .toggle-raw-btn:hover {
            background: var(--accent-1);
            color: white;
        }
        
        /**********************/
        /*Roadmap*/

        .roadmap-intro {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .roadmap-intro h2 {
            /*color: #2F3F48;*/
            color: #608996;
            margin-bottom: 15px;
        }

        .roadmap-intro p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

        .roadmap-phase {
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .roadmap-phase h3 {
            color: #608996;
            font-size: 24px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .phase-timeline {
            color: #999;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-item {
            padding: 12px 15px;
            margin-bottom: 8px;
            background: #f8f9fa;
            border-left: 4px solid #608996;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
        }

        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .feature-status {
            font-size: 20px;
            min-width: 24px;
        }

        .status-done {
            border-left-color: #4caf50;
        }

        .status-progress {
            border-left-color: #ff9800;
        }

        .status-planned {
            border-left-color: #2196f3;
        }

        .feature-text {
            flex: 1;
        }

        .feature-badge {
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .badge-optional {
            background: #e3f2fd;
            color: #1976d2;
        }

        .legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .legend-icon {
            font-size: 20px;
        }




        /*ROADMAP ÜBERSCHREIBEN*/
         .roadmap-intro {
            text-align: center;
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .roadmap-intro h2 {
            color: #2F3F48;
            margin-bottom: 15px;
        }

        .roadmap-intro p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
        }

        .roadmap-phase {
            margin-bottom: 40px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .roadmap-phase h3 {
            color: #608996;
            font-size: 24px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .phase-timeline {
            color: #999;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-item {
            padding: 12px 15px;
            margin-bottom: 8px;
            background: #f8f9fa;
            border-left: 4px solid #608996;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
        }

        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .feature-status {
            font-size: 20px;
            min-width: 24px;
        }

        .status-done {
            border-left-color: #4caf50;
        }

        .status-progress {
            border-left-color: #ff9800;
        }

        .status-planned {
            border-left-color: #2196f3;
        }

        .feature-text {
            flex: 1;
        }

        .feature-badge {
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
        }

        .badge-optional {
            background: #e3f2fd;
            color: #1976d2;
        }

        .legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .legend-icon {
            font-size: 20px;
        }
