:root {
    --primary-color: #FFFFFF;
    --background-color: #080808;
    --accent-color: rgba(194, 184, 184, 0.1);
    --primary-color-alpha-003: rgba(194, 184, 184, 0.03);
    --primary-color-alpha-005: rgba(194, 184, 184, 0.05);
    --primary-color-alpha-1: rgba(194, 184, 184, 0.1);
    --primary-color-alpha-12: rgba(194, 184, 184, 0.12);
    --primary-color-alpha-15: rgba(194, 184, 184, 0.15);
    --primary-color-alpha-2: rgba(194, 184, 184, 0.2);
    --primary-color-alpha-22: rgba(194, 184, 184, 0.22);
    --primary-color-alpha-25: rgba(194, 184, 184, 0.25);
    --primary-color-alpha-3: rgba(194, 184, 184, 0.3);
    --primary-color-alpha-32: rgba(194, 184, 184, 0.32);
    --primary-color-alpha-4: rgba(194, 184, 184, 0.4);
    --primary-color-alpha-5: rgba(194, 184, 184, 0.5);
    --primary-color-alpha-6: rgba(194, 184, 184, 0.6);
    --primary-color-alpha-65: rgba(194, 184, 184, 0.65);
    --primary-color-alpha-7: rgba(194, 184, 184, 0.7);
    --primary-color-light: #f2f0f0;
    --primary-color-dark: #a29292;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: var(--background-color) url('../images/GwTY0MSHzxCj.mp4') center/cover no-repeat;
    font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.gate-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}


.gate-content {
    text-align: center;
    animation: gateEntrance 1s ease-out forwards;
}


@keyframes gateEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


.gate-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--primary-color-alpha-5);
    letter-spacing: -1px;
}


.gate-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color-alpha-5);
    letter-spacing: 0.5px;
    text-transform: lowercase;
    opacity: 0.7;
    animation: gatePulse 2s ease-in-out infinite;
}


@keyframes gatePulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-image: 
        linear-gradient(var(--primary-color-alpha-1) 1px, transparent 1px),
        linear-gradient(90deg, var(--primary-color-alpha-1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-float 20s linear infinite, gridFadeIn 1.2s ease-out forwards;
    pointer-events: none;
    z-index: 1;
}

@keyframes gridFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.02;
        transform: scale(1);
    }
}

@keyframes grid-float {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.easter-egg-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color-alpha-1);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color-alpha-2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 1000;
    user-select: none;
}

.easter-egg-btn:hover {
    background: var(--primary-color-alpha-2);
    border-color: var(--primary-color-alpha-3);
}

.interactive-mode .container {
    cursor: grab;
    user-select: none;
}

.interactive-mode .container:active {
    cursor: grabbing;
    transform: scale(0.98);
}

.interactive-mode .profile-avatar,
.interactive-mode .stat-card,
.interactive-mode .roblox-section,
.interactive-mode .profile-link,
.interactive-mode .name,
.interactive-mode .username,
.interactive-mode .roblox-status,
.interactive-mode .roblox-title,
.interactive-mode .join-date {
    cursor: grab;
    user-select: none;
}

.interactive-mode .profile-avatar:active,
.interactive-mode .stat-card:active,
.interactive-mode .roblox-section:active,
.interactive-mode .profile-link:active,
.interactive-mode .name:active,
.interactive-mode .username:active,
.interactive-mode .roblox-status:active,
.interactive-mode .roblox-title:active,
.interactive-mode .join-date:active {
    cursor: grabbing;
    transform: scale(0.95);
}

.interactive-mode .profile-link {
    pointer-events: none;
}

.interactive-mode .easter-egg-btn {
    background: var(--primary-color-alpha-3);
    border-color: var(--primary-color-alpha-5);
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px var(--primary-color-alpha-3);
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 20px var(--primary-color-alpha-3); }
    50% { box-shadow: 0 0 30px var(--primary-color-alpha-5); }
}

.container {
    background: rgba(6, 7, 6, 0.2);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(6, 7, 6, 0.1);
    border-radius: 50px;
    padding: 40px;
    max-width: 520px;
    width: 90%;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 var(--primary-color-alpha-005);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    animation: containerEntrance 0.8s ease-out forwards;
}

@keyframes containerEntrance {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.container:hover {
    border-color: var(--primary-color-alpha-2);
    transform: translateY(-8px);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 var(--primary-color-alpha-1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
    
    opacity: 0;
    transform: translateX(-30px);
    animation: slideInLeft 0.6s ease-out 0.2s forwards;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    border: 3px solid var(--primary-color-alpha-2);
    transition: all 0.3s ease;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 20px var(--primary-color-alpha-1);
}

.profile-avatar:hover {
    border-color: var(--primary-color-alpha-4);
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary-color-alpha-2);
    filter: brightness(1.05);
}

.profile-info {
    flex: 1;
    min-width: 0;
}

.name {
    font-size: 2.3rem;
    font-weight: 400;
    letter-spacing: -1px;
    color: var(--primary-color);
    text-shadow: 0px 0px 16.5px var(--primary-color);
    line-height: 1.1;
    display: inline-block;
    margin-right: 12px;
}

@keyframes codeGlitch {
    0%, 100% { filter: hue-rotate(0deg) brightness(1); }
    25% { filter: hue-rotate(90deg) brightness(1.2); }
    50% { filter: hue-rotate(180deg) brightness(0.9); }
    75% { filter: hue-rotate(270deg) brightness(1.1); }
}

@keyframes codeFlow {
    0% { opacity: 0; transform: translateY(10px); }
    50% { opacity: 1; transform: translateY(-5px); }
    100% { opacity: 0; transform: translateY(-15px); }
}

@keyframes codeFloat {
    0% { opacity: 0; transform: translateY(-5px) scale(0.8); }
    50% { opacity: 1; transform: translateY(0px) scale(1); }
    100% { opacity: 0; transform: translateY(5px) scale(1.2); }
}

@keyframes euroYellowFlash {
    0%, 100% { 
        color: var(--primary-color);
    }
    25% { 
        color: #ffd700;
    }
    50% { 
        color: #ffed4e;
    }
    75% { 
        color: #ffc107;
    }
}

@keyframes counterUpFast {
    0% { 
        content: '+0';
        opacity: 1; 
        transform: translateY(0) scale(1);
        color: #00ff00;
    }
    10% { 
        content: '+12';
        opacity: 1; 
        transform: translateY(-2px) scale(1.1);
        color: #00ff44;
    }
    20% { 
        content: '+35';
        opacity: 1; 
        transform: translateY(-1px) scale(1);
        color: #00ff88;
    }
    30% { 
        content: '+67';
        opacity: 1; 
        transform: translateY(-3px) scale(1.1);
        color: #00ffaa;
    }
    40% { 
        content: '+89';
        opacity: 1; 
        transform: translateY(-2px) scale(1);
        color: #00ff66;
    }
    50% { 
        content: '+124';
        opacity: 1; 
        transform: translateY(-4px) scale(1.2);
        color: #00ff00;
    }
    60% { 
        content: '+156';
        opacity: 1; 
        transform: translateY(-2px) scale(1);
        color: #44ff44;
    }
    70% { 
        content: '+203';
        opacity: 1; 
        transform: translateY(-3px) scale(1.1);
        color: #88ff88;
    }
    80% { 
        content: '+267';
        opacity: 1; 
        transform: translateY(-1px) scale(1);
        color: #00ff22;
    }
    90% { 
        content: '+321';
        opacity: 1; 
        transform: translateY(-5px) scale(1.2);
        color: #00ff99;
    }
    100% { 
        content: '+450';
        opacity: 1; 
        transform: translateY(-2px) scale(1);
        color: #00ff00;
    }
}

@keyframes redCounterNew {
    0% { content: '-0'; color: #ff4444; }
    10% { content: '-5'; color: #ff6666; }
    20% { content: '-12'; color: #ff2222; }
    30% { content: '-18'; color: #ff5555; }
    40% { content: '-25'; color: #ff3333; }
    50% { content: '-34'; color: #ff4444; }
    60% { content: '-42'; color: #ff7777; }
    70% { content: '-51'; color: #ff1111; }
    80% { content: '-67'; color: #ff5555; }
    90% { content: '-78'; color: #ff3333; }
    100% { content: '-89'; color: #ff4444; }
}

.username {
    font-size: 0.95rem;
    color: var(--primary-color-alpha-7);
    font-weight: 500;
}

.roblox-section {
    background: rgba(6, 7, 6, 0.2);
    border: 2px solid rgba(6, 7, 6, 0.1);
    border-radius: 25px;
    padding: 24px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out 0.4s forwards;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.roblox-section:hover {
    border-color: var(--primary-color-alpha-15);
    background: rgba(6, 7, 6, 0.3);
}

.roblox-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.roblox-title {
    font-size: 1.1rem;
    font-weight: 550;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}


.roblox-icon {
    width: 18px;
    height: 18px;
    color: var(--primary-color);
    filter: drop-shadow(var(--primary-color) 1px 0 7px);
}

.roblox-status {
    font-size: 0.85rem;
    color: var(--primary-color-alpha-6);
    font-weight: 300;
    transition: opacity 0.5s ease;
}

.roblox-status.fade-out {
    opacity: 0;
}




.profile-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color-alpha-22);
    border: 2px solid var(--primary-color-alpha-12);
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 14px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.profile-link:hover {
    background: var(--primary-color-alpha-32);
    border-color: var(--primary-color-alpha-25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}



@keyframes spin {
    to { transform: rotate(360deg); }
}

.join-date {
    font-size: 0.85rem;
    color: var(--primary-color-alpha-65);
    margin-bottom: 20px;
    font-weight: 500;
}

audio {
    display: none;
}

@media (max-width: 600px) {
    .container {
        padding: 32px 24px;
        max-width: 95%;
        border-radius: 30px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;

    }


