* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #BB0000 0%, #FF0000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(187, 0, 0, 0.85) 0%, rgba(255, 0, 0, 0.85) 100%), url('hero.jpg') center/cover no-repeat;
    z-index: -1;
}

.animated-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #FFFFFF;
    top: -100px;
    right: -100px;
    animation: float 20s infinite ease-in-out;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #9C9C9C;
    bottom: -50px;
    left: -50px;
    animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #EBEBEB;
    top: 50%;
    left: 10%;
    animation: float 30s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(30px) translateX(20px);
    }
}

.container {
    text-align: center;
    z-index: 1;
    max-width: 600px;
    padding: 40px;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    margin-bottom: 40px;
}

.logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #BB0000 0%, #FF0000 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
}

h1 {
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 18px;
    color: #EBEBEB;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 4px;
    background: #FFFFFF;
    margin: 30px auto;
    border-radius: 2px;
}

.description {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.email-section {
    margin: 40px 0;
}

.email-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 200px;
    padding: 14px 20px;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 14px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #EBEBEB;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.notify-btn {
    padding: 14px 40px;
    background: #FFFFFF;
    color: #BB0000;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #EBEBEB;
}

.notify-btn:active {
    transform: translateY(0);
}

.social-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-icon:hover {
    background: #FFFFFF;
    color: #BB0000;
    transform: translateY(-3px);
}

.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.success-message {
    display: none;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    color: #FFFFFF;
    margin-top: 20px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 16px;
    }

    .container {
        padding: 20px;
    }

    .email-input-wrapper {
        flex-direction: column;
    }

    .email-input {
        min-width: 100%;
    }

    .notify-btn {
        width: 100%;
    }
}
