:root {
    --bg-color: #0f172a;
    /* Dark Navy from logo */
    --text-color: #e2e8f0;
    --accent-color: #689689;
    /* Teal from logo */
    --accent-secondary: #b3366a;
    /* Pink from logo */
    --accent-glow: rgba(104, 150, 137, 0.4);
    --secondary-bg: #1e293b;
    --card-bg: #1e293b;
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Outfit', sans-serif;

    --transition-speed: 0.4s;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 5px;
    height: 5px;
    background-color: white;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Cursor dynamics handled by JS */

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.section-padding {
    padding: 8rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.btn-primary:hover {
    background: #fff;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-small {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.nav-links a:not(.btn):hover {
    opacity: 1;
    color: var(--accent-color);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.burger span {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(30, 30, 40, 0.5) 0%, rgba(10, 10, 11, 1) 70%);
    z-index: -1;
}



.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text .subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
}

.hero-text h1 {
    font-size: 6rem;
    margin-bottom: 1rem;
    line-height: 0.9;
}

.hero-text h1 .highlight {
    color: var(--accent-secondary);
}

.hero-text .tagline {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-group {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    perspective: 1000px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

.floating-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover .floating-image {
    transform: rotateY(0deg) rotateX(0deg);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Trailer Section */
.trailer-section {
    background: var(--bg-color);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    line-height: 1.4;
}

.concept-text p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.concept-visual {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-box {
    text-align: center;
    background: var(--secondary-bg);
    padding: 3rem 2rem;
    border-radius: 20px;
    min-width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Themes Section */
.section-intro {
    max-width: 800px;
    margin: 1.5rem auto 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.theme-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 520px;
}

.theme-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.theme-card .card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 2.5rem 2rem;
}

/* Card Previews */
.card-preview-container {
    height: 240px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -1rem 0 2rem;
    perspective: 1200px;
}

.card-preview {
    position: relative;
    width: 140px;
    height: 196px;
    /* Bridge format ratio */
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.theme-card:hover .card-preview {
    transform: rotateY(-10deg) rotateX(5deg);
}

.card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-img.back {
    transform: translateZ(-20px) rotate(-8deg) translateX(-10px);
    z-index: 1;
    filter: brightness(0.6) blur(0.5px);
    opacity: 0.8;
}

.card-img.front {
    transform: translateZ(20px) rotate(4deg) translateX(10px);
    z-index: 2;
}

.theme-card:hover .card-img.back {
    transform: translateZ(-50px) rotate(-18deg) translateX(-35px);
    filter: brightness(0.9) blur(0);
    opacity: 1;
}

.theme-card:hover .card-img.front {
    transform: translateZ(60px) rotate(12deg) translateX(35px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
}

.theme-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.theme-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.5;
}

/* What You Get Section */
.receive-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--secondary-bg) 100%);
}

.receive-content {
    max-width: 800px;
    margin: 0 auto;
}

.receive-list {
    list-style: none;
    margin-top: 3rem;
}

.receive-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.receive-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.receive-list li strong {
    color: white;
    font-weight: 600;
}

/* Preorder Section */
.preorder-section {
    padding: 10rem 0;
    background: radial-gradient(circle at center, #1a1a20 0%, var(--bg-color) 70%);
}

.big-title {
    font-size: 15vw;
    opacity: 0.1;
    line-height: 0.8;
    margin-bottom: -5vw;
    pointer-events: none;
    user-select: none;
}

.final-text {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--accent-secondary);
    font-weight: 600;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(179, 54, 106, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(179, 54, 106, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(179, 54, 106, 0);
    }
}

.glow-on-hover {
    position: relative;
    z-index: 1;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 50px;
}

.glow-on-hover:active {
    color: #000;
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    left: 0;
    top: 0;
    border-radius: 50px;
}

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

/* Animations classes to be triggered by JS */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Footer */
.footer {
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Cookie Consent */
/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: -150px;
    /* Hidden initially */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-consent.show {
    bottom: 24px;
    /* Floats above bottom */
}

.cookie-consent p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* Responsive */
/* Responsive Design */

/* Tablet & Smaller Laptops */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-text h1 {
        font-size: 5rem;
    }

    .hero-content {
        gap: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    * {
        cursor: default !important;
        /* Disable custom cursor on touch devices to avoid issues */
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Header & Nav */
    .header {
        padding: 1rem 0;
    }

    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 100;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem !important;
    }

    .nav-links .btn-small {
        font-size: 1.2rem !important;
        padding: 1rem 2rem !important;
    }

    /* Hero Section */
    .hero {
        padding-top: 6rem;
        height: auto;
        min-height: 100vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: clamp(3rem, 15vw, 4.5rem);
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .floating-image {
        max-width: 100%;
        transform: none !important;
    }

    /* Trailer Section */
    .section-padding {
        padding: 4rem 1rem;
    }

    .video-container {
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    /* Concept Section */
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .concept-visual {
        flex-wrap: wrap;
    }

    .stat-box {
        padding: 2rem 1rem;
        flex: 1;
        min-width: 140px;
    }

    /* Themes Section */
    .themes-grid {
        grid-template-columns: 1fr;
    }

    /* Routines Section */
    .routine-intro {
        font-size: 1.1rem;
        padding-right: 1rem;
    }

    /* Preorder Section */
    .big-title {
        font-size: 18vw;
    }

    .cookie-consent {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        text-align: center;
    }
}