        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(145deg, #fef9f0 0%, #f8f4ea 100%);
            color: #2c2418;
            line-height: 1.5;
        }

        :root {
            --orange-primary: #F97316;
            --orange-deep: #EA580C;
            --orange-soft: #FF8C42;
            --orange-light: #FFE4D6;
            --card-bg: rgba(255, 250, 240, 0.85);
            --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 1.5rem;
        }

        .logos-header {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(249, 115, 22, 0.15);
        }

        .logo-card-primary {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            background: transparent !important;
            backdrop-filter: none;
            border: none !important;
            box-shadow: none !important;
            padding: 0;
            margin-left: 1rem;
        }
        .logo-img-primary {
            width: 80px;
            height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
            transition: transform 0.2s ease;
        }
        .logo-img-primary:hover {
            transform: scale(1.02);
        }
        .logo-info-primary h3 {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #EA580C, #F97316);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin: 0;
            line-height: 1.2;
        }
        .logo-info-primary p {
            font-size: 0.75rem;
            color: #6b4c34;
            letter-spacing: 0.3px;
        }

        .logos-secondary {
            display: flex;
            align-items: center;
            gap: 1.8rem;
            flex-wrap: wrap;
        }
        .logo-card-mini {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: transparent;
            border: none;
            padding: 0.2rem 0;
            transition: opacity 0.2s;
        }
        .logo-card-mini:hover {
            opacity: 0.8;
        }
        .logo-img-mini {
            width: 48px;
            height: 48px;
            object-fit: contain;
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.05));
            border-radius: 12px;
            background: rgba(255, 245, 235, 0.6);
            padding: 6px;
        }
        .glass-card {
            background: var(--card-bg);
            backdrop-filter: blur(4px);
            border-radius: 2rem;
            border: 1px solid rgba(249, 115, 22, 0.2);
            box-shadow: var(--shadow);
            transition: transform 0.2s ease;
        }
        .glass-card:hover {
            transform: translateY(-2px);
            border-color: rgba(249, 115, 22, 0.4);
        }
        .btn-primary {
            background: linear-gradient(105deg, #F97316, #EA580C);
            border: none;
            padding: 0.9rem 2rem;
            border-radius: 3rem;
            font-weight: 700;
            font-size: 1rem;
            color: white;
            cursor: pointer;
            transition: all 0.25s;
            box-shadow: 0 6px 14px rgba(249,115,22,0.25);
        }
        .btn-primary:hover {
            transform: scale(1.02);
            background: linear-gradient(105deg, #FF8C42, #F97316);
        }
        .btn-excel {
            background: linear-gradient(105deg, #1e7e34, #28a745);
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 3rem;
            font-weight: 600;
            font-size: 0.9rem;
            color: white;
            cursor: pointer;
            transition: all 0.25s;
            margin-top: 1rem;
        }
        .btn-excel:hover {
            transform: scale(1.02);
            background: linear-gradient(105deg, #28a745, #34ce57);
        }
        .btn-outline {
            background: white;
            border: 1.5px solid #F97316;
            padding: 0.7rem 1.5rem;
            border-radius: 3rem;
            color: #EA580C;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: 0.2s;
            text-align: center;
        }
        .btn-outline:hover {
            background: #FFF0E6;
            transform: translateY(-2px);
        }
        .btn-copy {
            background: linear-gradient(105deg, #28a745, #1e7e34);
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-weight: 600;
            font-size: 0.8rem;
            color: white;
            cursor: pointer;
            transition: all 0.25s;
            margin-right: 0.5rem;
        }
        .btn-copy:hover {
            transform: scale(1.02);
            background: linear-gradient(105deg, #34ce57, #28a745);
        }
        .category-btn {
            background: white;
            border: 1px solid rgba(249, 115, 22, 0.4);
            padding: 0.7rem 1.3rem;
            border-radius: 2rem;
            font-weight: 600;
            color: #5a3e2b;
            cursor: pointer;
            transition: 0.2s;
            font-size: 0.9rem;
        }
        .category-btn.active, .category-btn:hover {
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            border-color: transparent;
            box-shadow: 0 6px 12px rgba(249,115,22,0.2);
        }
        .form-input {
            width: 100%;
            padding: 1rem 1.2rem;
            background: white;
            border: 1px solid rgba(249, 115, 22, 0.3);
            border-radius: 1.8rem;
            font-size: 1rem;
            color: #2c2418;
            outline: none;
            transition: 0.2s;
        }
        .form-input:focus {
            border-color: #F97316;
            box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
        }
        .suggestions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        .suggestion-card {
            background: white;
            border-radius: 1.2rem;
            padding: 1rem;
            border: 1px solid #ffe0cc;
            transition: 0.2s;
            cursor: pointer;
            box-shadow: 0 4px 12px rgba(0,0,0,0.02);
        }
        .suggestion-card:hover {
            background: #FFFBF5;
            border-color: #F97316;
            transform: translateY(-3px);
            box-shadow: 0 12px 20px -10px rgba(249,115,22,0.2);
        }
        .domain-badge {
            background: #FFF0E6;
            padding: 0.2rem 0.7rem;
            border-radius: 30px;
            font-size: 0.8rem;
            font-family: monospace;
            color: #EA580C;
            display: inline-block;
        }
        .examples-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 0.8rem;
            margin-top: 1rem;
        }
        .example-site {
            background: white;
            border-radius: 1rem;
            padding: 0.6rem;
            text-align: center;
            border: 1px solid #ffdecb;
            transition: 0.2s;
            cursor: pointer;
        }
        .example-site:hover {
            background: #FFF3EA;
            border-color: #F97316;
        }
        .example-site a {
            color: #EA580C;
            text-decoration: none;
            font-size: 0.75rem;
            word-break: break-all;
            display: block;
        }
        h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(to left, #EA580C, #F97316);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .badge-event {
            background: #FFF0E6;
            border-radius: 40px;
            padding: 0.3rem 1rem;
            font-size: 0.8rem;
            width: fit-content;
            border: 1px solid #F97316;
            color: #EA580C;
        }
        .toast-msg {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #F97316;
            padding: 12px 24px;
            border-radius: 60px;
            color: white;
            font-weight: 600;
            z-index: 1000;
            transform: translateY(100px);
            transition: 0.3s;
            opacity: 0;
        }
        .toast-msg.show { transform: translateY(0); opacity: 1; }
        .website-preview-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.85);
            backdrop-filter: blur(8px);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }
        .modal-content {
            width: 90%;
            max-width: 1100px;
            height: 80%;
            background: #fff;
            border-radius: 2rem;
            overflow: hidden;
            border: 2px solid #F97316;
        }
        .modal-content iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        .close-modal {
            background: #F97316;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 3rem;
            margin-top: 1rem;
            cursor: pointer;
            font-weight: bold;
        }

        .admin-panel {
            background: #1a1a2e;
            color: #eee;
            border-radius: 1rem;
            padding: 1.5rem;
            margin-top: 2rem;
            direction: ltr;
            text-align: left;
            font-family: 'Inter', monospace;
            display: none;
            border: 2px solid #F97316;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }
        .admin-panel h4 {
            color: #F97316;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 1.2rem;
        }
        .admin-panel table {
            width: 100%;
            border-collapse: collapse;
            color: #fff;
            font-size: 0.85rem;
        }
        .admin-panel th, .admin-panel td {
            border-bottom: 1px solid #F97316;
            padding: 0.7rem 0.5rem;
            text-align: left;
        }
        .admin-panel th {
            background: #2a2a4a;
            color: #F97316;
        }
        .close-icon {
            float: left;
            cursor: pointer;
            font-size: 1.5rem;
        }

        .custom-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            z-index: 3000;
            justify-content: center;
            align-items: center;
        }
        .custom-modal-card {
            background: white;
            max-width: 600px;
            width: 90%;
            border-radius: 2rem;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 25px 40px rgba(0,0,0,0.2);
            border: 1px solid #F97316;
        }
        .discount-card {
            background: linear-gradient(135deg, #FFE4D6, #FFF2E9);
            border-radius: 1.5rem;
            padding: 1.5rem;
            margin-top: 1rem;
            border: 1px solid #F97316;
        }
        .discount-code-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: #F97316;
            color: white;
            padding: 10px;
            border-radius: 40px;
            font-size: 1.4rem;
            letter-spacing: 2px;
            margin: 15px 0;
        }
        .discount-code {
            font-weight: bold;
            font-family: monospace;
            font-size: 1.3rem;
        }
        .flex-between {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .footer-social {
            display: flex;
            gap: 1.2rem;
            align-items: center;
            margin-bottom: 0.8rem;
        }
        .footer-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: linear-gradient(145deg, #FFF5EB, #FFE8DD);
            border-radius: 50%;
            color: #EA580C;
            font-size: 1.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(249, 115, 22, 0.3);
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .footer-social a:hover {
            background: linear-gradient(135deg, #F97316, #EA580C);
            color: white;
            transform: translateY(-6px) scale(1.08);
            border-color: transparent;
            box-shadow: 0 12px 20px rgba(249,115,22,0.3);
        }
        .footer-social i {
            font-size: 1.9rem;
        }
        @media (max-width: 800px) {
            h1 { font-size: 2rem; }
            .logo-img-primary { width: 60px; height: 60px; }
            .logo-info-primary h3 { font-size: 1.3rem; }
            .footer-social a {
                width: 45px;
                height: 45px;
            }
            .footer-social i { font-size: 1.6rem; }
            .custom-modal-card { max-width: 95%; padding: 1rem; }
        }
        .empty-state {
            text-align: center;
            padding: 2rem;
            opacity: 0.7;
            color: #7e6b58;
        }
        
        iframe {
            border-radius: 1rem;
            border: 1px solid #F97316;
            background: white;
        }
