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

:root {
    --primary-gold: #F4B24A;
    --dark-brown: #5A3410;
    --accent-gold: #F6C65B;
    --light-bg: #F8F6F2;
    --text-dark: #1A1A1A;
    --border-color: #C67A1C;
}

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

body {
    font-family: 'Georgia', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 50%, #1A1A1A 100%);
    color: var(--text-dark);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(244, 178, 74, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(198, 122, 28, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(246, 198, 91, 0.05) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes gradientShift {
    0%, 100% {
        background: 
            radial-gradient(circle at 20% 50%, rgba(244, 178, 74, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(198, 122, 28, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(246, 198, 91, 0.05) 0%, transparent 50%);
    }
    50% {
        background: 
            radial-gradient(circle at 80% 20%, rgba(244, 178, 74, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 20% 80%, rgba(198, 122, 28, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 60% 60%, rgba(246, 198, 91, 0.1) 0%, transparent 50%);
    }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    width: 100%;
}

/* Logo Section */
.logo-section {
    margin-bottom: 40px;
    animation: logoFloat 3s ease-in-out infinite;
}

.logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(244, 178, 74, 0.3));
    transition: transform 0.3s ease;
}

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

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

/* Content */
.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-gold);
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Title */
.title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-gold), var(--border-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 2s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(244, 178, 74, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(244, 178, 74, 0.6);
    }
}

/* Tagline */
.tagline {
    font-size: 1.3rem;
    color: var(--dark-brown);
    font-style: italic;
    margin-bottom: 8px;
    font-weight: 500;
}

/* Subtitle */
.subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Coming Soon Section */
.coming-soon {
    position: relative;
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.coming-soon h2 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 1px;
    animation: pulse 2s ease-in-out infinite;
}

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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-gold);
    animation: bounce 1.4s infinite;
}

.dot:nth-child(1) {
    animation-delay: 0s;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.5;
    }
}

/* Countdown Timer */
.countdown-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, rgba(244, 178, 74, 0.1), rgba(198, 122, 28, 0.1));
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-gold);
    font-family: 'Courier New', monospace;
    text-shadow: 0 4px 15px rgba(244, 178, 74, 0.3);
    animation: countPulse 1s ease-in-out infinite;
}

@keyframes countPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--dark-brown);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Email Subscription */
.subscription {
    margin: 40px 0;
}

.subscription p:first-child {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.email-form {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

#emailInput {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid var(--primary-gold);
    border-radius: 50px;
    font-size: 1rem;
    background: #fff;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 178, 74, 0.1);
}

#emailInput:focus {
    outline: none;
    border-color: var(--border-color);
    box-shadow: 0 4px 25px rgba(244, 178, 74, 0.3);
    transform: translateY(-2px);
}

#emailInput::placeholder {
    color: #999;
}

.subscribe-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--border-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(244, 178, 74, 0.3);
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 178, 74, 0.5);
}

.subscribe-btn:active {
    transform: translateY(-1px);
}

.form-message {
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 20px;
}

.form-message.success {
    color: #27ae60;
}

.form-message.error {
    color: #e74c3c;
}

/* Company Info */
.company-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid rgba(244, 178, 74, 0.3);
}

.rc-number {
    font-size: 1rem;
    color: var(--dark-brown);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--border-color));
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 178, 74, 0.2);
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(244, 178, 74, 0.4);
}

/* Floating Shapes */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-gold);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--border-color);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-gold);
    top: 50%;
    right: -125px;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
    }
    75% {
        transform: translateY(-30px) translateX(20px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .coming-soon h2 {
        font-size: 1.8rem;
    }

    .content {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .email-form {
        flex-direction: column;
    }

    #emailInput {
        min-width: 100%;
    }

    .subscribe-btn {
        width: 100%;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }

    .logo {
        max-width: 150px;
    }

    .title {
        font-size: 2rem;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }

    .content {
        padding: 30px 20px;
    }

    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 15px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.8rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}
