* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Animated Background */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&h=1080&fit=crop') center/cover no-repeat;
    z-index: -1;
}

.background::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.shape3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

/* Container */
.container {
    padding: 15px;
    width: 100%;
    max-width: 500px;
    z-index: 1;
}

/* Glassmorphic Card */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 35px 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo h1 {
    font-size: 2em;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Icon */
.icon {
    color: white;
    margin-bottom: 15px;
    animation: rotate 3s linear infinite;
}

.icon svg {
    width: 70px;
    height: 70px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Heading */
h2 {
    font-size: 1.6em;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

/* Message */
.message {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.time-box {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 10px;
    min-width: 75px;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.time {
    display: block;
    font-size: 2em;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.label {
    display: block;
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Info */
.contact-info {
    margin-bottom: 25px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 12px;
    font-size: 1em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.contact-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.25);
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-size: 0.9em;
}

.contact-links a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: white;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        max-width: 95%;
    }

    .glass-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .logo h1 {
        font-size: 1.6em;
        letter-spacing: 1px;
    }

    .icon svg {
        width: 60px;
        height: 60px;
    }

    h2 {
        font-size: 1.3em;
    }

    .message {
        font-size: 0.9em;
    }

    .countdown {
        gap: 8px;
    }

    .time-box {
        min-width: 65px;
        padding: 12px 8px;
    }

    .time {
        font-size: 1.6em;
    }

    .label {
        font-size: 0.7em;
    }

    .contact-info > p {
        font-size: 0.9em;
    }

    .contact-links {
        width: 100%;
    }

    .contact-links a {
        width: 100%;
        justify-content: center;
        font-size: 0.85em;
        padding: 10px 15px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links a svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.4em;
    }

    h2 {
        font-size: 1.1em;
    }

    .message {
        font-size: 0.85em;
    }

    .time-box {
        min-width: 55px;
        padding: 10px 6px;
    }

    .time {
        font-size: 1.4em;
    }

    .label {
        font-size: 0.65em;
    }
}
