/* Zenithal/Zen - guns.lol Style Page */
/* Created by Memory (kuq3) */

:root {
    --bg: #000000;
    --bg-card: #0a0a0a;
    --border: #1a1a1a;
    --text: #ffffff;
    --text-muted: #888888;
    --accent: #ff0055;
    --accent-dim: #cc0033;
    --red: #ff0055;
    --shadow: 0 20px 60px rgba(255, 0, 85, 0.2);
}

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

body {
    font-family: 'Space Grotesk', -apple-system, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="10" fill="none" stroke="%23ff0055" stroke-width="2"/><circle cx="16" cy="16" r="2" fill="%23ff0055"/><line x1="16" y1="6" x2="16" y2="10" stroke="%23ff0055" stroke-width="2"/><line x1="16" y1="22" x2="16" y2="26" stroke="%23ff0055" stroke-width="2"/><line x1="6" y1="16" x2="10" y2="16" stroke="%23ff0055" stroke-width="2"/><line x1="22" y1="16" x2="26" y2="16" stroke="%23ff0055" stroke-width="2"/></svg>') 16 16, crosshair;
}

a, button {
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="10" fill="none" stroke="%23ff0055" stroke-width="2"/><circle cx="16" cy="16" r="2" fill="%23ff0055"/><line x1="16" y1="6" x2="16" y2="10" stroke="%23ff0055" stroke-width="2"/><line x1="16" y1="22" x2="16" y2="26" stroke="%23ff0055" stroke-width="2"/><line x1="6" y1="16" x2="10" y2="16" stroke="%23ff0055" stroke-width="2"/><line x1="22" y1="16" x2="26" y2="16" stroke="%23ff0055" stroke-width="2"/></svg>') 16 16, pointer;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    inset: 0;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-text {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0055, #ff3377);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s infinite;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="10" fill="none" stroke="%23ff0055" stroke-width="2"/><circle cx="16" cy="16" r="2" fill="%23ff0055"/><line x1="16" y1="6" x2="16" y2="10" stroke="%23ff0055" stroke-width="2"/><line x1="16" y1="22" x2="16" y2="26" stroke="%23ff0055" stroke-width="2"/><line x1="6" y1="16" x2="10" y2="16" stroke="%23ff0055" stroke-width="2"/><line x1="22" y1="16" x2="26" y2="16" stroke="%23ff0055" stroke-width="2"/></svg>') 16 16, pointer;
}

/* Music Toggle Button */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 0, 85, 0.2);
    border: 2px solid var(--accent);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.music-toggle:hover {
    background: rgba(255, 0, 85, 0.3);
    transform: scale(1.1);
}

.music-toggle.playing svg {
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.background::before {
    content: '🏎️';
    position: absolute;
    font-size: 3rem;
    filter: hue-rotate(-10deg) saturate(2);
    animation: driveCar 15s linear infinite;
    opacity: 0.6;
    z-index: 1;
}

@keyframes driveCar {
    0% {
        left: -100px;
        bottom: 20%;
        transform: scale(1) scaleX(-1);
    }
    45% {
        bottom: 20%;
    }
    50% {
        left: 110%;
        bottom: 25%;
        transform: scale(1) scaleX(-1);
    }
    51% {
        transform: scale(1) scaleX(1);
    }
    55% {
        bottom: 25%;
    }
    100% {
        left: -100px;
        bottom: 30%;
        transform: scale(1) scaleX(1);
    }
}

.stars {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 90%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 5s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

#particles {
    width: 100%;
    height: 100%;
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: rgba(255, 0, 85, 0.3);
    box-shadow: 0 25px 70px rgba(255, 0, 85, 0.25);
}

/* Profile Header */
.profile-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--border);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.avatar-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dim));
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.avatar-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-radius: 50%;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin: 5px;
}

.avatar-img {
    position: absolute;
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg);
}

.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border: 3px solid var(--bg);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.name-divider {
    color: var(--text-muted);
}

.profile-bio {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.profile-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.profile-location svg {
    color: var(--accent);
}

/* Profile Body */
.profile-body {
    padding: 2rem;
}

.info-box {
    margin-bottom: 1.5rem;
}

.info-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Username */
.username-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.username-text {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.copy-btn:hover {
    color: var(--accent);
    transform: scale(1.1);
}

/* Badges */
.badges-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 85, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 0, 85, 0.3);
    font-weight: 600;
    transition: all 0.3s;
}

.badge svg {
    flex-shrink: 0;
}

.badge:hover {
    background: rgba(255, 0, 85, 0.2);
    transform: translateY(-2px);
}

/* Watching Status */
.watching-status {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.watching-dot {
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    margin-top: 4px;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.watching-info {
    flex: 1;
}

.watching-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.watching-title {
    font-weight: 600;
    color: var(--text);
}

.watching-episode {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.stat-box:hover {
    border-color: rgba(255, 0, 85, 0.4);
    transform: translateY(-5px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--accent);
}

.stat-icon svg {
    stroke: var(--accent);
}

.stat-number {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Social Links */
.social-section {
    margin-top: 2rem;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 0.75rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.3s;
}

.social-link:hover {
    transform: translateY(-5px);
    border-color: currentColor;
}

.social-link.youtube:hover { color: #FF0000; border-color: #FF0000; }
.social-link.roblox:hover { color: #ff0055; border-color: #ff0055; }
.social-link.gunslol:hover { color: #ff0055; border-color: #ff0055; }
.social-link.discord:hover { color: #5865F2; border-color: #5865F2; }
.social-link.spotify:hover { color: #1DB954; border-color: #1DB954; }
.social-link.email:hover { color: #ff0055; border-color: #ff0055; }

.social-link svg {
    opacity: 0.8;
}

.social-link:hover svg {
    opacity: 1;
}

/* Footer */
.profile-footer {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    .profile-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .profile-body {
        padding: 1.5rem;
    }

    .profile-name {
        font-size: 1.75rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    z-index: 10000;
    animation: slideIn 0.3s ease, slideOut 0.3s ease 2.7s;
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}