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

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}

/* Background Effects */
.background-effects {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, #111827, #000000, #1f2937);
}

.falling-money {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.dollar {
    position: absolute;
    top: -20px;
    font-size: 1.5rem;
    color: #25d0ff;
    opacity: 0.3;
    animation: fall 5s linear infinite;
}

.dollar:nth-child(2), .dollar:nth-child(5), .dollar:nth-child(8) {
    font-size: 1.25rem;
    opacity: 0.25;
    animation-duration: 5.5s;
}

.dollar:nth-child(3), .dollar:nth-child(6), .dollar:nth-child(9) {
    font-size: 1rem;
    opacity: 0.35;
    animation-duration: 6s;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent, rgba(0,0,0,0.3));
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    max-width: 28rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Profile Header */
.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

.subtitle {
    color: #9ca3af;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Links Container */
.links-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.link-card {
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.link-card:hover {
    transform: scale(1.02);
}

.card-image {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid #25d0ff;
}

.card-image.youtube {
    border-color: #ff0000;
}

.card-image.course {
    border-color: #25d0ff;
}

.card-image.fusionads {
    border-color: #22c55e;
}

.card-image.discord {
    border-color: #7289da;
}

/* Social Section */
.social-section {
    margin-bottom: 2rem;
}

.social-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #111827, #000000, #1f2937);
    border: 1px solid #4b5563;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Info */
.contact-info {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
    padding: 1rem;
    margin-top: 2rem;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.copyright {
    font-size: 0.625rem;
    color: #6b7280;
    margin-top: 0.5rem;
}


/* Keyframes */
@keyframes fall {
    from {
        transform: translateY(-100vh);
    }
    to {
        transform: translateY(100vh);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }
    
    .title {
        font-size: 1.25rem;
    }
    
    .card-image {
        height: 7rem;
    }
}
