* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    background: #0f172a;
    color: #fff;
    overflow-x: hidden;
}

/* Animated Background */
.background {
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, #7f00ff, #e100ff, #00c6ff);
    background-size: 300% 300%;
    animation: bgMove 10s ease infinite;
    z-index: -1;
}

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Main Card */
.container {
    max-width: 420px;
    margin: 60px auto;
    padding: 30px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.profile img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #fff;
}

.profile h1 {
    font-weight: 600;
}

.profile p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Buttons */
.link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    background: #fff;
    padding: 14px;
    margin: 12px 0;
    border-radius: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.link-btn i {
    font-size: 18px;
}

.link-btn:hover {
    transform: translateY(-4px);
    background: #f1f5f9;
}

/* Adsense Placeholder */
.ads-placeholder {
    margin: 25px 0;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    font-size: 13px;
    color: #e5e7eb;
}

/* Footer */
footer {
    margin-top: 20px;
    font-size: 15px;
    opacity: 1;
}
