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

:root {
    --purple-dark: #1a0d2e;
    --purple-mid: #3d1e5f;
    --purple-bright: #8b3dff;
    --pink-bright: #ff3d9a;
    --pink-neon: #ff006e;
    --orange-gold: #ffaa00;
    --cyan-bright: #00f0ff;

    --gradient-primary: linear-gradient(135deg, var(--purple-bright) 0%, var(--pink-bright) 100%);
    --gradient-gold: linear-gradient(135deg, var(--orange-gold) 0%, #ff6b00 100%);

    --glow-purple: 0 0 30px rgba(139, 61, 255, 0.5);
    --glow-pink: 0 0 30px rgba(255, 61, 154, 0.5);
    --shadow-strong: 0 10px 40px rgba(0, 0, 0, 0.5);

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--purple-dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 13, 46, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 61, 255, 0.2);
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    height: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    position: relative;
}

.logo {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.admin-hint {
    display: none;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Selector */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    color: #ffffff;
    background: rgba(139, 61, 255, 0.3);
    border: 1px solid rgba(139, 61, 255, 0.5);
}

.lang-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
    user-select: none;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 61, 255, 0.1);
    border: 2px solid rgba(139, 61, 255, 0.3);
    color: var(--pink-bright);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    border-color: var(--pink-bright);
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--glow-pink);
}

/* Carousel Section */
.carousel-section {
    margin-top: 90px;
    padding: 0;
    position: relative;
    background: linear-gradient(180deg, rgba(26, 13, 46, 0.5) 0%, var(--purple-dark) 100%);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.95);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(139, 61, 255, 0.3);
    border: 2px solid rgba(139, 61, 255, 0.5);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: var(--gradient-primary);
    border-color: var(--pink-bright);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--glow-pink);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--gradient-primary);
    border-color: var(--pink-bright);
    box-shadow: var(--glow-pink);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.glow-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--purple-bright);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.glow-orb-2 {
    width: 500px;
    height: 500px;
    background: var(--pink-bright);
    top: 50%;
    right: -15%;
    animation-delay: 2s;
}

.glow-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--orange-gold);
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(30px, -30px);
    }
    66% {
        transform: translate(-20px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 61, 154, 0.1);
    border: 2px solid var(--pink-bright);
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--pink-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--pink-bright);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(0.95);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.5));
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 170, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(255, 170, 0, 0.8));
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.cta-container {
    margin-bottom: 50px;
}

/* Email Form */
.email-form {
    max-width: 500px;
}

.email-form-row {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 61, 255, 0.4);
    border: 2px solid rgba(139, 61, 255, 0.3);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.email-form-row:focus-within {
    border-color: var(--pink-bright);
    box-shadow: 0 10px 40px rgba(255, 61, 154, 0.4);
}

.email-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(26, 13, 46, 0.8);
    border: none;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    min-width: 0;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    background: var(--gradient-primary);
    border: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    filter: brightness(1.15);
}

.btn-primary:active {
    filter: brightness(0.95);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.email-form-message {
    margin-top: 12px;
    font-size: 14px;
    min-height: 20px;
    padding-left: 24px;
}

.email-form-message.success {
    color: #4ade80;
}

.email-form-message.error {
    color: #ff6b6b;
}

.email-form-message.success,
.email-form-message.error {
    animation: fadeInMsg 0.4s ease-out;
}

@keyframes fadeInMsg {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.launch-text {
    margin-top: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.stats-container {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(139, 61, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.stat-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--purple-bright), transparent);
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(139, 61, 255, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: rotateFull 10s linear infinite;
}

@keyframes rotateFull {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-prize-image {
    position: relative;
    width: 75%;
    margin: 0 auto;
    display: block;
    height: auto;
    border-radius: 20px;
    animation: floatImage 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(139, 61, 255, 0.5));
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Partners Section */
.partners {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--purple-dark) 0%, var(--purple-mid) 100%);
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.partner-placeholder {
    aspect-ratio: 1;
    background: rgba(139, 61, 255, 0.05);
    border: 2px dashed rgba(139, 61, 255, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-placeholder:hover {
    background: rgba(139, 61, 255, 0.1);
    border-color: var(--purple-bright);
    transform: translateY(-5px);
}

.placeholder-content {
    text-align: center;
}

.placeholder-icon {
    color: rgba(139, 61, 255, 0.4);
    margin-bottom: 10px;
}

.placeholder-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.partners-note {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(139, 61, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-social-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 61, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-right {
        gap: 12px;
    }

    .lang-selector {
        gap: 3px;
    }

    .lang-btn {
        padding: 3px 5px;
        font-size: 12px;
    }
}

@media (max-width: 640px) {
    .carousel-container {
        height: 250px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 10px;
    }

    .carousel-btn-next {
        right: 10px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .hero {
        padding: 100px 15px 40px;
    }

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

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

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--purple-bright), transparent);
    }

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

    .social-icons {
        gap: 10px;
    }

    .logo-container {
        height: 50px;
    }

    .email-form-row {
        flex-direction: column;
        border-radius: 15px;
    }

    .email-input {
        border-radius: 0;
        text-align: center;
    }

    .btn-primary {
        justify-content: center;
        padding: 14px 24px;
    }

    .nav-right {
        flex-direction: column;
        gap: 8px;
    }

    .lang-selector {
        order: -1;
    }
}
