* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    color: #fff;
}

.hero {
    position: relative;
    height: 100vh;
    background: url('ChatGPT\ Image\ Aug\ 15\,\ 2025\,\ 07_01_31\ PM.png') center center / cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: rgba(193, 209, 31, 0.45);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.logo {
    max-width: 200px;
    height: 200px;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

#countdown div {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1rem;
}

#countdown span {
    font-size: 2rem;
    display: block;
    font-weight: bold;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ecfdcc;
    color: #111;
}
