/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --primary-amber: #FFA500;
    --primary-blue: #1E90FF;
    --dark-bg: #0a0e27;
    --darker-bg: #050814;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --glow-gold: rgba(255, 215, 0, 0.6);
    --glow-blue: rgba(30, 144, 255, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--darker-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* ===== LANGUAGE SWITCHER ===== */
.language-switcher {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Mobile positioning - integrated into header */
@media (max-width: 768px) {
    .language-switcher {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        background: transparent;
        backdrop-filter: none;
        border: none;
        box-shadow: none;
        padding: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .language-switcher::before {
        content: '';
        flex: 1;
        order: 1;
    }
}

.lang-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.1em;
}

.lang-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-amber));
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Mobile language buttons */
@media (max-width: 768px) {
    .lang-btn {
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    }
    
    .lang-btn:first-child {
        order: 0;
    }
    
    .lang-btn:last-child {
        order: 2;
    }
    
    .lang-btn.active {
        background: linear-gradient(135deg, var(--primary-gold), var(--primary-amber));
        color: var(--darker-bg);
        border-color: var(--primary-gold);
    }
}

/* ===== ANIMATED BACKGROUND ===== */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(30, 144, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 165, 0, 0.1) 0%, transparent 60%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* ===== CONTAINER ===== */
.container {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    max-width: 1600px;
    width: 100%;
    text-align: center;
}

/* ===== BRAND SECTION ===== */
.brand-section {
    position: relative;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

/* Mobile - add space for language switcher in header */
@media (max-width: 768px) {
    .brand-section {
        padding-top: 3rem;
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite;
}

.brand-title {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.brand-accent {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-amber) 50%, var(--primary-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px var(--glow-gold);
    letter-spacing: 0.15em;
    animation: shimmer 3s ease-in-out infinite;
}

.brand-subtitle {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    text-transform: uppercase;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

/* ===== MAIN LAYOUT (BOTTLE LEFT, CONTENT RIGHT) ===== */
.main-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6rem;
    margin-top: 1.5rem;
    max-width: 100%;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    max-width: 600px;
}

/* ===== BOTTLE SECTION ===== */
.bottle-container {
    position: relative;
    flex: 0 0 auto;
    width: 400px;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--glow-gold) 0%, var(--glow-blue) 50%, transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
    animation: bottleGlow 6s ease-in-out infinite;
}

@keyframes bottleGlow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.bottle-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-2deg); }
    75% { transform: translateY(-20px) rotate(2deg); }
}

.bottle-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.7));
    transition: transform 0.3s ease;
}

.bottle-image:hover {
    transform: scale(1.05);
}

/* Sparkle Effects */
.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-gold);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--glow-gold);
    animation: sparkle 2s ease-in-out infinite;
    opacity: 0;
}

.sparkle-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 40%;
    right: 15%;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 1.4s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
    animation: fadeInUp 1s ease 0.3s both;
}

/* ===== COUNTDOWN TIMER ===== */
.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: nowrap;
    margin: 0;
    width: 100%;
}

.countdown-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.2rem 1.5rem;
    flex: 1;
    min-width: 110px;
    max-width: 110px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.countdown-seconds {
    min-width: 110px;
    max-width: 110px;
    flex: 0 0 110px;
}

.countdown-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.2);
}

.countdown-value {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-amber));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.countdown-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.countdown-separator {
    font-family: 'Orbitron', monospace;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--primary-gold);
    opacity: 0.5;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.1; }
}

/* ===== SUBSCRIPTION SECTION ===== */
.subscription-section {
    animation: fadeInUp 1s ease 0.6s both;
    width: 100%;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 2rem 2rem;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 12px 48px rgba(255, 215, 0, 0.2);
}

.subscription-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
}

.subscription-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.subscription-form {
    display: flex;
    gap: 0.8rem;
    flex-direction: column;
}

.email-input {
    width: 100%;
    padding: 0.85rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--text-secondary);
}

.email-input:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.subscribe-btn {
    position: relative;
    width: 100%;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-amber));
    border: none;
    border-radius: 50px;
    color: var(--darker-bg);
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.subscribe-btn:active {
    transform: translateY(0);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover .btn-glow {
    left: 100%;
}

/* ===== MESSAGE STYLES ===== */
.message {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    animation: fadeInUp 0.5s ease;
    backdrop-filter: blur(10px);
    text-align: center;
}

.success-message {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.2);
}

.error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2);
}

.success-message.show {
    opacity: 1;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    margin: 3rem auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    animation: fadeInUp 1s ease 0.9s both;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.5;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .main-layout {
        flex-direction: column;
        gap: 2rem;
        margin-top: 1rem;
    }
    
    .bottle-container {
        width: 350px;
        height: 480px;
    }
    
    .bottle-image {
        max-width: 320px;
    }
    
    .right-content {
        max-width: 100%;
    }
    
    .language-switcher {
        top: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 768px) {
    .brand-section {
        margin-bottom: 0.5rem;
        padding-top: 3.5rem;
    }
    
    .bottle-container {
        width: 340px;
        height: 460px;
    }
    
    .bottle-image {
        max-width: 300px;
    }
    
    .main-layout {
        gap: 1rem;
    }
    
    .right-content {
        gap: 1.2rem;
    }
    
    .countdown {
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 70px;
        max-width: none;
        padding: 1rem 1rem;
        flex: 1 1 calc(33.333% - 0.5rem);
    }
    
    .countdown-seconds {
        display: none;
    }
    
    .countdown-separator {
        display: none;
    }
    
    .countdown-separator:last-of-type {
        display: none;
    }
    
    .glass-card {
        padding: 1.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem 0.8rem;
    }
    
    .brand-section {
        margin-bottom: 0.3rem;
        padding-top: 3.5rem;
    }
    
    .bottle-container {
        width: 280px;
        height: 380px;
        margin: 0.3rem auto;
    }
    
    .bottle-image {
        max-width: 250px;
    }
    
    .main-layout {
        gap: 0.8rem;
        margin-top: 0.3rem;
    }
    
    .right-content {
        gap: 1rem;
    }
    
    .countdown-item {
        padding: 0.8rem 0.5rem;
    }
}
