* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #F45D04;
    --dark-orange: #D54D03;
    --light-orange: #FF7A2F;
    --dark-gray: #0D0D0D;
    --medium-gray: #1A1A1A;
    --light-gray: #B8B8B8;
    --background-gray: #F5F5F5;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background-gray);
    position: relative;
    overflow-x: hidden;
}

/* Animated background elements */
.bg-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-orange);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--light-orange);
    bottom: -50px;
    right: -50px;
    animation-delay: 3s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-orange);
    top: 50%;
    right: 10%;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    33% {
        transform: translateY(-30px) translateX(20px);
    }
    66% {
        transform: translateY(20px) translateX(-20px);
    }
}

/* Main container */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 20px;
    max-width: 800px;
    width: 100%;
}

/* Logo container */
.logo-container {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.logo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(255, 140, 66, 0.4);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Content */
.content {
    animation: fadeInUp 1s ease-out 0.3s both;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-orange), var(--light-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--background-gray);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    margin: 30px auto;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Email notification form */
.notify-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    border: 2px solid rgba(255, 140, 66, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: var(--light-gray);
}

.email-input:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 140, 66, 0.2);
}

.notify-btn {
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 140, 66, 0.4);
}

.notify-btn:active {
    transform: translateY(0);
}

/* Social links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 140, 66, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
}

/* Footer */
.footer {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--light-gray);
    font-size: 0.9rem;
    animation: fadeIn 1s ease-out 1.2s both;
}

/* 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 fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .description {
        font-size: 1rem;
    }

    .logo {
        width: 140px;
        height: 140px;
    }

    .notify-form {
        flex-direction: column;
    }

    .email-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        padding: 20px;
    }
}
