/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Light Theme */
    --primary-color: #9146ff;
    --secondary-color: #00d9ff;
    --accent-color: #ff0066;
    --dark-color: #0f0f23;
    --darker-color: #0a0a1a;
    --light-color: #ffffff;
    --gray-color: #8a8aa3;
    --light-gray: #f0f0f5;
    
    /* Cards & Backgrounds */
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    
    /* Shadows */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius */
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;
    
    /* Fonts */
    --font-heading: 'Kanit', sans-serif;
    --font-body: 'Prompt', sans-serif;
}

[data-theme="dark"] {
    --primary-color: #9146ff;
    --secondary-color: #00d9ff;
    --accent-color: #ff0066;
    --dark-color: #0f0f23;
    --darker-color: #0a0a1a;
    --light-color: #ffffff;
    --gray-color: #8a8aa3;
    --light-gray: #1a1a2e;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] {
    --primary-color: #9146ff;
    --secondary-color: #00a2ff;
    --accent-color: #ff3366;
    --dark-color: #f8f9fa;
    --darker-color: #e9ecef;
    --light-color: #121212;
    --gray-color: #666666;
    --light-gray: #ffffff;
    --card-bg: rgba(145, 70, 255, 0.05);
    --card-border: rgba(145, 70, 255, 0.1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-color);
    color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: var(--transition-slow);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-content {
    text-align: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid var(--primary-color);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: var(--card-border);
    border-radius: var(--radius-full);
    margin-top: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    0% { width: 0%; }
    20% { width: 20%; }
    50% { width: 50%; }
    70% { width: 70%; }
    90% { width: 90%; }
    100% { width: 100%; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-highlight {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--light-color);
    background: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

.section {
    padding: 5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    z-index: -1;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.particle:nth-child(odd) {
    background: var(--primary-color) !important;
}

.particle:nth-child(even) {
    background: var(--secondary-color) !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-avatar {
    text-align: center;
}

.avatar-frame {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.avatar-img {
    width: 300px;
    height: 300px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.avatar-status {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: #00ff00;
    border-radius: var(--radius-full);
    border: 3px solid var(--dark-color);
}

.status-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.avatar-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.badge.streamer {
    background: linear-gradient(135deg, #9146ff, #00d9ff);
    color: white;
}

.badge.gamer {
    background: linear-gradient(135deg, #ff0066, #ff9900);
    color: white;
}

.badge.entertainer {
    background: linear-gradient(135deg, #00cc66, #00d9ff);
    color: white;
}

.hero-text {
    text-align: left;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.typing-text {
    color: var(--primary-color);
    font-weight: 600;
    border-right: 2px solid var(--primary-color);
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary-color); }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.title-number {
    color: var(--primary-color);
    opacity: 0.5;
    font-size: 1rem;
    font-weight: 400;
}

.section-subtitle {
    color: var(--gray-color);
    font-size: 1.125rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h3 {
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.personal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--card-border);
}

.info-label {
    color: var(--gray-color);
}

.info-value {
    color: var(--light-color);
    font-weight: 500;
}

.about-skills h3 {
    margin-bottom: 2rem;
    color: var(--light-color);
}

.skills-grid {
    display: grid;
    gap: 1.5rem;
}

.skill-item {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.skill-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.skill-name {
    color: var(--light-color);
    font-weight: 500;
}

.skill-percent {
    color: var(--primary-color);
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: var(--darker-color);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

/* Stream Section */
.stream-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.stream-player {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    height: 400px;
}

#twitch-embed {
    width: 100%;
    height: 100%;
}

.twitch-error {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--darker-color);
    border-radius: var(--radius);
    gap: 1rem;
}

.twitch-error i {
    font-size: 4rem;
    color: var(--primary-color);
}

.twitch-error p {
    color: var(--gray-color);
}

.stream-info h3 {
    margin-bottom: 1rem;
    color: var(--light-color);
}

.text-link {
    color: var(--primary-color);
    font-weight: 500;
}

.stream-highlights {
    margin-top: 2rem;
}

.stream-highlights h4 {
    margin-bottom: 1rem;
    color: var(--light-color);
}

.highlights-grid {
    display: grid;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    transition: var(--transition);
    cursor: pointer;
}

.highlight-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.highlight-thumb {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.highlight-info h5 {
    color: var(--light-color);
    margin-bottom: 0.25rem;
}

.highlight-info span {
    color: var(--gray-color);
    font-size: 0.875rem;
}

/* Games Section */
.games-filter {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-full);
    color: var(--gray-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--light-color);
    border-color: var(--primary-color);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    transition: opacity 0.3s ease;
}

.game-card {
    position: relative;
    overflow: hidden;
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.game-image i {
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.game-info {
    padding: 1.5rem;
}

.game-title {
    color: var(--light-color);
    margin-bottom: 0.5rem;
}

.game-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--darker-color);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.game-stats i {
    margin-right: 0.25rem;
    color: var(--primary-color);
}

/* Schedule Section */
.schedule-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.schedule-calendar {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--card-border);
}

.calendar-header {
    margin-bottom: 1rem;
}

.calendar-header h4 {
    color: var(--light-color);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.calendar-day-header {
    text-align: center;
    font-weight: 600;
    color: var(--light-color);
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-color);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    background: var(--darker-color);
    position: relative;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.calendar-day:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
}

.calendar-day.has-stream {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    animation: pulse 2s infinite;
}

.calendar-day.today {
    border: 2px solid var(--primary-color);
}

.stream-dot {
    position: absolute;
    bottom: 5px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
}

.calendar-legend {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 0.875rem;
}

.legend-dot {
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.current-stream h3 {
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.next-stream-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius);
    padding: 2rem;
    color: white;
}

.stream-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stream-day {
    font-size: 1.25rem;
    font-weight: 600;
}

.stream-hour {
    font-size: 1.125rem;
    opacity: 0.9;
}

.stream-details h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stream-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.stream-game {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
}

.stream-notify {
    margin-top: 1.5rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--light-color);
}

.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
    transition: var(--transition);
    text-align: center;
}

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

.social-link i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.social-link.twitch:hover {
    background: #9146FF;
    color: white;
}

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

.social-link.twitter:hover {
    background: #1DA1F2;
    color: white;
}

.social-link.tiktok:hover {
    background: #000000;
    color: white;
}

.contact-rules {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    border: 1px solid var(--card-border);
}

.contact-rules h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.contact-rules ul {
    list-style: none;
}

.contact-rules li {
    padding: 0.5rem 0;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-widget h3 {
    margin-bottom: 1rem;
    color: var(--light-color);
}

.discord-widget {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--card-border);
    text-align: center;
    transition: var(--transition);
}

.discord-widget:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.discord-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    background: #00ff00;
    border-radius: var(--radius-full);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--light-color);
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-twitch {
    background: #9146FF;
    color: white;
}

.btn-discord {
    background: #5865F2;
    color: white;
}

.btn-notify {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-notify:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.footer {
    background: var(--darker-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--card-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--gray-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: var(--transition);
    border: 1px solid var(--card-border);
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    color: var(--light-color);
    background: var(--primary-color);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-color);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-actions h4 {
    color: var(--light-color);
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--gray-color);
    font-size: 0.875rem;
}

.footer-note {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Cursor Effects */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-full);
    z-index: 9999;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: width 0.2s, height 0.2s, border-color 0.2s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* Glass Effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.5rem; }
.mb-6 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2rem; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .about-content,
    .stream-content,
    .schedule-content,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--darker-color);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        overflow-y: auto;
        border-top: 1px solid var(--card-border);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--card-border);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .personal-info {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    .calendar-grid {
        gap: 5px;
    }
    
    .calendar-day {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .cursor-dot,
    .cursor-outline,
    .loading-screen,
    .navbar,
    .footer,
    .scroll-indicator {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}