/*
Theme Name: Downie
Theme URI: https://downiemac.cn
Author: GAO TAOJIE
Author URI: https://downiemac.cn
Description: Downie landing page theme generated from prototype HTML
Version: 1.0.0
Text Domain: downie
*/


        @font-face {
            font-family: 'MiSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Regular.ttf') format('truetype');
            font-weight: 400;
        }
        @font-face {
            font-family: 'MiSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Semibold.ttf') format('truetype');
            font-weight: 600;
        }
        @font-face {
            font-family: 'MiSans';
            src: url('https://assets-persist.lovart.ai/agent-static-assets/MiSans-Bold.ttf') format('truetype');
            font-weight: 700;
        }

        :root {
            --bg-dark: #110c1c;
            --card-bg: #201b31;
            --primary-blue: #7c61f2;
            --primary-magenta: #e62e6e;
            --text-white: #ffffff;
            --text-gray: #b0a8c2;
            --gradient-red: linear-gradient(135deg, #ff4f4f 0%, #ff7a7a 100%);
            --gradient-purple: linear-gradient(135deg, #7c61f2 0%, #e62e6e 100%);
        }

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

        /* Skip Link for Accessibility */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary-blue);
            color: white;
            padding: 8px 16px;
            text-decoration: none;
            z-index: 10000;
            border-radius: 0 0 4px 0;
        }

        .skip-link:focus {
            top: 0;
        }

        /* Breadcrumbs */
        .breadcrumbs {
            padding: 16px 0;
            margin-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .breadcrumbs .container {
            padding: 0;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            font-size: 13px;
        }

        .breadcrumb-home {
            color: var(--text-gray);
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }

        .breadcrumb-home:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-home i {
            font-size: 18px;
        }

        .breadcrumb-separator {
            color: rgba(255, 255, 255, 0.2);
            margin: 0 8px;
            display: flex;
            align-items: center;
        }

        .breadcrumb-separator i {
            font-size: 16px;
        }

        .breadcrumbs a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumbs a:hover {
            color: var(--primary-blue);
        }

        .breadcrumb-current {
            color: var(--text-white);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .breadcrumbs {
                padding: 12px 0;
            }

            .breadcrumbs .container {
                font-size: 13px;
            }

            .breadcrumb-separator {
                margin: 0 6px;
            }
        }

        body {
            font-family: 'MiSans', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-white);
            width: 100%;
            min-width: 320px;
            overflow-x: hidden;
            line-height: 1.5;
        }

        /* Abstract Background */
        .bg-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
            will-change: transform;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.25;
            will-change: transform;
        }

        .shape-1 {
            width: 600px;
            height: 600px;
            background: #7c61f2;
            top: -150px;
            left: -150px;
        }

        .shape-2 {
            width: 500px;
            height: 500px;
            background: #e62e6e;
            top: 300px;
            right: -100px;
        }

        .shape-3 {
            width: 550px;
            height: 550px;
            background: #2b1f4a;
            bottom: -150px;
            left: 30%;
        }

        /* Reduce background effects on mobile for performance */
        @media (max-width: 768px) {
            .bg-shapes {
                display: none;
            }
        }

        /* Container */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
            backdrop-filter: blur(10px);
            background: rgba(17, 12, 28, 0.8);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

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

        .logo {
            font-size: 24px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo i {
            color: #ff4f4f;
            font-size: 28px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        nav a {
            color: var(--text-white);
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #7c61f2;
        }

        /* Hero Section */
        .hero {
            padding: 120px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .hero-content {
            flex: 1;
            padding-right: 60px;
        }

        .hero h1 {
            font-size: 80px;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #b0a8c2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 24px;
            color: var(--text-gray);
            margin-bottom: 40px;
            max-width: 600px;
        }

        .cta-group {
            display: flex;
            gap: 20px;
        }

        .btn {
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.2s, box-shadow 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }

        .btn-primary {
            background: var(--gradient-red);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 79, 79, 0.4);
        }

        .btn-secondary {
            background: rgba(124, 97, 242, 0.2);
            border: 1px solid rgba(124, 97, 242, 0.5);
            color: white;
        }

        .btn-secondary:hover {
            background: rgba(124, 97, 242, 0.4);
        }

        .hero-image {
            flex: 1;
            position: relative;
        }

        .hero-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
        }

        /* Badges */
        .badges {
            padding: 20px 0 60px;
            display: flex;
            gap: 15px;
            justify-content: flex-start;
        }

        .badge {
            background: rgba(255, 255, 255, 0.1);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 0;
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .section-subtitle {
            text-align: center;
            font-size: 20px;
            color: var(--text-gray);
            margin-bottom: 60px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            justify-content: center;
        }

        .pricing-grid > :only-child {
            grid-column: 2 / span 2;
            max-width: 400px;
            margin: 0 auto;
        }

        .pricing-card {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.05);
            transition: transform 0.3s;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-blue);
        }

        .price-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-gray);
        }

        .price-amount {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
        }

        .price-btn {
            width: 100%;
            padding: 12px;
            border-radius: 8px;
            background: rgba(255,255,255,0.1);
            color: white;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
            transition: background 0.3s;
        }

        .price-btn:hover {
            background: var(--primary-blue);
        }

        .best-value .price-amount {
            color: #ff4f4f;
        }

        .best-value .price-btn {
            background: var(--gradient-red);
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: rgba(0,0,0,0.2);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .feature-item {
            display: flex;
            gap: 24px;
            padding: 30px;
            background: var(--card-bg);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(124, 97, 242, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-icon i {
            font-size: 28px;
            color: #7c61f2;
        }

        .feature-content h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .feature-content p {
            color: var(--text-gray);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            text-align: center;
        }

        .testimonial-quote {
            font-size: 28px;
            font-style: italic;
            color: var(--text-white);
            max-width: 900px;
            margin: 0 auto 30px;
            line-height: 1.4;
        }

        .testimonial-author {
            color: var(--text-gray);
            font-size: 18px;
        }

        /* Tips Section */
        .tips {
            padding: 100px 0;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .tip-card {
            background: var(--card-bg);
            padding: 40px;
            border-radius: 16px;
            position: relative;
            border: 1px solid rgba(255,255,255,0.05);
        }

        .tip-icon {
            font-size: 40px;
            color: rgba(255, 255, 255, 0.1);
            position: absolute;
            top: 20px;
            left: 20px;
        }

        .tip-text {
            position: relative;
            z-index: 1;
            font-size: 18px;
            line-height: 1.6;
            color: var(--text-gray);
        }

        /* FAQ Section */
        .faq {
            padding: 100px 0;
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding: 24px 0;
        }

        .faq-question {
            font-size: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            color: var(--text-gray);
            margin-top: 10px;
            line-height: 1.6;
            display: none; /* In a real scenario, JS would toggle this */
            display: block; /* Shown for design visual */
            margin-top: 15px;
            font-size: 16px;
        }

        /* Screenshots */
        .screenshots {
            padding: 100px 0;
            text-align: center;
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .screenshot-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            border: 1px solid rgba(255,255,255,0.1);
            background: #2b263b;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .screenshot-card img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .screenshot-card:hover img {
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            padding: 80px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            background: #0b0812;
            text-align: center;
        }

        .footer-links {
            margin-bottom: 30px;
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: white;
        }

        .copyright {
            color: rgba(255,255,255,0.3);
            font-size: 14px;
        }

        .copyright a {
            color: rgba(255,255,255,0.3);
            text-decoration: none;
        }

        .copyright a:hover {
            color: rgba(255,255,255,0.5);
        }

        /* ============================================
           RESPONSIVE DESIGN - Mobile First
        ============================================ */

        /* Tablet & Below (1024px) */
        @media (max-width: 1024px) {
            .container {
                padding: 0 20px;
            }

            .hero h1 {
                font-size: 56px;
            }

            .hero p {
                font-size: 18px;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid > :only-child {
                grid-column: 1 / span 2;
                max-width: 400px;
                margin: 0 auto;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .tips-grid {
                grid-template-columns: 1fr;
            }

            .screenshots-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile (768px) */
        @media (max-width: 768px) {
            /* Header Mobile */
            .header-inner {
                height: 60px;
            }

            .mobile-menu-btn {
                display: block !important;
                font-size: 24px;
                cursor: pointer;
                z-index: 200;
            }

            nav {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: rgba(17, 12, 28, 0.98);
                backdrop-filter: blur(20px);
                padding: 20px;
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                z-index: 150;
                visibility: hidden;
            }

            nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            nav ul {
                flex-direction: column;
                gap: 20px;
            }

            nav a {
                display: block;
                padding: 12px 16px;
                border-radius: 8px;
                background: rgba(255,255,255,0.05);
            }

            /* Hero Mobile */
            .hero {
                flex-direction: column;
                padding: 60px 0;
                text-align: center;
            }

            .hero-content {
                padding-right: 0;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
                margin-bottom: 30px;
            }

            .badges {
                flex-wrap: wrap;
                justify-content: center;
            }

            .cta-group {
                flex-direction: column;
                width: 100%;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .hero-image {
                margin-top: 40px;
            }

            /* Pricing Mobile */
            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .pricing-grid > :only-child {
                grid-column: 1;
                max-width: 100%;
            }

            /* Section Titles Mobile */
            .section-title {
                font-size: 28px;
            }

            .section-subtitle {
                font-size: 16px;
            }

            /* Feature Item Mobile */
            .feature-item {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            /* FAQ Mobile */
            .faq-question {
                font-size: 16px;
            }

            /* Tips Mobile */
            .tip-card {
                padding: 30px 20px;
            }

            /* Footer Mobile */
            .footer-links {
                flex-wrap: wrap;
                gap: 15px;
            }

            .container {
                padding: 0 16px;
            }
        }

        /* Small Mobile (480px) */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 28px;
            }

            .section-title {
                font-size: 24px;
            }

            .pricing-card {
                padding: 20px;
            }

            .price-amount {
                font-size: 28px;
            }

            /* Mobile Menu Button */
            .mobile-menu-btn {
                font-size: 20px;
            }

            /* Logo */
            .logo {
                font-size: 18px;
            }

            .logo i {
                font-size: 22px;
            }
        }

        /* Mobile Menu Button (Hidden on Desktop) */
        .mobile-menu-btn {
            display: none;
            color: white;
            background: none;
            border: none;
            padding: 8px;
        }

        /* Performance: Reduce animations on low-end devices */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            .shape {
                filter: blur(60px);
            }
        }

        /* High DPI Displays */
        @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
            /* Ensure images look sharp on retina displays */
        }

        /* ============================================
           BUY PAGE STYLES
        ============================================ */

        .buy-section {
            padding: 80px 0 120px;
            min-height: calc(100vh - 180px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(to right, #fff, #b0a8c2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
        }

        /* Pricing Cards Container */
        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 900px;
            margin: 0 auto 80px;
        }

        /* Pricing Card */
        .pricing-card {
            background: var(--card-bg);
            border-radius: 24px;
            padding: 48px 40px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--primary-magenta));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(124, 97, 242, 0.3);
            box-shadow: 0 20px 60px rgba(124, 97, 242, 0.15);
        }

        .pricing-card:hover::before {
            opacity: 1;
        }

        /* Featured Card */
        .pricing-card-featured {
            background: linear-gradient(145deg, rgba(124, 97, 242, 0.15), var(--card-bg));
            border-color: rgba(124, 97, 242, 0.3);
        }

        .pricing-card-featured::before {
            opacity: 1;
        }

        /* Card Badge */
        .card-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }

        .card-badge-hot {
            background: var(--gradient-red);
            color: white;
        }

        /* Card Title */
        .card-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-white);
        }

        .card-subtitle {
            font-size: 14px;
            color: var(--text-gray);
            margin-bottom: 24px;
        }

        /* Card Price */
        .card-price {
            display: flex;
            align-items: flex-start;
            justify-content: center;
            margin-bottom: 32px;
        }

        .price-currency {
            font-size: 32px;
            font-weight: 600;
            color: var(--text-gray);
            margin-top: 4px;
        }

        .price-amount {
            font-size: 64px;
            font-weight: 700;
            color: var(--text-white);
            line-height: 1;
        }

        .pricing-card-featured .price-amount {
            background: var(--gradient-red);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Card Features */
        .card-features {
            list-style: none;
            padding: 0;
            margin: 0 0 40px;
            text-align: left;
        }

        /* Strikethrough for Free Plan */
        .card-features-strikethrough li {
            text-decoration: line-through;
            opacity: 0.5;
        }

        .card-features-strikethrough i {
            color: #666 !important;
        }

        .card-features-strikethrough .feature-ellipsis {
            text-decoration: none;
        }

        .card-features li {
            padding: 12px 0;
            font-size: 15px;
            color: var(--text-gray);
            display: flex;
            align-items: center;
            gap: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card-features li:last-child {
            border-bottom: none;
        }

        .card-features i {
            color: var(--primary-blue);
            font-size: 20px;
            flex-shrink: 0;
        }

        .pricing-card-featured .card-features i {
            color: #ff4f4f;
        }

        .feature-ellipsis {
            justify-content: center;
            font-size: 18px;
        }

        .feature-ellipsis i {
            color: var(--text-gray);
            opacity: 0.5;
        }

        /* Card Button */
        .card-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            width: 100%;
            padding: 16px 32px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .card-btn.btn-primary {
            background: var(--gradient-red);
            color: white;
            box-shadow: 0 4px 20px rgba(255, 79, 79, 0.4);
        }

        .card-btn.btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(255, 79, 79, 0.5);
        }

        .card-btn.btn-secondary {
            background: rgba(124, 97, 242, 0.15);
            border: 1px solid rgba(124, 97, 242, 0.4);
            color: white;
        }

        .card-btn.btn-secondary:hover {
            background: rgba(124, 97, 242, 0.3);
            border-color: var(--primary-blue);
        }

        /* FAQ Section */
        .faq-section {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .faq-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 24px;
            color: var(--text-white);
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            color: var(--text-gray);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .faq-link:hover {
            background: rgba(124, 97, 242, 0.15);
            border-color: var(--primary-blue);
            color: var(--text-white);
            transform: translateX(5px);
        }

        .faq-link i {
            font-size: 18px;
            color: var(--primary-blue);
        }

        /* Buy Page Responsive */
        @media (max-width: 1024px) {
            .section-header .section-title {
                font-size: 36px;
            }

            .pricing-cards {
                gap: 24px;
            }

            .pricing-card {
                padding: 36px 28px;
            }
        }

        @media (max-width: 768px) {
            .buy-section {
                padding: 40px 0 80px;
            }

            .section-header .section-title {
                font-size: 28px;
            }

            .section-header .section-subtitle {
                font-size: 15px;
            }

            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 50px;
            }

            .pricing-card {
                padding: 32px 24px;
            }

            .card-title {
                font-size: 24px;
            }

            .price-amount {
                font-size: 48px;
            }

            .price-currency {
                font-size: 24px;
            }

            .card-features {
                margin-bottom: 28px;
            }

            .card-features li {
                font-size: 14px;
                padding: 10px 0;
            }

            .faq-title {
                font-size: 20px;
            }
        }

        @media (max-width: 480px) {
            .section-header {
                margin-bottom: 40px;
            }

            .section-header .section-title {
                font-size: 24px;
            }

            .pricing-card {
                padding: 28px 20px;
            }

            .card-title {
                font-size: 20px;
            }

            .price-amount {
                font-size: 40px;
            }

            .card-btn {
                padding: 14px 24px;
                font-size: 15px;
            }
        }

        /* ============================================
           CONTACT US PAGE STYLES
        ============================================ */

        /* Single & Page Content */
        .entry-content {
            line-height: 2;
            color: var(--text-gray);
            font-size: 16px;
        }

        .entry-content p {
            margin-bottom: 1.5em;
            line-height: 2;
        }

        .entry-content h1,
        .entry-content h2,
        .entry-content h3,
        .entry-content h4,
        .entry-content h5,
        .entry-content h6 {
            color: var(--text-white);
            margin-top: 1.8em;
            margin-bottom: 1em;
            line-height: 1.4;
        }

        .entry-content h2 {
            font-size: 28px;
        }

        .entry-content h3 {
            font-size: 24px;
        }

        .entry-content ul,
        .entry-content ol {
            margin-bottom: 1.5em;
            padding-left: 1.8em;
            line-height: 2;
        }

        .entry-content li {
            margin-bottom: 0.6em;
        }

        .entry-content a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s;
        }

        .entry-content a:hover {
            color: var(--primary-magenta);
            text-decoration: underline;
        }

        .entry-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 2em 0;
        }

        .entry-content blockquote {
            border-left: 4px solid var(--primary-blue);
            padding-left: 20px;
            margin: 2em 0;
            color: var(--text-gray);
            font-style: italic;
            line-height: 1.8;
        }

        .entry-content code {
            background: rgba(124, 97, 242, 0.15);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 14px;
        }

        .entry-content pre {
            background: rgba(0, 0, 0, 0.3);
            padding: 20px;
            border-radius: 12px;
            overflow-x: auto;
            margin: 2em 0;
            line-height: 1.6;
        }

        .entry-content pre code {
            background: none;
            padding: 0;
        }

        .contact-section {
            padding: 80px 0 120px;
            min-height: calc(100vh - 180px);
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header .section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 16px;
            background: linear-gradient(to right, #fff, #b0a8c2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contact-header .section-subtitle {
            font-size: 18px;
            color: var(--text-gray);
        }

        /* Contact Content */
        .contact-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Contact Info Grid */
        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        /* Contact Card */
        .contact-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 36px 28px;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-blue);
            box-shadow: 0 15px 40px rgba(124, 97, 242, 0.15);
        }

        /* Contact Icon */
        .contact-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, rgba(124, 97, 242, 0.2), rgba(230, 46, 110, 0.15));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon i {
            font-size: 32px;
            color: var(--primary-blue);
        }

        /* Contact Card Title */
        .contact-card-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--text-white);
        }

        /* Contact Card Content */
        .contact-card-content p {
            color: var(--text-gray);
            font-size: 15px;
            line-height: 1.8;
        }

        .contact-email {
            font-size: 16px;
            color: #7c61f2 !important;
            font-weight: 500;
        }

        .contact-note {
            margin-top: 12px;
            font-size: 13px !important;
            opacity: 0.7;
        }

        /* Contact Map */
        .contact-map {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .contact-map img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Contact Page Responsive */
        @media (max-width: 1024px) {
            .contact-header .section-title {
                font-size: 36px;
            }

            .contact-info-grid {
                gap: 20px;
            }

            .contact-card {
                padding: 28px 20px;
            }
        }

        @media (max-width: 768px) {
            .contact-section {
                padding: 40px 0 80px;
            }

            .contact-header {
                margin-bottom: 40px;
            }

            .contact-header .section-title {
                font-size: 28px;
            }

            .contact-header .section-subtitle {
                font-size: 15px;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 40px;
            }

            .contact-card {
                padding: 28px 24px;
                display: flex;
                text-align: left;
                gap: 20px;
            }

            .contact-icon {
                margin: 0;
                width: 56px;
                height: 56px;
                flex-shrink: 0;
            }

            .contact-icon i {
                font-size: 26px;
            }

            .contact-card-title {
                font-size: 16px;
                margin-bottom: 8px;
            }

            .contact-card-content p {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .contact-header .section-title {
                font-size: 24px;
            }

            .contact-card {
                flex-direction: column;
                text-align: center;
                padding: 24px 20px;
            }

            .contact-icon {
                margin: 0 auto 16px;
            }
        }

