/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, 
        #ffd6f0 0%,
        #ffb3d9 25%, 
        #ff94c8 50%, 
        #ff85c1 75%,
        #ff69b4 100%);
    background-size: 400% 400%;
    animation: gradientFlow 12s ease-in-out infinite;
    min-height: 100vh;
    color: #1a1a1a;
    overflow-x: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === PARTICLES BACKGROUND === */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* === MAIN CONTAINER === */
.container {
    position: relative;
    z-index: 10;
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* === PROFILE SECTION === */
.profile-section {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.profile-wrapper,
.profile-image-wrapper {
    margin: 0 auto 35px;
    width: 180px;
    height: 180px;
    position: relative;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.profile-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(255, 182, 193, 0.2) 50%, 
        transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.08); 
        opacity: 0.8; 
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 10px 40px rgba(255, 182, 193, 0.4),
        0 0 30px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
}

.username,
h1 {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

/* === SOCIAL ICONS === */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.15);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.25);
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

/* === TAGLINE & WELCOME TEXT === */
.tagline {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.welcome-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* === LINKS SECTION === */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BUTTONS === */
.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 30px;
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.enter-button {
    background: linear-gradient(135deg, 
        #ff6b9d 0%, 
        #ffa07a 50%, 
        #ffd700 100%);
    color: white;
    border: none;
    padding: 20px 60px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.35);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
}

.link-button::before,
.enter-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before,
.enter-button:hover::before {
    left: 100%;
}

.link-button:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
}

.enter-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.45);
}

.link-button:active,
.enter-button:active {
    transform: translateY(-1px);
}

.enter-button.disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

/* === LINK 1 - FEATURED === */
.link1 {
    background: rgba(255, 215, 0, 0.25);
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 6px 25px rgba(255, 215, 0, 0.3),
        0 0 40px rgba(255, 215, 0, 0.15);
}

.link1:hover {
    background: rgba(255, 215, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 
        0 10px 35px rgba(255, 215, 0, 0.4),
        0 0 50px rgba(255, 215, 0, 0.2);
    transform: translateY(-4px) scale(1.02);
}

/* Link 2-5 use default styles */
.link2 { }
.link3 { }
.link4 { }
.link5 { }

.button-icon {
    font-size: 22px;
}

.button-text {
    flex: 1;
    text-align: center;
}

/* === FOOTER === */
.footer {
    margin-top: 60px;
    font-size: 13px;
    color: #999;
}

.disclaimer {
    font-size: 11px;
    color: #666;
    margin-bottom: 8px;
}

.powered {
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
}

/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .username,
    h1 {
        font-size: 28px;
    }
    
    .link-button,
    .enter-button {
        padding: 16px 25px;
        font-size: 15px;
    }
    
    .profile-wrapper,
    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        padding: 25px 10px;
    }
    
    .username,
    h1 {
        font-size: 30px;
    }
    
    .tagline {
        font-size: 15px;
    }
    
    .welcome-text {
        font-size: 15px;
    }
    
    .link-button {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .enter-button {
        padding: 18px 50px;
        font-size: 16px;
    }
    
    .button-icon {
        font-size: 20px;
    }
    
    .profile-wrapper,
    .profile-image-wrapper {
        width: 150px;
        height: 150px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .links-section {
        gap: 14px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .username,
    h1 {
        font-size: 22px;
    }
    
    .link-button,
    .enter-button {
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Loading Animation */
body {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}