/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(120, 100, 200, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 100, 200, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(100, 150, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(200, 80, 255, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a2e 0%, #1a1540 30%, #2d1b69 60%, #0f0a3a 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px 0;
    position: relative;
    overflow-x: hidden;
}

/* Twinkling Stars Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 179, 0.8), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(196, 77, 255, 0.9), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(77, 184, 255, 0.7), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 160px 30px, rgba(255, 107, 179, 0.6), transparent),
        radial-gradient(1px 1px at 200px 60px, rgba(196, 77, 255, 0.8), transparent),
        radial-gradient(2px 2px at 250px 20px, rgba(77, 184, 255, 0.9), transparent);
    background-repeat: repeat;
    background-size: 300px 150px;
    animation: twinkle 15s linear infinite;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 70px 50px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 120px 100px, rgba(255, 107, 179, 0.7), transparent),
        radial-gradient(1px 1px at 180px 50px, rgba(196, 77, 255, 0.8), transparent),
        radial-gradient(1px 1px at 230px 130px, rgba(77, 184, 255, 0.6), transparent),
        radial-gradient(2px 2px at 280px 80px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(1px 1px at 320px 40px, rgba(255, 107, 179, 0.9), transparent);
    background-repeat: repeat;
    background-size: 400px 200px;
    animation: twinkle 25s linear infinite reverse;
    pointer-events: none;
    z-index: -1;
}

@keyframes twinkle {
    0% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.3; transform: scale(1); }
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Profile Section */
.profile {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out;
}

.profile-image {
    margin-bottom: 20px;
}

.avatar {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    background: linear-gradient(45deg, rgba(255, 107, 179, 0.3), rgba(196, 77, 255, 0.3), rgba(77, 184, 255, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ff6bb3;
    border: 4px solid rgba(196, 77, 255, 0.4);
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    box-shadow: 
        0 0 25px rgba(255, 107, 179, 0.4),
        0 0 50px rgba(196, 77, 255, 0.3),
        inset 0 0 25px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:hover {
    transform: scale(1.05);
    border-color: rgba(196, 77, 255, 0.6);
    box-shadow: 
        0 0 35px rgba(255, 107, 179, 0.6),
        0 0 60px rgba(196, 77, 255, 0.4),
        inset 0 0 35px rgba(255, 255, 255, 0.2);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.profile-name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #ff6bb3, #c44dff, #4db8ff, #ff94d6, #9c6aff);
    background-size: 300% 300%;
    animation: gradientShift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 107, 179, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.profile-title {
    font-size: 1.2rem;
    color: #c44dff;
    margin-bottom: 12px;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(196, 77, 255, 0.4);
}

.profile-bio {
    font-size: 1rem;
    color: #b8b8d1;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

/* Links Section */
.links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(196, 77, 255, 0.2);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(196, 77, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(196, 77, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.link-button i {
    font-size: 1.5rem;
    margin-right: 16px;
    min-width: 24px;
    text-align: center;
}

.link-content {
    flex: 1;
    text-align: left;
}

.link-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.link-subtitle {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Platform-Specific Colors */
.link-button.twitch:hover {
    background: rgba(145, 70, 255, 0.15);
    border-color: rgba(145, 70, 255, 0.4);
}

.link-button.twitch i {
    color: #9146FF;
}

.link-button.youtube:hover {
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
}

.link-button.youtube i {
    color: #FF0000;
}

.link-button.discord:hover {
    background: rgba(114, 137, 218, 0.15);
    border-color: rgba(114, 137, 218, 0.4);
}

.link-button.discord i {
    color: #7289DA;
}

.link-button.twitter:hover {
    background: rgba(29, 161, 242, 0.15);
    border-color: rgba(29, 161, 242, 0.4);
}

.link-button.twitter i {
    color: #1DA1F2;
}

.link-button.instagram:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.15), rgba(255, 220, 128, 0.15));
    border-color: rgba(225, 48, 108, 0.4);
}

.link-button.instagram i {
    background: linear-gradient(45deg, #E1306C, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-button.tiktok:hover {
    background: rgba(255, 0, 80, 0.15);
    border-color: rgba(255, 0, 80, 0.4);
}

.link-button.tiktok i {
    color: #FF0050;
}

.link-button.kick:hover {
    background: rgba(83, 217, 63, 0.15);
    border-color: rgba(83, 217, 63, 0.4);
}

.link-button.kick i {
    color: #53D93F;
}

.link-button.onlyfans:hover {
    background: rgba(0, 158, 255, 0.15);
    border-color: rgba(0, 158, 255, 0.4);
}

.link-button.onlyfans i {
    color: #009EFF;
}

.link-button.fansly:hover {
    background: rgba(45, 156, 219, 0.15);
    border-color: rgba(45, 156, 219, 0.4);
}

.link-button.fansly i {
    color: #2D9CDB;
}

.link-button.throne:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.link-button.throne i {
    color: #FFD700;
}

.link-button.cashapp:hover {
    background: rgba(0, 211, 84, 0.15);
    border-color: rgba(0, 211, 84, 0.4);
}

.link-button.cashapp i {
    color: #00D354;
}

.link-button.venmo:hover {
    background: rgba(58, 150, 255, 0.15);
    border-color: rgba(58, 150, 255, 0.4);
}

.link-button.venmo i {
    color: #3A96FF;
}

.link-button.sextpanther:hover {
    background: rgba(255, 20, 147, 0.15);
    border-color: rgba(255, 20, 147, 0.4);
}

/* Platform Logo Styles */
.platform-logo {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 16px;
}

.onlyfans-logo {
    background-image: url('OnlyFans.png');
}

.fansly-logo {
    background-image: url('Fansly.png');
}

.twitter-logo {
    background-image: url('Twitter.png');
}

.venmo-logo {
    background-image: url('Venmo.png');
}

.tiktok-logo {
    background-image: url('TikTok.png');
}

.kick-logo {
    background-image: url('Kick.png');
}

.throne-logo {
    background-image: url('Throne.png');
}

.sextpanther-logo {
    background-image: url('Pink+Logo+Sticker.webp');
}

/* Responsive sizes for platform logos */
@media screen and (max-width: 768px) {
    .platform-logo {
        width: 20px;
        height: 20px;
        min-width: 20px;
        margin-right: 12px;
    }
}

@media screen and (max-width: 480px) {
    .platform-logo {
        width: 18px;
        height: 18px;
        min-width: 18px;
        margin-right: 10px;
    }
}

.link-button.special:hover {
    background: linear-gradient(45deg, rgba(255, 107, 179, 0.15), rgba(196, 77, 255, 0.15));
    border-color: rgba(196, 77, 255, 0.4);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(255, 107, 179, 0.3);
}

.link-button.special i {
    background: linear-gradient(45deg, #ff6bb3, #c44dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.link-button.email:hover {
    background: rgba(196, 77, 255, 0.15);
    border-color: rgba(196, 77, 255, 0.4);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(196, 77, 255, 0.3);
}

.link-button.email i {
    color: #c44dff;
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.powered-by {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.powered-by span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.powered-by a {
    text-decoration: none;
    transition: transform 0.3s ease;
}

.powered-by a:hover {
    transform: translateY(-1px);
}

.powered-logo {
    height: 24px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.powered-logo:hover {
    opacity: 1;
}

/* Responsive Design */

/* Small Desktop / Large Tablet */
@media screen and (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }
    
    .profile-name {
        font-size: 2.2rem;
    }
    
    .avatar {
        width: 130px;
        height: 130px;
        font-size: 3.5rem;
    }
    
    .link-button {
        padding: 18px 20px;
    }
    
    .link-button i {
        font-size: 1.4rem;
        margin-right: 14px;
    }
    
    .link-title {
        font-size: 1rem;
    }
    
    .link-subtitle {
        font-size: 0.85rem;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    body {
        padding: 16px 0;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .profile {
        margin-bottom: 32px;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-title {
        font-size: 1.1rem;
    }
    
    .profile-bio {
        font-size: 0.9rem;
    }
    
    .avatar {
        width: 110px;
        height: 110px;
        font-size: 3rem;
    }
    
    .links {
        gap: 12px;
    }
    
    .link-button {
        padding: 16px 18px;
    }
    
    .link-button i {
        font-size: 1.3rem;
        margin-right: 12px;
    }
    
    .link-title {
        font-size: 0.95rem;
    }
    
    .link-subtitle {
        font-size: 0.8rem;
    }
    
    .footer {
        margin-top: 32px;
        padding-top: 24px;
    }
    
    .footer p {
        font-size: 0.8rem;
    }
    
    .powered-by {
        gap: 6px;
    }
    
    .powered-by span {
        font-size: 0.7rem;
    }
    
    .powered-logo {
        height: 20px;
    }
}

/* Extra Small Mobile */
@media screen and (max-width: 360px) {
    .profile-name {
        font-size: 1.6rem;
    }
    
    .avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .link-button {
        padding: 14px 16px;
    }
    
    .link-content {
        min-width: 0;
    }
    
    .link-title {
        font-size: 0.9rem;
    }
    
    .link-subtitle {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading states */
.loading {
    opacity: 0;
}

.loaded {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus states for accessibility */
.link-button:focus {
    outline: 2px solid #4ecdc4;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .link-button {
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .link-subtitle {
        color: rgba(255, 255, 255, 0.9);
    }
}

/* Dark mode support (already dark, but for future light mode toggle) */
@media (prefers-color-scheme: light) {
    /* Keep dark theme for now, but structure is ready for light mode */
}

/* Print styles */
@media print {
    body {
        background: white;
        color: black;
    }
    
    .link-button {
        border: 1px solid #ccc;
        background: white;
        color: black;
    }
}