    html {
        scroll-behavior: smooth;
    }

    /* Global Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Orbitron', sans-serif;
        background: #000;
        color: #fff;
        overflow-x: hidden;
    }

    section {
        padding: 60px 20px;
        text-align: center;
    }

    h1,
    h2 {
        letter-spacing: 2px;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    p {
        color: #aaa;
        max-width: 700px;
        margin: 10px auto;
        line-height: 1.6;
    }

    /* Top Bar */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
        z-index: 1100;
        border-bottom: 1px solid rgba(209, 162, 52, 0.3);
        font-size: 0.9rem;
        color: #D1A234;
        display: flex;
        justify-content: center;
        height: 40px;
    }

    .top-bar-content {
        width: 90%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar-left {
        display: flex;
        align-items: center;
    }

    .cart-link {
        color: #D1A234;
        text-decoration: none;
        position: relative;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
    }

    .cart-link .cart-count {
        position: absolute;
        top: -6px;
        right: -10px;
        background: #EABF5E;
        color: #231B1B;
        font-weight: bold;
        font-size: 0.75rem;
        padding: 2px 6px;
        border-radius: 12px;
    }

    .top-bar-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .auth-link {
        color: #D1A234;
        text-decoration: none;
        margin-left: 10px;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .auth-link:hover {
        color: #EABF5E;
    }

    .username {
        font-weight: 600;
        color: #D1A234;
    }

    .language-selector select {
        background: transparent;
        border: 1px solid #D1A234;
        color: #D1A234;
        padding: 3px 8px;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease, color 0.3s ease;
    }

    .language-selector select:hover,
    .language-selector select:focus {
        background: #D1A234;
        color: #231B1B;
        outline: none;
    }

    /* Adjust header position to be below top bar */
    .header {
        position: fixed;
        top: 40px;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 5%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(8px);
        z-index: 1000;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    /* Responsive adjustments for top bar */
    @media (max-width: 768px) {
        .top-bar {
            height: 50px;
            font-size: 0.85rem;
        }

        .language-selector select {
            padding: 4px 10px;
        }
    }

    @media (max-width: 480px) {
        .top-bar {
            flex-direction: column;
            height: auto;
            padding: 5px 0;
            font-size: 0.8rem;
        }

        .top-bar-content {
            flex-direction: column;
            gap: 5px;
        }

        .top-bar-left,
        .top-bar-right {
            width: 100%;
            justify-content: center;
        }

        .cart-link {
            font-size: 1.1rem;
        }
    }

    .logo {
        font-size: 1.5rem;
        font-weight: bold;
        color: #fff;
        letter-spacing: 2px;
        z-index: 1001;

        img {
            height: clamp(60px, 8vw, 80px);
            transition: height 0.3s ease;
        }
    }

    .nav {
        display: flex;
        align-items: center;
    }

    .nav a {
        color: #aaa;
        margin-left: 25px;
        text-decoration: none;
        font-size: 1rem;
        transition: color 0.3s ease, transform 0.2s ease;
        position: relative;
    }

    .nav a:hover {
        color: #fff;
        transform: translateY(-2px);
    }

    .nav a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #D1A234;
        transition: width 0.3s ease;
    }

    .nav a:hover::after {
        width: 100%;
    }

    /* Mobile menu toggle */
    .menu-toggle {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .menu-toggle span {
        width: 100%;
        height: 3px;
        background: #fff;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* Responsive header */
    @media (max-width: 1024px) {
        .header {
            padding: 10px 4%;
        }

        .nav a {
            margin-left: 20px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 768px) {
        .header {
            padding: 8px 3%;
        }

        .menu-toggle {
            display: flex;
        }

        .nav {
            position: fixed;
            top: 50px;
            right: -100%;
            width: 70%;
            height: calc(100vh - 50px);
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(10px);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: right 0.3s ease;
            z-index: 1000;
        }

        .nav.active {
            right: 0;
        }

        .nav a {
            margin: 15px 0;
            font-size: 1.1rem;
            margin-left: 0;
        }

        .logo img {
            height: 50px;
        }
    }

    @media (max-width: 480px) {
        .header {
            padding: 8px 2%;
            margin-top: 6%;
        }

        .nav {
            width: 85%;
        }

        .nav a {
            font-size: 1rem;
            margin: 12px 0;
        }

        .logo img {
            height: 45px;
        }

        .menu-toggle {
            width: 25px;
            height: 18px;
        }
    }

    /* Menu toggle animation */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }


    /* Hero Section */
    /* .hero {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 6rem;
        background: linear-gradient(90deg, #ccc, #fff, #aaa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: glow 4s infinite alternate;
    } */

    /* Hero Section with Animated Background */
    .hero-image {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

    .hero-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url(../images/1.5.webp) no-repeat center center/cover;
        transform: scale(1);
        animation: zoomBg 20s ease-in-out infinite alternate;
        z-index: -2;
        height: 100vh;
    }

    .hero-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        /* dark overlay */
        z-index: -1;
        height: 100vh;
    }

    @keyframes zoomBg {
        from {
            transform: scale(1) translate(0, 0);
        }

        to {
            transform: scale(1.2) translate(-20px, -20px);
        }
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 6rem);
        background: linear-gradient(90deg, #ccc, #fff, #aaa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: glow 4s infinite alternate;
        line-height: 1.2;
        margin: 0 20px;
        text-align: center;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: clamp(2rem, 6vw, 4rem);
            margin: 0 15px;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            margin: 0 10px;
            word-wrap: break-word;
        }
    }

    @keyframes glow {
        from {
            text-shadow: 0 0 10px #fff;
        }

        to {
            text-shadow: 0 0 30px #0ff;
        }
    }


    @keyframes glow {
        from {
            text-shadow: 0 0 10px #fff;
        }

        to {
            text-shadow: 0 0 30px #0ff;
        }
    }


    @keyframes glow {
        from {
            text-shadow: 0 0 10px #fff;
        }

        to {
            text-shadow: 0 0 30px #0ff;
        }
    }

    .buy-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 25px;
        background: #D1A234;
        color: #231B1B;
        border-radius: 20px;
        text-decoration: none;
        transition: background 0.3s ease;
    }

    .buy-btn:hover {
        background: #EABF5E;
    }

    .hero button,
    .send-message {
        margin-top: 30px;
        padding: 15px 40px;
        font-size: 1.2rem;
        border: none;
        border-radius: 30px;
        background: #D1A234;
        color: #231B1B;
        cursor: pointer;
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .hero button:hover,
    .send-message:hover {
        transform: scale(1.05);
        background: #EABF5E;
    }

    /* Collection Section */
    .collection {
        background: linear-gradient(to bottom, #000, #111, #000);
    }

    .cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .card {
        background: #111;
        border: 1px solid #333;
        border-radius: 20px;
        padding: 30px;
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }

    .card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    }

    .watch-circle {
        width: 180px;
        height: 180px;
        margin: 0 auto 20px;
        border-radius: 50%;
        background: radial-gradient(circle, #444, #000);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
    }

    /* About Section */
    .about {
        background: #000;
    }

    /* Testimonials Section */
    /* Removed testimonial styles as testimonial section is removed */

    /* Contact Section */
    .contact {
        background: #000;
        padding: 60px 20px;
        text-align: center;
    }

    .contact p {
        color: #aaa;
        margin-bottom: 40px;
    }

    .contact-form {
        max-width: 600px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 15px 20px;
        border: 1px solid #333;
        border-radius: 12px;
        background: #111;
        color: #fff;
        font-size: 1rem;
        transition: border 0.3s ease, box-shadow 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border: 1px solid #0ff;
        box-shadow: 0 0 8px #0ff;
        outline: none;
    }


    /* Footer */
    footer {
        padding: 20px;
        text-align: center;
        font-size: 0.9rem;
        border-top: 1px solid #222;
        color: #666;
    }

    /* Back to Top — Gold Hologram Pulse */
    #backToTop {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: none;
        /* shown via JS after scroll */
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        font-weight: 700;
        z-index: 1000;

        /* Gold base */
        background: radial-gradient(circle at 30% 30%, #FFE9A6, #EABF5E 45%, #D1A234 100%);
        color: #231B1B;
        /* dark text for contrast */
        border: 1px solid rgba(209, 162, 52, 0.6);

        /* Hologram glow */
        box-shadow:
            0 0 16px rgba(234, 191, 94, 0.55),
            0 0 36px rgba(209, 162, 52, 0.45),
            inset 0 0 10px rgba(255, 233, 166, 0.35);

        /* Pulse animation */
        animation: pulseGlowGold 2.2s ease-in-out infinite alternate;
        transition: transform 0.25s ease, filter 0.25s ease;
    }

    #backToTop:hover {
        transform: scale(1.15);
        filter: brightness(1.08);
        box-shadow:
            0 0 22px rgba(234, 191, 94, 0.75),
            0 0 60px rgba(209, 162, 52, 0.65),
            inset 0 0 14px rgba(255, 233, 166, 0.5);
    }

    @keyframes pulseGlowGold {
        0% {
            box-shadow:
                0 0 12px rgba(234, 191, 94, 0.45),
                0 0 28px rgba(209, 162, 52, 0.35),
                inset 0 0 8px rgba(255, 233, 166, 0.3);
            transform: scale(1);
        }

        100% {
            box-shadow:
                0 0 26px rgba(234, 191, 94, 0.85),
                0 0 70px rgba(209, 162, 52, 0.7),
                inset 0 0 16px rgba(255, 233, 166, 0.55);
            transform: scale(1.06);
        }
    }

    /* (Optional) subtle halo ring */
    #backToTop::after {
        content: "";
        position: absolute;
        inset: -10px;
        border-radius: 50%;
        pointer-events: none;
        box-shadow: 0 0 50px 10px rgba(234, 191, 94, 0.15);
    }


    .privacy-policy {
        background: #0a0a0a;
        color: #e0e0e0;
        padding: 60px 20px;
        text-align: center;
    }

    .privacy-policy h2 {
        font-size: 2rem;
        color: #FFD700;
        margin-bottom: 20px;
    }

    .privacy-policy p {
        max-width: 800px;
        margin: 10px auto;
        font-size: 1rem;
        line-height: 1.6;
        color: #cccccc;
    }

    .privacy-policy a {
        color: #FFD700;
        text-decoration: none;
    }

    .privacy-policy a:hover {
        text-decoration: underline;
    }

    /* Social Icons */
    .social-icons {
        margin-top: 20px;
    }

    .social-icons a {
        color: #FFD700;
        margin: 0 10px;
        font-size: 1.5rem;
        transition: transform 0.3s, color 0.3s;
    }

    .social-icons a:hover {
        color: #fff;
        transform: scale(1.2);
    }

    /* High Contrast Mode */
    .high-contrast {
        background: #000 !important;
        color: #FFD700 !important;
    }

    .high-contrast a,
    .high-contrast h1,
    .high-contrast h2,
    .high-contrast h3,
    .high-contrast p {
        color: #FFD700 !important;
    }

    .policies-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .policy-section {
        margin-bottom: 40px;
        padding: 20px;
        background: #111;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s ease forwards;
    }

    .policy-section:nth-child(1) {
        animation-delay: 0.2s;
    }

    .policy-section:nth-child(2) {
        animation-delay: 0.4s;
    }

    .policy-section:nth-child(3) {
        animation-delay: 0.6s;
    }

    .policy-section:nth-child(4) {
        animation-delay: 0.8s;
    }

    .policy-section h2 {
        color: #FFD700;
        border-bottom: 2px solid #D1A234;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }

    .policy-section p {
        line-height: 1.6;
        color: #ccc;
    }

    .policy-section ul {
        list-style-type: disc;
        margin-left: 20px;
        color: #ccc;
    }

    .policy-section li {
        margin-bottom: 10px;
        text-align: left;
        color: #ccc;
    }

    .hero-policies {
        margin-top: 10%;
        text-align: center;
        padding: 50px 20px;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        color: #FFD700;
        margin-bottom: 40px;
        animation: fadeIn 1s ease;
    }

    .hero-policies h1 {
        font-size: 2.5em;
        margin-bottom: 10px;
        color: #FFD700;
    }

    .hero-policies p {
        font-size: 1.2em;
        color: #fff;
    }

    @media (max-width: 480px) {
        .hero-policies {
            margin-top: 25%;
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .uniq-tag {
        color: #D1A234;
    }

    .products-hero {
        margin-top: 8%;
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        color: #D1A234;
        animation: fadeIn 1s ease;
    }

    .products-hero h1 {
        font-size: 3em;
        margin-bottom: 10px;
        color: #FFD700;
    }

    .products-hero p {
        font-size: 1.2em;
        color: #ccc;
    }

    .filters {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        padding: 20px;
        background: #111;
    }

    .filter-btn {
        padding: 10px 20px;
        border: none;
        background: #D1A234;
        color: #231B1B;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: #EABF5E;
        transform: scale(1.05);
        color: #231B1B;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .product-card {
        background: #111;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(209, 162, 52, 0.3);
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .product-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .product-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .product-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .product-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .product-card:nth-child(5) {
        animation-delay: 0.5s;
    }

    .product-card:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 8px 16px rgba(209, 162, 52, 0.6);
    }

    .product-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.3s;
    }

    .product-card:hover img {
        transform: scale(1.1);
    }

    .product-card .content {
        padding: 15px;
    }

    .product-card h3 {
        margin: 0 0 10px 0;
        color: #D1A234;
    }

    .product-card .price {
        font-weight: bold;
        color: #D1A234;
        margin-bottom: 10px;
    }

    .product-card .view-details {
        background: #D1A234;
        color: #231B1B;
        border: none;
        padding: 8px 16px;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .product-card .view-details:hover {
        background: #EABF5E;
        transform: scale(1.05);
        color: #231B1B;
    }

    .product-details {
        display: none;
        padding: 20px;
        background: #222;
        border-radius: 10px;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, opacity 0.5s ease;
        opacity: 0;
        color: #ccc;
    }

    .product-details.show {
        max-height: 500px;
        opacity: 1;
    }

    .product-details h2 {
        color: #D1A234;
        margin-bottom: 10px;
    }

    .product-details .specs {
        margin-bottom: 15px;
        font-weight: bold;
        color: #EABF5E;
    }

    .product-details .description {
        line-height: 1.6;
        margin-bottom: 15px;
        color: #ccc;
    }

    .product-details .ctas {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .product-details .cta-btn {
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

    .add-to-cart {
        background: #D1A234;
        color: #231B1B;
    }

    .add-to-cart:hover {
        background: #EABF5E;
        transform: scale(1.05);
        color: #231B1B;
    }

    .find-purpose {
        background: #FFD700;
        color: #231B1B;
    }

    .find-purpose:hover {
        background: #EABF5E;
        transform: scale(1.05);
        color: #231B1B;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .filters {
        width: 220px;
        float: left;
        margin-right: 20px;
        padding: 10px;
        border-right: 1px solid #ccc;
        background: #111;
        border-radius: 8px;
    }

    .filter-group {
        margin-bottom: 20px;
    }

    .filter-group h4 {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: bold;
        color: #D1A234;
    }

    .filter-group label {
        display: block;
        margin-bottom: 6px;
        cursor: pointer;
        font-size: 14px;
        color: #ccc;
    }

    .products-grid {
        margin-left: 260px;
        /* To make space for the filters on the left */
    }

    /* Checkbox styling */
    .filter-checkbox {
        margin-right: 8px;
        cursor: pointer;
    }

    /* Responsive styles for filters */
    @media (max-width: 768px) {
        .filters {
            width: 100%;
            float: none;
            margin-right: 0;
            margin-bottom: 20px;
            border-right: none;
            border-bottom: 1px solid #ccc;
            padding: 15px;
        }

        .products-grid {
            margin-left: 0;
        }

        .filter-group {
            margin-bottom: 15px;
        }

        .filter-group h4 {
            font-size: 14px;
        }

        .filter-group label {
            font-size: 13px;
        }
    }

    @media (max-width: 480px) {
        .filters {
            padding: 10px;
        }

        .filter-group {
            margin-bottom: 10px;
        }

        .filter-group h4 {
            font-size: 13px;
        }

        .filter-group label {
            font-size: 12px;
        }
    }

    .image-3d-rotate {
        width: 100%;
        max-width: 500px;
        display: block;
        margin: 20px auto;
        transform: rotateY(0deg);
        animation: rotateAnimation 15s linear infinite;
    }

    @keyframes rotateAnimation {
        from {
            transform: rotateY(0deg);
        }

        to {
            transform: rotateY(360deg);
        }
    }

/* Coming Soon Page Styles */
.coming-soon-hero {
    /* height: 100vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.coming-soon-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url(../images/full-view.webp) no-repeat center center/cover;
    transform: scale(1);
    animation: zoomBgComing 25s ease-in-out infinite alternate;
    z-index: -2;
    opacity: 0.3;
}

.coming-soon-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(209,162,52,0.1), rgba(0,0,0,0.8));
    z-index: -1;
}

@keyframes zoomBgComing {
    from {
        transform: scale(1) rotate(0deg);
    }
    to {
        transform: scale(1.1) rotate(1deg);
    }
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.coming-title {
    font-size: clamp(3rem, 10vw, 8rem);
    background: linear-gradient(90deg, #D1A234, #fff, #EABF5E, #D1A234);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowTitle 3s ease-in-out infinite alternate;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(209,162,52,0.5);
}

@keyframes glowTitle {
    from {
        text-shadow: 0 0 20px rgba(209,162,52,0.3), 0 0 40px rgba(209,162,52,0.2);
    }
    to {
        text-shadow: 0 0 40px rgba(209,162,52,0.7), 0 0 80px rgba(209,162,52,0.4);
    }
}

.coming-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.4;
}

.watch-preview {
    margin: 40px 0;
}

.watch-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(209,162,52,0.3);
    animation: floatWatch 4s ease-in-out infinite;
}

@keyframes floatWatch {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.pre-order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto 40px;
}

.pre-order-form input {
    padding: 15px 20px;
    border: 2px solid #D1A234;
    border-radius: 30px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pre-order-form input:focus {
    border-color: #EABF5E;
    box-shadow: 0 0 20px rgba(209,162,52,0.5);
    outline: none;
}

.pre-order-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(45deg, #D1A234, #EABF5E);
    color: #231B1B;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(209,162,52,0.3);
    animation: pulseBtn 2s ease-in-out infinite;
}

.pre-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(209,162,52,0.6);
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 0 20px rgba(209,162,52,0.3); }
    50% { box-shadow: 0 0 30px rgba(209,162,52,0.5); }
}

.social-links {
    margin-top: 40px;
}

.social-links a {
    display: inline-block;
    margin: 0 15px;
    color: #D1A234;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #EABF5E;
    transform: scale(1.2) rotate(5deg);
    text-shadow: 0 0 20px rgba(209,162,52,0.8);
}

/* Responsive for Coming Soon */
@media (max-width: 768px) {
    .coming-soon-hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 20px;
    }

    .hero-content {
        padding: 0;
    }

    .coming-title {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }

    .coming-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }

    .pre-order-form {
        gap: 15px;
    }

    .pre-order-form input {
        padding: 12px 18px;
        font-size: 1rem;
    }

    .pre-order-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .social-links a {
        font-size: 1.8rem;
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .coming-title {
        font-size: clamp(2rem, 6vw, 4rem);
        letter-spacing: 2px;
    }

    .watch-image {
        max-width: 300px;
    }

    .social-links a {
        font-size: 1.5rem;
        margin: 0 8px;
    }
}


