:root {
    --bg-main: #0b0c10;
    --bg-secondary: #1f2833;
    --text-primary: #ffffff;
    --text-muted: #c5c6c7;

    /* Vibrant Hippie/Mega gradient colors */
    --gradient-1: #ff007f;
    --gradient-2: #7928ca;
    --gradient-3: #ff4d4d;
    --gradient-4: #f9cb28;

    --accent: #66fcf1;
    --accent-hover: #45a29e;

    --font-main: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Ultimate Background Mesh */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 127, 0.08), transparent 60%),
                radial-gradient(circle at 80% 20%, rgba(121, 40, 202, 0.08), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(102, 252, 241, 0.05), transparent 50%);
    z-index: -1;
    animation: rotateMesh 40s linear infinite;
    pointer-events: none;
}

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

/* Ultimate Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gradient-1), var(--gradient-2));
    border-radius: 6px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--gradient-3), var(--gradient-4));
}

/* Navbar Setup */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(11, 12, 16, 0.6);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(102, 252, 241, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 2px;
}

.mega-text {
    background: linear-gradient(45deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, var(--gradient-2), var(--gradient-4));
    transition: width 0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    gap: 50px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image img {
    max-width: 90%;
    width: 500px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(121, 40, 202, 0.4));
    animation: float 6s ease-in-out infinite;
}

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

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

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

.hero-content {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 0, 127, 0.4);
}

.gradient-text {
    background: linear-gradient(to right, var(--gradient-3), var(--gradient-4), var(--gradient-1));
    background-size: 200% auto;
    animation: shine 5s linear infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gradient-1), var(--gradient-2), var(--gradient-1));
    background-size: 200% auto;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.4), inset 0 0 10px rgba(255, 255, 255, 0.2);
    border: none;
    animation: shine 4s linear infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 127, 0.6), 0 0 30px rgba(121, 40, 202, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    border-color: var(--accent);
    background: rgba(102, 252, 241, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(102, 252, 241, 0.3);
    color: var(--accent);
}

/* Editions Section */
.editions-section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
}

.editions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Base Card for Editions (Will be filled later) */
.edition-card {
    background: rgba(31, 40, 51, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.edition-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    transition: background 0.5s;
    pointer-events: none;
    z-index: 10;
}

.edition-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 0, 127, 0.2), 0 0 20px rgba(102, 252, 241, 0.2);
    border-color: transparent;
}

.edition-card:hover::before {
    background: linear-gradient(45deg, var(--gradient-1), var(--accent), var(--gradient-2));
}

.edition-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-bottom: 2px solid var(--gradient-2);
    cursor: pointer;
    transition: transform 0.5s ease;
}

.edition-card:hover .edition-image {
    transform: scale(1.05);
}

/* Lightbox / Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border: 2px solid var(--accent);
    box-shadow: 0 0 30px rgba(102, 252, 241, 0.3);
    border-radius: 8px;
    animation: zoom 0.3s ease-out;
}

@keyframes zoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: var(--gradient-1);
    text-decoration: none;
    cursor: pointer;
}

.edition-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.edition-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--accent);
}

.edition-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.edition-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    display: inline-block;
    border-bottom: 2px solid var(--gradient-1);
    align-self: flex-start;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.edition-link:hover {
    color: var(--gradient-4);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
}

/* Teaser Section */
.teaser-section {
    margin: 80px 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.teaser-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser-video {
    width: 100%;
    height: auto;
    z-index: 1;
    display: block;
}

.teaser-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 20px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.teaser-slogan {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--gradient-3), var(--gradient-4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.teaser-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-weight: 500;
}

/* Ultimate Mega Utilities & Panel Styles */
.mega-glass-panel {
    background: rgba(31, 40, 51, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(255, 255, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.mega-glass-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,0,127,0.5), transparent, rgba(102,252,241,0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: 1;
}

.glow-text {
    text-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
}

.glow-image {
    filter: drop-shadow(0 0 30px rgba(102, 252, 241, 0.4)) drop-shadow(0 0 10px rgba(255, 0, 127, 0.3));
    transition: filter 0.5s;
}

.glow-image:hover {
    filter: drop-shadow(0 0 50px rgba(102, 252, 241, 0.8)) drop-shadow(0 0 20px rgba(255, 0, 127, 0.6));
}

.float-anim {
    animation: floatFast 4s ease-in-out infinite;
}

@keyframes floatFast {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.panel-section {
    display: flex;
    gap: 50px;
    margin: 100px 0;
    padding: 60px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 5;
}

.panel-content {
    flex: 1;
    min-width: 350px;
    position: relative;
    z-index: 2;
}

.panel-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.panel-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.panel-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.panel-image-container {
    flex: 1;
    min-width: 350px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.panel-image {
    max-width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}