:root {
    /* Refined Color Palette */
    --yellow: #FFD700;
    --orange: #FF8C00;
    --brown: #8B4513;
    --dark-brown: #3E2723;
    --green: #00E676;
    --black: #050505; /* Deeper black */
    
    /* Glassmorphism Variables */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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

body {
    background: var(--black);
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
    overflow-x: hidden;
    cursor: none;
    line-height: 1.6;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Outfit', sans-serif;
}

/* Custom Cursor */
.cursor {
    width: 32px;
    height: 32px;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    font-size: 24px;
    transform: translate(-50%,-50%);
    transition: transform 0.1s ease-out;
}

/* Background Swirl */
.bg-swirl {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, #1a1500 0%, var(--black) 70%);
    z-index: 0;
}

.float-banana {
    position: fixed;
    font-size: 2rem;
    animation: floatUp linear infinite;
    opacity: .08;
    pointer-events: none;
    z-index: 1;
}

@keyframes floatUp {
    0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
    10% { opacity: .12; }
    90% { opacity: .12; }
    100% { transform: translateY(-10vh) rotate(360deg); opacity: 0; }
}

.container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
}

.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-60%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.avatar-wrap {
    display: inline-block;
    position: relative;
    animation: bounceIn .8s cubic-bezier(.68,-.55,.265,1.55);
}

@keyframes bounceIn {
    0% { transform: scale(0) rotate(-20deg); opacity: 0; }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

.avatar-ring {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(var(--yellow), var(--orange), var(--yellow), #FFF3B0, var(--yellow));
    padding: 6px;
    animation: glowSpin 5s linear infinite;
}

@keyframes glowSpin {
    0%,100% { box-shadow: 0 0 0 4px var(--black), 0 0 0 6px var(--yellow), 0 0 45px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 0 0 4px var(--black), 0 0 0 6px var(--orange), 0 0 65px rgba(255, 215, 0, 0.6); }
}

.avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg,#2a1500,#5C3317);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.avatar-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-dot {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    border: 4px solid var(--black);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.6); }
    50% { box-shadow: 0 0 0 10px transparent; }
}

.name {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--yellow);
    text-shadow: 2px 2px 0 var(--brown), 0 0 25px rgba(255, 215, 0, 0.3);
    margin: 20px 0 5px;
    animation: fadeDown .6s .3s both;
}

.handle {
    color: rgba(255, 215, 0, 0.7);
    font-size: 1.1rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    animation: fadeDown .6s .4s both;
}

@keyframes fadeDown {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

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

.roblox-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF3B30, #C2185B);
    border-radius: 20px;
    padding: 8px 24px;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    animation: pulseRed 2s infinite, fadeUp .6s .5s both;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.roblox-tag:hover {
    transform: scale(1.08) translateY(-2px);
}

@keyframes pulseRed {
    0%,100% { box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4); }
    50% { box-shadow: 0 6px 35px rgba(255, 59, 48, 0.7); }
}

/* SOCIALS */
.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 30px 0 0;
    animation: fadeUp .6s .6s both;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    transform: translateY(-5px);
}

.btn-tiktok {
    background: linear-gradient(135deg, rgba(30,30,30,0.8), rgba(10,10,10,0.9));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.btn-tiktok:hover {
    box-shadow: 0 12px 40px rgba(254, 44, 85, 0.4);
    border-color: #FE2C55;
}

.btn-youtube {
    background: linear-gradient(135deg, rgba(180,0,0,0.8), rgba(255,0,0,0.9));
    border: 1px solid rgba(255,0,0,0.3);
    box-shadow: 0 8px 32px rgba(255,0,0,0.3);
}
.btn-youtube:hover {
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.6);
}

.btn-discord {
    background: linear-gradient(135deg, rgba(64,78,237,0.8), rgba(88,101,242,0.9));
    border: 1px solid rgba(88,101,242,0.3);
    box-shadow: 0 8px 32px rgba(88,101,242,0.3);
}
.btn-discord:hover {
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.6);
}

/* MARQUEE */
.marquee-wrap {
    overflow: hidden;
    background: linear-gradient(90deg, var(--orange), var(--yellow));
    padding: 12px 0;
    margin: 40px -20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.marquee-inner {
    display: flex;
    gap: 50px;
    animation: marquee 15s linear infinite;
    white-space: nowrap;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-brown);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* SECTION TITLE */
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin: 0 0 25px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    border-radius: 2px;
}

/* GLASSMORPHISM CARDS */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 24px;
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 15px 45px rgba(255, 215, 0, 0.1);
}

/* NEWS SECTION */
.news-section, .videos-section, .about-section {
    margin: 0 0 50px;
}

.news-empty, .video-empty, .about-empty {
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 1.1rem;
    padding: 40px;
    font-style: italic;
}

.news-card {
    margin-bottom: 20px;
}

.news-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.news-badge {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 99px;
    background: rgba(255, 215, 0, 0.2);
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.news-badge.pinned {
    background: rgba(255, 140, 0, 0.2);
    color: var(--orange);
}

.news-date {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.news-body {
    font-size: 1rem;
    color: #b0b0b0;
    line-height: 1.7;
}

/* LATEST VIDEOS */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.video-card {
    padding: 0;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.video-thumb-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2a1b00, #140d00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb-placeholder {
    transform: scale(1.05);
}

.video-info {
    padding: 20px;
}

.video-platform {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}
.video-platform.yt { color: #FF3B30; }
.video-platform.tt { color: #00F2FE; }

.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ABOUT / BIO */
.about-card {
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.05), transparent, transparent);
    animation: rotateBg 10s linear infinite;
    pointer-events: none;
}

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

.about-inner {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.about-emoji {
    font-size: 3.5rem;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.about-text-wrap {
    flex: 1;
}

.about-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 10px;
}

.about-bio {
    font-size: 1.05rem;
    color: #e0e0e0;
    line-height: 1.8;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

footer span {
    color: var(--yellow);
    font-weight: 600;
}

@media (max-width: 600px) {
    .name { font-size: 2.5rem; }
    .avatar-ring { width: 130px; height: 130px; }
    .about-inner { flex-direction: column; align-items: center; text-align: center; }
}
