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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(130deg, #6b5d70 0%, #b46e93 99%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    width: 100%;
    max-width: 500px;
}


/* AGE VERIFICATION MODEL */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.age-gate-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #333;
}

.age-gate-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.age-gate-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 12px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 13px;
    color: #856404;
}

.age-gate-buttons {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.age-gate-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-gate-btn.decline {
    background: #e9ecef;
    color: #495057;
}

.age-gate-btn.decline:hover{
    background: #dee2e6;
}

.age-gate-btn.confirm {
    background: #667eea;
    color: white;
}

.age-gate-btn.confirm:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

/* MAIN CONTENT */
.profile {
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile h1 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 600;
}

.profile p {
    font-size: 14px;
    opacity: 0.9;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 16px;
}

.link-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.link-button:active {
    transform: translateY(-1px);
}

.link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.link-text {
    flex: 1;
    text-align: left;
}

.link-arrow {
    opacity: 0.5;
    font-size: 14px;
}

/* Platform-specific colors on hover */
.link-button.snapchat:hover {
    background: linear-gradient(135deg, #ffffff, #fff990);
    color: rgb(0, 0, 0);
}

.link-button.instagram:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.link-button.fansly:hover {
    background: linear-gradient(135deg, #ffffff, #2799F6);
    color: rgb(0, 0, 0);
}
.link-button.onlyfans:hover {
    background: linear-gradient(135deg, #ffffff, #2799F6);
    color: rgb(0, 0, 0);
}

.link-button.throne:hover {
    background: linear-gradient(60deg, #0748d2, #dbff0d);
    color: rgb(0, 0, 0);
}

.link-button.tiktok:hover {
    background: linear-gradient(135deg, #ffffff, #000000);
    color: rgb(0, 0, 0);
}

.link-button.youtube:hover {
    background: #FF0000;
    color: white;
}

.link-button.twitch:hover {
    background: linear-gradient(135deg, #ffffff, #9146FF);
    color: rgb(0, 0, 0);
}

.link-button.twitter:hover {
    background: linear-gradient(135deg, #ffffff, #000000);
    color: rgb(0, 0, 0);
}

.link-button.discord:hover {
    background: #5865F2;
    color: white;
}

.link-button.linkedin:hover {
    background: #0077B5;
    color: white;
}

.link-button.github:hover {
    background: #333;
    color: white;
}

.footer {
    text-align: center;
    margin-top: 40px;
    color: white;
    opacity: 0.8;
    font-size: 12px;
}

@media (max-width: 480px) {
    .profile h1 {
        font-size: 24px;
    }

    .link-button {
        padding: 14px 16px;
        font-size: 15px;
    }

    .profile-image {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .age-gate-content {
        padding: 30px 20px;
    }

    .age-gate-content h2 {
        font-size: 20px;
    }
}
