* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    height: 100-vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a0b2e 0%, #000000 100%);
    z-index: -1;
}

.container {
    animation: fadeIn 1.5s ease-out;
}

.logo {
    width: 120px;
    filter: drop-shadow(0 0 10px #ff00ff);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.brand-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.brand-name span {
    color: #ff00ff;
    text-shadow: 0 0 15px #ff00ff;
}


.countdown-container {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    justify-content: center;
}

.time-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.time-box:hover {
    transform: translateY(-5px);
    border-color: #ff00ff;
}

.time-box span {
    font-size: 2.5rem;
    font-weight: 600;
    display: block;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #ff00ff;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
    text-decoration: none;
}

.btn:hover {
    background: #ff00ff;
    box-shadow: 0 0 20px #ff00ff;
}
footer{
    position: fixed;
    bottom: 15px;
}
footer h4{
    display: inline;
    position: relative;
}
footer .smp{
    color: #ff00ff;
}
footer .tr{
    color: red;
}
