/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0f11; /* Deep Dark Background */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* --- Liquid Background Animation --- */
.background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px); /* High blur for liquid effect */
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

/* Purple/Pink Shape */
.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, #7b2cbf, #ff006e);
    top: -50px;
    left: -100px;
    animation-delay: 0s;
}

/* Blue/Cyan Shape */
.shape-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(180deg, #4361ee, #4cc9f0);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

/* Yellow/Pink Accent Shape */
.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, #f72585, #ffba08);
    bottom: 20%;
    left: 20%;
    animation-duration: 15s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(40px, 60px) rotate(20deg); }
}

/* --- Glassmorphism Card --- */
.container {
    position: relative;
    z-index: 10;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border-radius: 25px;
    padding: 4rem 3rem; /* Increased top/bottom padding since logo is gone */
    width: 100%;
    max-width: 550px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px 0 rgba(0, 0, 0, 0.5);
}

/* --- Content Styling --- */
h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.2;
    background: -webkit-linear-gradient(#fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 300;
}

/* --- Action Area (Mail Button) --- */
.action-area {
    margin-bottom: 3rem;
}

.contact-btn {
    display: inline-block;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 50px; /* Fully rounded */
    background: linear-gradient(45deg, #4361ee, #f72585);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-btn i {
    margin-right: 8px;
}

.contact-btn:hover {
    background: linear-gradient(45deg, #3a0ca3, #b5179e);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.6);
    color: #fff;
}

/* --- Timer --- */
.timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2.5rem;
}

.time-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    min-width: 75px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.time-box span {
    display: block;
    font-size: 1.6rem;
    font-weight: 600;
    color: #4cc9f0; /* Cyan text for numbers */
}

.time-box small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Social Links --- */
.social-links {
    margin-top: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.4rem;
    margin: 0 12px;
    transition: all 0.3s;
    cursor: default; /* Cursor indicates no link */
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* --- Responsive --- */
@media (max-width: 600px) {
    .glass-card {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .contact-btn {
        width: 100%;
        padding: 15px 0;
    }
}