* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #004fa8 0%, #01274d 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #fff;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    position: relative;
}

.content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Logo Section */
.logo-section {
    margin-bottom: 30px;
}

.traffic-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    position: absolute;
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.arrows {
    position: relative;
    z-index: 2;
}

.arrow {
    position: absolute;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    animation: moveArrow 2s ease-in-out infinite;
}

.arrow-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.arrow-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0.5s;
}

.arrow-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.arrow-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s;
}

@keyframes moveArrow {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.site-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

/* Main Content */
.main-heading {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    font-size: 16px;
    opacity: 0.9;
}

/* Notify Section */
.notify-section {
    margin-bottom: 50px;
}

.notify-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.notify-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.notify-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    outline: none;
    transition: background 0.3s ease;
}

.notify-form input:focus {
    background: rgba(255, 255, 255, 1);
}

.notify-form button {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #5dade2 0%, #3498db 100%);
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(245, 87, 108, 0.4);
}

.form-message {
    font-size: 14px;
    min-height: 20px;
    opacity: 0.9;
}

.form-message.success {
    color: #4ade80;
}

.form-message.error {
    color: #fca5a5;
}

/* Progress Section */
.progress-section {
    margin-bottom: 40px;
}

.progress-label {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    max-width: 500px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    margin: 0 auto 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
    border-radius: 50px;
    position: relative;
    transition: width 2s ease-out;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-text {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Background Animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float var(--duration, 15s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
}

.floating-element:nth-child(2) {
    top: 70%;
    left: 80%;
    width: 150px;
    height: 150px;
}

.floating-element:nth-child(3) {
    top: 40%;
    left: 5%;
    width: 80px;
    height: 80px;
}

.floating-element:nth-child(4) {
    top: 20%;
    left: 85%;
    width: 120px;
    height: 120px;
}

.floating-element:nth-child(5) {
    top: 80%;
    left: 20%;
    width: 90px;
    height: 90px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-30px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(-60px) rotate(270deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }
    
    .site-title {
        font-size: 36px;
    }
    
    .main-heading {
        font-size: 28px;
    }
    
    .description {
        font-size: 16px;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .notify-form {
        flex-direction: column;
    }
    
    .notify-form input,
    .notify-form button {
        width: 100%;
    }
    
    .traffic-icon {
        width: 100px;
        height: 100px;
    }
    
    .arrow {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 28px;
    }
    
    .main-heading {
        font-size: 24px;
    }
    
    .feature h3 {
        font-size: 20px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
}
