* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow: hidden;
}

.content {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 600px;
    width: 100%;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo-section {
    margin-bottom: 40px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo i {
    font-size: 3rem;
    color: #64b5f6;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.domain {
    font-size: 1.2rem;
    color: #90caf9;
    font-weight: 400;
    letter-spacing: 1px;
}

.main-content {
    margin-bottom: 40px;
}

.title {
    font-size: 3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subtitle {
    font-size: 1.1rem;
    color: #e3f2fd;
    margin-bottom: 40px;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    min-width: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
}

.countdown-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #64b5f6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #e3f2fd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.notify-section {
    margin-bottom: 40px;
}

.notify-section h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
}

.notify-form {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.notify-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    min-width: 250px;
    outline: none;
    transition: all 0.3s ease;
}

.notify-form input:focus {
    background: white;
    box-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
}

.notify-form button {
    padding: 15px 25px;
    background: linear-gradient(45deg, #2196f3, #21cbf3);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}

.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #64b5f6;
    font-size: 1.2rem;
}

.contact-info a {
    color: #e3f2fd;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #64b5f6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #64b5f6;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #64b5f6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(100, 181, 246, 0.3);
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shapes {
    position: relative;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 80%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

.footer {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer a {
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #90caf9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 30px 20px;
        margin: 10px;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .title {
        font-size: 2.2rem;
    }

    .countdown {
        gap: 10px;
    }

    .countdown-item {
        padding: 15px;
        min-width: 80px;
    }

    .countdown-item .number {
        font-size: 2rem;
    }

    .notify-form {
        flex-direction: column;
        align-items: center;
    }

    .notify-form input {
        min-width: 100%;
        margin-bottom: 10px;
    }

    .contact-section {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }

    .title {
        font-size: 1.8rem;
    }

    .countdown-item {
        padding: 10px;
        min-width: 70px;
    }

    .countdown-item .number {
        font-size: 1.5rem;
    }

    .countdown-item .label {
        font-size: 0.8rem;
    }
}