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

:root {
    --black: #000000;
    --black-soft: #0a0a0a;
    --black-lighter: #1a1a1a;
    --gold: #d4af37;
    --gold-light: #f4e4bc;
    --white: #ffffff;
    --white-soft: #f5f5f5;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-gold: rgba(212, 175, 55, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 1;
}

.content {
    background: var(--black-soft);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 60px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.main-heading {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: 0.02em;
    font-family: 'Parisienne', cursive;
    font-weight: 300;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 80px;
    line-height: 1.8;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    position: relative;
}

.countdown-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: var(--border-color);
}

.countdown-number {
    font-size: 4rem;
    font-weight: 200;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.05em;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.newsletter-form {
    margin-bottom: 60px;
}

.input-group {
    display: flex;
    gap: 0;
    max-width: 600px;
    margin: 0 auto 12px;
    flex-wrap: wrap;
    justify-content: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.2);
}

.input-group input {
    flex: 1;
    min-width: 250px;
    padding: 18px 24px;
    border: none;
    border-radius: 0;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: transparent;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

.input-group input:focus {
    outline: none;
}

.input-group input::placeholder {
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

.btn-submit {
    padding: 18px 40px;
    background: transparent;
    color: var(--gold);
    border: none;
    border-left: 1px solid var(--border-color);
    font-size: 0.9rem;
    font-weight: 300;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.btn-submit::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--gold);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-submit:hover {
    color: var(--black);
}

.btn-submit:hover::before {
    width: 100%;
}

.btn-submit:active {
    transform: scale(0.98);
}

.form-message {
    font-size: 0.8rem;
    min-height: 20px;
    margin-top: 16px;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.form-message.success {
    color: var(--gold);
}

.form-message.error {
    color: #d4af37;
    opacity: 0.7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border-color);
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    color: var(--black);
    border-color: var(--gold);
}

.social-link:hover::before {
    opacity: 1;
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.3;
}

.shape {
    position: absolute;
    opacity: 0.05;
    animation: float 30s infinite ease-in-out;
}

.shape-1 {
    width: 1px;
    height: 400px;
    background: var(--gold);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.shape-2 {
    width: 1px;
    height: 300px;
    background: var(--gold);
    top: 60%;
    right: 20%;
    animation-delay: 10s;
}

.shape-3 {
    width: 1px;
    height: 350px;
    background: var(--gold);
    bottom: 15%;
    left: 50%;
    animation-delay: 20s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scaleY(1);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-30px) scaleY(1.2);
        opacity: 0.08;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 60px 40px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        margin-bottom: 60px;
    }
    
    .countdown {
        gap: 24px;
        margin-bottom: 60px;
        padding: 30px 0;
    }
    
    .countdown-item {
        min-width: 80px;
    }
    
    .countdown-item:not(:last-child)::after {
        display: none;
    }
    
    .countdown-number {
        font-size: 2.5rem;
    }
    
    .input-group {
        flex-direction: column;
        border: 1px solid var(--border-color);
    }
    
    .input-group input {
        min-width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .btn-submit {
        width: 100%;
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
    
    .btn-submit::before {
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 40px 24px;
    }
    
    .countdown {
        gap: 16px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .countdown-label {
        font-size: 0.65rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
}

