* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 10% 20%, #fbe8fb 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, #cfe3f8 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, #e2e8f0 0%, #e9eff6 100%);
    background-color: #e9eff6;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

/* Decor Elements (Simulating 3D shapes) */
.decor {
    position: absolute;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.pink-sphere {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffc1e3, #e879b1);
    top: -30px;
    left: 20%;
    box-shadow: 10px 10px 30px rgba(232, 121, 177, 0.3);
}

.orange-sphere {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffd494, #f09819);
    bottom: 20px;
    right: 5%;
    box-shadow: 10px 10px 30px rgba(240, 152, 25, 0.3);
    animation-delay: -3s;
}

.green-tube {
    width: 60px;
    height: 60px;
    border: 15px solid transparent;
    border-top: 15px solid #84ccb9;
    border-right: 15px solid #84ccb9;
    border-radius: 50%;
    bottom: 25%;
    left: 15%;
    transform: rotate(45deg);
    filter: drop-shadow(5px 10px 15px rgba(132, 204, 185, 0.4));
    animation-delay: -1.5s;
}

.gold-spring {
    width: 30px;
    height: 80px;
    background: repeating-linear-gradient(45deg, #d4af37, #d4af37 10px, #b8860b 10px, #b8860b 20px);
    border-radius: 15px;
    right: 20%;
    top: 60%;
    transform: rotate(15deg);
    box-shadow: 5px 10px 15px rgba(184, 134, 11, 0.3);
    animation-delay: -4s;
}

/* Main Card */
.card {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    width: 100%;
    max-width: 900px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

/* Top Logo */
.logo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    color: #111827;
    letter-spacing: -0.5px;
    background: #f3f4f6;
    padding: 10px 24px;
    border-radius: 99px;
}

/* Center Content */
.content {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.emoji-icon {
    font-size: 48px;
    margin-bottom: 24px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.1));
}

.pre-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #6b7280;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.title {
    font-size: 56px;
    font-weight: 800;
    color: #1d4ed8;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 17px;
    color: #4b5563;
    max-width: 600px;
    line-height: 1.6;
}

/* Footer Socials */
.footer {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.social-link {
    width: 48px;
    height: 48px;
    background: #f3f4f6;
    color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: #1d4ed8;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .card {
        max-width: 90%;
        padding: 50px 30px;
    }
    .title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .card {
        padding: 40px 20px;
        border-radius: 24px;
    }
    .title {
        font-size: 36px;
    }
    .subtitle {
        font-size: 15px;
    }
    .emoji-icon {
        font-size: 36px;
    }
    .logo-text {
        font-size: 20px;
        padding: 8px 20px;
    }
    .decor {
        display: none;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 30px;
    }
    .subtitle {
        font-size: 14px;
    }
}
