/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Navbar */
.navbar {
    padding: 30px 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

/* Main Content */
.content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 183, 3, 0.1);
    color: #FFB703;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 183, 3, 0.3);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #aaaaaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text > p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Live Alert Box */
.live-alert {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    max-width: 600px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.live-alert:hover {
    transform: translateY(-5px);
    border-color: #FFB703;
}

.live-alert i.fa-bullhorn {
    font-size: 2.5rem;
    color: #FFB703;
    background: rgba(255, 183, 3, 0.1);
    padding: 20px;
    border-radius: 50%;
}

.alert-content h3 {
    color: #FFB703;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.alert-content p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* Button */
.btn-primary {
    display: inline-block;
    background-color: #FFB703;
    color: #000;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e6a600;
    transform: translateX(5px);
}

.btn-primary i {
    margin-left: 8px;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-info p {
    color: #888;
    font-size: 0.9rem;
}

.contact-info i {
    color: #FFB703;
    margin-right: 8px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #FFB703;
}

.copyright {
    color: #555;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .live-alert {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .live-alert i.fa-bullhorn {
        margin-bottom: 10px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
