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

:root {
    --primary-color: #8b5cf6;
    --secondary-color: #a855f7;
    --accent-color: #c084fc;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-1: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    --gradient-2: linear-gradient(135deg, #c084fc 0%, #a855f7 100%);
    --gradient-3: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 4rem;
}

/* Animated Background */
.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: float 18s ease-in-out infinite;
}

.gradient-sphere:nth-child(1) {
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    top: -120px;
    left: -120px;
    animation-delay: 0s;
}

.gradient-sphere:nth-child(2) {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
    top: 60%;
    right: -80px;
    animation-delay: -6s;
}

.gradient-sphere:nth-child(3) {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #8b5cf6 0%, #c084fc 100%);
    bottom: -100px;
    left: 60%;
    animation-delay: -12s;
}

.particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-40px); }
}

/* Navigation - Dynamic Island Dark Theme */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.05);
    margin-top: 1.5rem;
    z-index: 1000;
    border-radius: 9999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 95%;
    max-width: none;
    overflow: visible;
    transition: all 0.5s ease;
}

@media (min-width: 768px) {
    .navbar {
        width: auto;
    }
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 50px;
    pointer-events: none;
    opacity: 0.6;
}

/* Removed old navbar::before rule */

/* Remove scroll-based navbar changes - always show dynamic island */

/* Dynamic Island Navbar - Always Active */

.dashboard-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    /* Always show in dynamic island state */
}

.nav-container {
    padding: 1rem 0;
    /* Always show in dynamic island state */
}

.nav-logo {
    font-size: 1.1rem;
    color: #ffffff;
    /* Always show in dynamic island state */
}

.nav-logo i {
    font-size: 1.4rem;
    /* Always show in dynamic island state */
}

.nav-link {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: transparent;
    color: #ffffff;
    font-weight: 500;
    /* Always show in dynamic island state */
}

.nav-link:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--primary-color);
    transform: scale(0.95) translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.nav-link::after {
    display: none;
}

.nav-link {
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.5rem;
    padding-left: 0.75rem;
}

@media (min-width: 768px) {
    .nav-container {
        justify-content: center;
    }
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 1rem;
}

.nav-left {
    gap: 2rem;
    align-items: center;
    display: flex;
}

.nav-divider {
    display: none;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.9;
}

.logo-image {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: row;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-link-text {
    color: rgb(195, 185, 248);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    padding: 0.25rem 0.0625rem;
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    border-radius: 0;
    white-space: nowrap;
}

.nav-link-text:hover {
    background: rgba(116, 110, 148, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.nav-right {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

@media (min-width: 768px) {
    .nav-right {
        display: flex;
    }
}

.nav-btn-wrapper {
    padding: 0.0625rem;
    border-radius: 9999px;
    text-decoration: none;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    pointer-events: none;
    opacity: 0.5;
    color: rgb(195, 185, 248);
    border: 1px solid;
    transition: all 0.2s ease;
    height: 36px;
    padding: 0.5rem 1rem;
    border-radius: 9rem 3rem 3rem 9rem;
    background: transparent;
}

.nav-btn:hover {
    opacity: 0.8;
}

.user-btn {
    border-radius: 9rem 3rem 3rem 9rem;
    padding: 0.5rem;
    width: 44px;
    height: 36px;
}

.dashboard-btn {
    border-radius: 3rem 9rem 9rem 3rem;
    gap: 0.25rem;
}

/* Brand button styling */
.brand-button {
    border: 1px solid transparent;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    color: #ffffff;
    opacity: 1;
    transition: filter 0.2s, background 0.2s, color 0.2s;
}

/* Override user-btn specific styles for brand buttons */
.user-btn.brand-button {
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border: 1px solid transparent;
    color: #ffffff;
    opacity: 1;
}

.user-btn.brand-button i {
    color: #ffffff;
}

/* Override nav-btn opacity for brand buttons */
.nav-btn.brand-button {
    opacity: 1 !important;
    pointer-events: auto !important;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%) !important;
    border: 1px solid transparent !important;
    background-clip: padding-box, border-box !important;
    background-origin: padding-box, border-box !important;
}

/* Hover effects for brand buttons */
.brand-button:hover {
    background: radial-gradient(50% 95% at 50% 0, #5b3cff 0, #4d35c9 40%, #3a2499 100%), linear-gradient(180deg, #6a4dff 0, #4d35c9 50%);
    color: #fff;
    opacity: 1;
    cursor: pointer;
    filter: brightness(0.92);
    /* Remove float/translate and shadow */
    transform: none !important;
    box-shadow: none !important;
}

/* Hover effects for nav-btn-wrapper containing brand buttons */
.nav-btn-wrapper:hover .brand-button {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 68, 255, 0.3);
    opacity: 1;
}

.user-btn.brand-button:hover {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 68, 255, 0.3);
    opacity: 1;
}

/* Override conflicting hover styles */
.nav-btn.brand-button:hover {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 68, 255, 0.3);
    opacity: 1;
}

.dashboard-btn.brand-button:hover {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 68, 255, 0.3);
    opacity: 1;
}

.nav-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    color: rgb(195, 185, 248);
    cursor: pointer;
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

.nav-toggle svg {
    height: 1.5rem;
    width: 1.5rem;
}

/* Mobile Menu */
.nav-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 1.5rem;
    background: #181626;
    backdrop-filter: blur(24px);
    backdrop-saturate: 150%;
    z-index: 1001;
    box-shadow: 0 20px 100px -15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease-in-out;
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
}

.nav-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.mobile-menu-content {
    padding: 1rem;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    color: rgb(195, 185, 248);
    transition: all 0.3s ease;
    font-size: 0.875rem;
    height: 2.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 1rem;
    white-space: nowrap;
}

.mobile-nav-item:hover {
    background: rgba(116, 110, 148, 0.3);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    pointer-events: none;
    opacity: 0.5;
    border: 1px solid;
    padding: 0.5rem 1rem;
    width: 100%;
    border-radius: 1rem;
    height: 2.5rem;
    background: transparent;
    color: rgb(195, 185, 248);
}

.mobile-btn:hover {
    opacity: 0.8;
}

.dashboard-mobile-btn {
    border-color: #8b5cf6;
    color: #8b5cf6;
}

.dashboard-mobile-btn:hover {
    background: rgba(139, 92, 246, 0.2);
}

.commands-mobile-btn {
    gap: 0.25rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    padding: 0.375rem 0.25rem;
    border-radius: 0;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(116, 110, 148, 0.3);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
}

.dashboard-link {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 3rem 9rem 9rem 3rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.2s ease;
}

.dashboard-link:hover {
    opacity: 0.8;
}

.dashboard-link i {
    font-size: 0.875rem;
}

.user-btn {
    border: 1px solid transparent;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 9rem 3rem 3rem 9rem;
    padding: 0.5rem;
    width: 44px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.2s ease;
    opacity: 1;
}

.user-btn:hover {
    opacity: 0.8;
}

/* Override user-btn hover for brand buttons */
.user-btn.brand-button:hover {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 68, 255, 0.3);
    opacity: 1;
}

.user-btn i {
    color: white;
    font-size: 1rem;
}

/* Remove the old hover effect since we have a new one above */

.nav-link i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: none;
}

.nav-link:hover i {
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.8));
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(180deg, #c3b9f8, #8274ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-1 {
    background: linear-gradient(180deg, #c3b9f8, #8274ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-2 {
    background: linear-gradient(180deg, #c3b9f8, #8274ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    background: linear-gradient(90deg, #f8fafc 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    border: 1px solid transparent;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    color: #ffffff;
    opacity: 1;
    transition: all 0.2s ease;
    box-shadow: 0 8px 32px rgba(102, 68, 255, 0.3);
}

.btn-primary:hover {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 12px 40px rgba(102, 68, 255, 0.4);
    opacity: 1;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-tertiary {
    background: rgba(255, 107, 53, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
}

.btn-tertiary:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bot-avatar {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
}

.avatar-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

.mascot-image {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    transition: all 0.3s ease;
}

.bot-avatar:hover .mascot-image {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

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

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

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

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #c3b9f8, #8274ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Commands Section */
.commands {
    padding: 6rem 0;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.command-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Remove shine effect from .command-card */
.command-card::before {
    content: none !important;
    display: none !important;
}

.command-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.command-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.command-icon i {
    font-size: 1.5rem;
    color: white;
}

.command-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.command-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.command-example {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid var(--glass-border);
}

.command-example code {
    color: #8b5cf6;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.about-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #c3b9f8, #8274ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-feature-settings: 'ss01', 'ss02', 'ss03', 'ss04', 'ss05', 'ss06', 'ss07', 'ss08', 'ss09', 'ss10', 'ss11', 'ss12', 'ss13', 'ss14', 'ss15', 'ss16', 'ss17', 'ss18', 'ss19', 'ss20', 'liga' 1, 'clig' 1, 'calt' 1, 'zero' 1, 'tnum' 1, 'case' 1, 'dlig' 1;
    font-variant-ligatures: none;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-symbol {
    color: inherit;
    font-weight: 900;
    text-shadow: 0 0 2px #fff, 0 0 6px var(--primary-color);
    font-size: 1.2em;
    letter-spacing: 0.01em;
    font-family: Arial, sans-serif !important;
    vertical-align: middle;
}

/* Dashboard Section */
.dashboard {
    padding: 6rem 0;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dashboard-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(180deg, #c3b9f8, #8274ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}



.dashboard-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.dashboard-header .text-5xl {
    font-size: 3rem !important;
    line-height: 1 !important;
}

.dashboard-header .text-6xl {
    font-size: 3.75rem !important;
    line-height: 1 !important;
}

.dashboard-header .text-7xl {
    font-size: 4.5rem !important;
    line-height: 1 !important;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-header {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.card-header h3 {
    font-weight: 600;
    color: var(--text-primary);
}

.card-content {
    padding: 1.5rem;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.metric:last-child {
    margin-bottom: 0;
}

.metric-label {
    color: var(--text-secondary);
}

.metric-value {
    font-weight: 600;
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.footer-section h4 i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 600px;
    backdrop-filter: blur(20px);
    box-shadow: var(--glass-shadow);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--text-primary);
    font-weight: 600;
}

.close {
    color: var(--text-secondary);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--primary-color);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar.scrolled {
        width: 95%;
        padding: 0.5rem 1rem;
    }
    
    .navbar.scrolled .nav-container {
        padding: 0.5rem 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .bot-avatar {
        width: 200px;
        height: 200px;
    }
    
    .mascot-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .navbar.scrolled, .navbar.pill, .navbar.dynamic-island {
        width: 90% !important;
        max-width: 500px !important;
        scale: 0.8;
        padding: 0.3rem 0.8rem !important;
    }
    
    .nav-container {
        scale: 0.9;
    }
    
    .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
    }
    
    .dashboard-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .dashboard-text {
        display: none;
    }
    
    .dashboard-link .slash-svg {
        font-size: 1em;
    }
    
    .nav-logo {
        scale: 0.8;
    }
    
    .logo-image {
        width: 24px;
        height: 24px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 100px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .nav-link i {
        display: inline-block;
        font-size: 0.85rem;
    }
    
    .nav-link {
        gap: 0;
    }
}

/* Hide scrollbars */
::-webkit-scrollbar {
    display: none;
}

/* For Firefox */
html {
    scrollbar-width: none;
}

/* For IE and Edge */
body {
    -ms-overflow-style: none;
}

/* Selection Styling */
::selection {
    background: #8b5cf6;
    color: white;
}

/* Focus Styles */
button:focus,
a:focus,
.nav-link-item:focus,
.nav-btn:focus,
.mobile-nav-item:focus,
.ios-nav-item:focus,
.btn:focus,
.dashboard-link:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Remove mobile tap highlight */
* {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

/* Allow text selection for specific elements */
input, textarea, .command-example code {
    -webkit-user-select: text !important;
    -khtml-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
}

/* Contact Section */
.contact {
    padding: 120px 0 80px;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow), 0 0 30px rgba(139, 92, 246, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover .contact-icon::before {
    transform: translateX(100%);
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
    z-index: 1;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.contact-link:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.contact-form-container {
    position: relative;
}

.contact-form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.contact-form-card:hover::before {
    opacity: 1;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 15px;
    color: var(--text-secondary);
    font-size: 1rem;
    z-index: 2;
    transition: color 0.3s ease;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-wrapper textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
    outline: none;
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i,
.input-wrapper textarea:focus + i {
    color: var(--primary-color);
}

.input-wrapper input:focus ~ .input-border,
.input-wrapper select:focus ~ .input-border,
.input-wrapper textarea:focus ~ .input-border {
    opacity: 1;
    transform: scaleX(1);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: all 0.3s ease;
    opacity: 0;
}

.submit-btn {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    color: #ffffff;
    border-radius: 12px;
    opacity: 1;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover .btn-glow {
    left: 100%;
}

.submit-btn:hover {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(102, 68, 255, 0.4);
    opacity: 1;
}

/* Drag & Drop Captcha Styles */
.captcha-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.captcha-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(168, 85, 247, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.captcha-container:hover::before {
    opacity: 1;
}

.captcha-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.captcha-header i {
    color: var(--primary-color);
    font-size: 1rem;
}

.captcha-instruction {
    margin-bottom: 20px;
    text-align: center;
}

.captcha-instruction p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.target-indicator {
    color: #10b981;
    font-weight: 600;
    position: relative;
}

.target-indicator::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #10b981;
    border-radius: 1px;
}

.drag-drop-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.drag-item {
    width: 80px;
    height: 80px;
    position: relative;
    cursor: grab;
    transition: all 0.3s ease;
    user-select: none;
}

.drag-item:active {
    cursor: grabbing;
}

.drag-item.dragging {
    transform: scale(1.1) rotate(5deg);
    z-index: 1000;
}

.drag-mascot {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.drag-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.drag-item:hover .drag-glow {
    opacity: 1;
}

.drag-item.dragging .drag-glow {
    opacity: 1;
    animation: pulse 1s ease-in-out infinite;
}

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

.drop-zones {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-content: center;
    max-width: 400px;
    margin: 0 auto;
}

.drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.drop-zone.drag-over {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.drop-zone.correct-zone.drag-over {
    background: rgba(16, 185, 129, 0.2);
    border: 2px solid #10b981;
}

.drop-zone.wrong-zone.drag-over {
    background: rgba(239, 68, 68, 0.2);
    border: 2px solid #ef4444;
}

.basket {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.basket::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.drop-zone:hover .basket::before {
    transform: translateX(100%);
}

.basket-a {
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
}

.basket-b {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.basket-c {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.basket-d {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.basket-e {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.zone-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.captcha-status {
    text-align: center;
    margin-top: 15px;
    min-height: 20px;
}

.captcha-status span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.captcha-status.success span {
    color: #10b981;
    font-weight: 600;
}

.captcha-status.error span {
    color: #ef4444;
    font-weight: 600;
}

/* Responsive Drag & Drop Captcha */
@media (max-width: 768px) {
    .drop-zones {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .drop-zone {
        min-width: 80px;
        padding: 15px;
    }
    
    .drag-item {
        width: 70px;
        height: 70px;
    }
    
    .basket {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .drop-zones {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .drop-zone {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 100px 0 60px;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 25px 15px;
    }
    
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
}

/* 404 Page Styles */
.error-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
}

.error-content {
    max-width: 800px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.error-visual {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-robot {
    width: 120px;
    height: 120px;
    position: relative;
    animation: robotBounce 2s ease-in-out infinite;
}

.robot-head {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.robot-eyes {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.eye {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: blink 3s ease-in-out infinite;
}

.robot-mouth {
    width: 20px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    bottom: 15px;
    animation: talk 1s ease-in-out infinite;
}

.robot-body {
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7, #c084fc);
    border-radius: 20px;
    position: absolute;
    bottom: 0;
    left: 10px;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
}

.robot-arm {
    width: 6px;
    height: 30px;
    background: #8b5cf6;
    border-radius: 3px;
    margin-top: 5px;
}

.left-arm {
    animation: waveLeft 2s ease-in-out infinite;
}

.right-arm {
    animation: waveRight 2s ease-in-out infinite;
}

.error-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.error-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    animation: numberGlow 2s ease-in-out infinite;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.error-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

.error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* 404 Animations */
@keyframes robotBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes blink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0; }
}

@keyframes talk {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

@keyframes waveLeft {
    0%, 100% { transform: rotate(-10deg); }
    50% { transform: rotate(10deg); }
}

@keyframes waveRight {
    0%, 100% { transform: rotate(10deg); }
    50% { transform: rotate(-10deg); }
}

@keyframes numberGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(139, 92, 246, 0.8)); }
}

/* Responsive 404 */
@media (max-width: 768px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
    
    .error-message {
        font-size: 1rem;
    }
    
    .error-robot {
        width: 100px;
        height: 100px;
    }
    
    .robot-head {
        width: 60px;
        height: 60px;
    }
    
    .robot-body {
        width: 50px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 4rem;
    }
    
    .error-title {
        font-size: 1.5rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-robot {
        width: 80px;
        height: 80px;
    }
    
    .robot-head {
        width: 50px;
        height: 50px;
    }
    
    .robot-body {
        width: 40px;
        height: 25px;
    }
} 

/* Login Page Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    box-sizing: border-box;
}

.login-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 24px;
    z-index: -1;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    margin-bottom: 1.5rem;
}

.login-logo-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0;
}

.login-content {
    margin-bottom: 2rem;
}

.discord-login-section {
    text-align: center;
}

.discord-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #5865f2, #7289da);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 32px rgba(88, 101, 242, 0.3);
}

.discord-icon i {
    font-size: 2.5rem;
    color: white;
}

.discord-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.discord-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.discord-login-btn {
    border: 1px solid transparent;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(102, 68, 255, 0.3);
    opacity: 1;
}

.discord-login-btn:hover {
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(102, 68, 255, 0.4);
    opacity: 1;
}

.discord-login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.discord-login-btn i {
    font-size: 1.2rem;
}

.login-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item i {
    color: #8b5cf6;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.login-note i {
    color: #8b5cf6;
}

/* Responsive Login */
@media (max-width: 768px) {
    .login-card {
        padding: 2rem;
        margin: 1rem;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .discord-title {
        font-size: 1.5rem;
    }
    
    .discord-login-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .login-container {
        padding: 1rem;
    }
    
    .login-card {
        padding: 1.5rem;
    }
    
    .login-title {
        font-size: 1.75rem;
    }
    
    .discord-icon {
        width: 60px;
        height: 60px;
    }
    
    .discord-icon i {
        font-size: 2rem;
    }
} 

/* Compact Login Styles */
.login-card.compact {
    max-width: 400px;
    padding: 2rem;
}

.login-card.compact .login-header {
    margin-bottom: 2rem;
}

.login-card.compact .login-logo-image {
    width: 60px;
    height: 60px;
}

.login-card.compact .login-title {
    font-size: 2rem;
    margin: 0 0 0.25rem 0;
}

.login-card.compact .login-subtitle {
    font-size: 1rem;
    color: #8b5cf6;
    font-weight: 500;
}

.login-card.compact .discord-login-section {
    text-align: center;
}

.login-card.compact .discord-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.login-card.compact .discord-icon i {
    font-size: 2rem;
}

.login-card.compact .discord-title {
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
}

.login-card.compact .discord-login-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* Responsive compact login */
@media (max-width: 768px) {
    .login-card.compact {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .login-card.compact .login-title {
        font-size: 1.75rem;
    }
    
    .login-card.compact .discord-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .login-card.compact {
        padding: 1.25rem;
    }
    
    .login-card.compact .login-title {
        font-size: 1.5rem;
    }
    
    .login-card.compact .discord-icon {
        width: 50px;
        height: 50px;
    }
    
    .login-card.compact .discord-icon i {
        font-size: 1.75rem;
    }
} 

/* Bouncing Circles Loading Animation */
.loading-circles {
    width: 200px;
    height: 200px;
    display: inline-block;
}

.loading-circles svg {
    width: 100%;
    height: 100%;
}

/* Button with loading state */
.btn-loading {
    position: relative;
    overflow: hidden;
}

.btn-loading .loading-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 60px;
    height: 60px;
}

.btn-loading .btn-text {
    opacity: 1 !important;
    transition: none;
}

.btn-loading.loading .btn-text {
    opacity: 1 !important;
}

.btn-loading:not(.loading) .loading-circles {
    display: none;
}

/* Large loading circles */
.loading-circles.large {
    width: 120px;
    height: 120px;
}

/* Small loading circles */
.loading-circles.small {
    width: 40px;
    height: 40px;
}

/* Centered loading container */
.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.loading-container.vertical {
    flex-direction: column;
    gap: 1.5rem;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .loading-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.loading-overlay .loading-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive loading circles */
@media (max-width: 768px) {
    .loading-circles {
        width: 160px;
        height: 160px;
    }
    
    .loading-circles.large {
        width: 100px;
        height: 100px;
    }
    
    .loading-circles.small {
        width: 32px;
        height: 32px;
    }
}

/* Loading text animation */
.loading-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-text .dots {
    display: inline-flex;
    gap: 0.25rem;
}

.loading-text .dots span {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
    animation: loadingDots 1.4s ease-in-out infinite both;
}

.loading-text .dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-text .dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loadingDots {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Centered loading container */
.loading-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
}

.loading-container.vertical {
    flex-direction: column;
    gap: 1.5rem;
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.loading-overlay.active {
    opacity: 1;
    visibility: visible;
}

.loading-overlay .loading-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    color: white;
}

.loading-overlay .loading-content h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive loading rings */
@media (max-width: 768px) {
    .loading-ring {
        width: 32px;
        height: 32px;
    }
    
    .loading-ring.large {
        width: 48px;
        height: 48px;
    }
    
    .loading-ring.small {
        width: 20px;
        height: 20px;
    }
} 

/* Motion Blur Scroll Effect */
.motion-blur-in {
    opacity: 0;
    filter: blur(24px);
    transform: translateY(60px);
    transition: opacity 0.7s cubic-bezier(.4,0,.2,1), filter 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}

.motion-blur-animate {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
} 

/* Pill-shaped Discord Login Button for Login Page */
.login-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px !important;
    padding: 1.25rem 2.5rem !important;
    font-size: 1.25rem !important;
    font-weight: 700;
    background: linear-gradient(135deg, #5865f2, #a855f7);
    color: #fff;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    border: none;
    margin: 0 auto;
    min-width: 260px;
    transition: none !important;
}

.login-pill:hover {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.2);
    transform: none !important;
}

.login-pill .btn-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
}

.login-pill .fab.fa-discord {
    font-size: 1.5rem;
}

.login-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
} 

/* Vision Pro Glassmorphic Box for Login - Blur Only */
.visionpro-box {
    background: rgba(40, 40, 60, 0.32);
    border-radius: 32px;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 340px;
    max-width: 90vw;
    margin: 0 auto;
    gap: 2rem;
    box-shadow: none;
    border: none;
}

@media (max-width: 600px) {
    .visionpro-box {
        padding: 1.25rem 0.5rem 1rem 0.5rem;
        min-width: 0;
    }
} 

@keyframes discord-shake {
  0% { transform: translateY(0) scaleX(1) scaleY(1); }
  10% { transform: translateY(-2px) scaleX(1.04) scaleY(0.96); }
  20% { transform: translateY(3px) scaleX(0.98) scaleY(1.02); }
  30% { transform: translateY(-4px) scaleX(1.05) scaleY(0.95); }
  40% { transform: translateY(4px) scaleX(0.97) scaleY(1.03); }
  50% { transform: translateY(-6px) scaleX(1.06) scaleY(0.94); }
  60% { transform: translateY(6px) scaleX(0.96) scaleY(1.04); }
  70% { transform: translateY(-4px) scaleX(1.03) scaleY(0.97); }
  80% { transform: translateY(2px) scaleX(0.99) scaleY(1.01); }
  90% { transform: translateY(-1px) scaleX(1.01) scaleY(0.99); }
  100% { transform: translateY(0) scaleX(1) scaleY(1); }
}

.shaking {
  animation: none !important;
} 

/* Navbar text: pure white by default, darken by 15% on hover */
.nav-link, .dashboard-link {
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    font-weight: 600;
    text-shadow: none !important;
    transition: color 0.18s;
}

.nav-link:hover, .dashboard-link:hover {
    color: #d9d9d9 !important;
}

/* Pill-shaped navbar (dynamic island) glassmorphic background */
.navbar.scrolled, .navbar.pill, .navbar.dynamic-island {
    background: rgba(40, 40, 60, 0.32) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border-radius: 999px !important;
    box-shadow: 0 8px 32px rgba(80, 80, 120, 0.10);
    border: 1.5px solid rgba(255,255,255,0.12);
    padding: 0.5rem 1.5rem;
    width: 78% !important;
    max-width: 700px !important;
}

/* Remove any text shadow from navbar links */
.nav-link, .dashboard-link {
    text-shadow: none !important;
} 

/* Subcommand card hover animation */
.command-stack .subcommands-list .command-card.sub {
    transition: none;
}
.command-stack .subcommands-list .command-card.sub:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(139, 92, 246, 0.08);
    filter: none;
    z-index: 5;
}

.command-stack .subcommands-anim {
    width: 100%;
    position: relative;
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    filter: blur(12px);
    transform: translateY(-10px);
    margin-top: 0;
    transition: opacity 0.35s, filter 0.35s, transform 0.35s, margin-top 0.35s;
    display: block;
    background: rgba(40,40,60,0.32);
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 8px 32px rgba(80, 80, 120, 0.10);
}
.command-stack:hover .subcommands-anim,
.command-stack:focus-within .subcommands-anim {
    opacity: 1;
    pointer-events: auto;
    filter: blur(0px);
    transform: translateY(0);
    margin-top: 0;
}

.commandslist-searchbar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.searchbar-icon {
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 1.2rem;
    opacity: 0.7;
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.25s, filter 0.25s, transform 0.25s;
    filter: blur(0px);
}
.commandslist-searchbar:focus ~ .searchbar-icon,
.commandslist-searchbar.active ~ .searchbar-icon {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-50%) scale(1.1);
}
.commandslist-searchbar:not(:focus):not(.active) ~ .searchbar-icon {
    opacity: 0.7;
    filter: blur(0px);
    transform: translateY(-50%) scale(1);
}
.commandslist-searchbar {
    width: 100%;
    max-width: 420px;
    padding: 0.85rem 1.25rem 0.85rem 2.7rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.22);
    background: rgba(40,40,60,0.32);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.13);
    outline: none;
    transition: background 0.18s, box-shadow 0.18s, border 0.18s, transform 0.25s;
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    caret-color: #fff;
}

@media (max-width: 768px) {
    .navbar, .navbar.scrolled, .navbar.pill, .navbar.dynamic-island {
        display: none !important;
    }
    
    .navbar.scrolled, .navbar.pill, .navbar.dynamic-island {
        width: 85% !important;
        max-width: 600px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        padding: 0.4rem 1rem !important;
        scale: 0.9;
    }
    
    .nav-container {
        scale: 0.95;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.7rem;
    }
    
    .dashboard-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }
    
    .dashboard-text {
        display: none;
    }
    
    .dashboard-link .slash-svg {
        font-size: 1.1em;
    }
    
    .nav-logo {
        scale: 0.9;
    }
    
    .logo-image {
        width: 28px;
        height: 28px;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .nav-link i {
        display: inline-block;
        font-size: 1rem;
    }
    
    .nav-link {
        gap: 0;
    }
}

.slash-svg svg {
    font-size: 1.1em;
}

.hero-slash-btn {
    font-size: 1rem;
    font-weight: 600;
}

.faq-flip-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin: 2.5rem auto 0 auto;
    max-width: 900px;
}
.faq-flip-card {
    background: none;
    width: 98vw;
    max-width: 700px;
    min-width: 320px;
    height: 210px;
    margin: 0 auto 2rem auto;
    perspective: 1200px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(80, 80, 120, 0.13);
    cursor: pointer;
    transition: box-shadow 0.2s, width 0.5s cubic-bezier(.4,2,.6,1), height 0.5s cubic-bezier(.4,2,.6,1), opacity 0.4s, z-index 0s 0.5s;
    position: relative;
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}
.faq-flip-card.flipped {
    width: 98vw;
    max-width: 700px;
    min-height: 320px;
    height: auto;
    z-index: 10;
    opacity: 1;
    transition: box-shadow 0.2s, width 0.5s cubic-bezier(.4,2,.6,1), height 0.5s cubic-bezier(.4,2,.6,1), opacity 0.4s, z-index 0s;
}
@media (max-width: 900px) {
    .faq-flip-card, .faq-flip-card.flipped {
        width: 98vw;
        max-width: 98vw;
        min-width: 0;
    }
}

.faq-commandslist-container {
    max-width: 800px;
    margin: 4rem auto 4rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.faq-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.faq-card h3 {
    margin-bottom: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    position: relative;
    transition: color 0.3s, opacity 0.35s, filter 0.35s;
    opacity: 1;
    filter: blur(0px);
    pointer-events: auto;
}
.faq-card:hover h3, .faq-card:focus-within h3 {
    color: #a855f7;
    opacity: 0;
    filter: blur(12px);
    pointer-events: none;
}
.faq-answer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(40,40,60,0.32);
    border-radius: 20px;
    backdrop-filter: blur(18px) saturate(1.1);
    -webkit-backdrop-filter: blur(18px) saturate(1.1);
    box-shadow: 0 8px 32px rgba(80, 80, 120, 0.10);
    color: #fff;
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2rem 2rem 2rem;
    transition: opacity 0.35s, filter 0.35s;
    filter: blur(12px);
}
.faq-card:hover .faq-answer, .faq-card:focus-within .faq-answer {
    opacity: 1;
    pointer-events: auto;
    filter: blur(0px);
}

/* Mobile tap functionality for FAQ cards */
@media (max-width: 768px) {
    .faq-card {
        /* Disable hover effects on mobile */
        cursor: pointer;
        transition: all 0.3s ease;
        min-height: auto;
    }
    
    .faq-card:hover h3 {
        /* Disable hover effects on mobile */
        color: #fff;
        opacity: 1;
        filter: blur(0px);
        pointer-events: auto;
    }
    
    .faq-card:hover .faq-answer {
        /* Disable hover effects on mobile */
        opacity: 0;
        pointer-events: none;
        filter: blur(12px);
    }
    
    /* Mobile tap states */
    .faq-card.tapped {
        min-height: auto;
        height: auto;
        z-index: 10;
    }
    
    .faq-card.tapped h3 {
        color: #a855f7;
        opacity: 0;
        filter: blur(12px);
        pointer-events: none;
    }
    
    .faq-card.tapped .faq-answer {
        opacity: 1;
        pointer-events: auto;
        filter: blur(0px);
        padding: 0.5rem 0.5rem 0.5rem 0.5rem;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
}
.faq-answer ul, .faq-answer p {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    list-style: disc inside;
}
.faq-answer ul {
    margin-top: 0.5rem;
}
.faq-answer li {
    margin-bottom: 0.4rem;
}

/* New FAQ Design Styles */
.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

.gap-x-2 {
    column-gap: 0.5rem;
}

.leading-\[0\.1\] {
    line-height: 0.1;
}

.font-semibold {
    font-weight: 600;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

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

.max-md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-muted-foreground {
    color: rgba(195, 185, 248, 0.7);
}

.font-normal {
    font-weight: 400;
}

.mb-8 {
    margin-bottom: 2rem;
}

.w-full {
    width: 100%;
}

.max-w-3xl {
    max-width: 48rem;
}

.relative {
    position: relative;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.group {
    position: relative;
}

.z-20 {
    z-index: 20;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-6 > * + * {
    margin-top: 1.5rem;
}

.border-b {
    border-bottom-width: 1px;
}

.border-muted-foreground\/10 {
    border-color: rgba(132, 120, 179, 0.1);
}

.last\:border-none:last-child {
    border-style: none;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.last\:pb-0:last-child {
    padding-bottom: 0;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.text-foreground {
    color: rgb(195, 185, 248);
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

@media (min-width: 768px) {
    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .md\:p-8 {
        padding: 2rem;
    }
    
    .md\:space-y-6 > * + * {
        margin-top: 1.5rem;
    }
    
    .md\:pb-6 {
        padding-bottom: 1.5rem;
    }
    
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    
    .md\:mb-2 {
        margin-bottom: 0.5rem;
    }
    
    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 768px) {
    .max-md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
}

/* Leaderboard Button */
.leaderboard-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    text-decoration: none;
}

.leaderboard-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #a855f7;
    transform: translateY(-1px);
}

.leaderboard-btn i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.leaderboard-btn:hover i {
    transform: scale(1.1);
}

/* Leaderboard Modal */
.leaderboard-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    text-align: center;
}

.loading-animation {
    margin-bottom: 1.5rem;
}

.loading-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.leaderboard-content {
    padding: 1rem 0;
}

.leaderboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.stat-item {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.2s ease;
}

.stat-item:hover {
    background: rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 1.8rem;
    color: #a855f7;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.leaderboard-list {
    margin-bottom: 2rem;
}

.leaderboard-list h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    margin-bottom: 0.75rem;
    background: rgba(40, 40, 60, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.leaderboard-entry:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(4px);
}

.rank {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a855f7;
    min-width: 40px;
    text-align: center;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    margin-left: 1rem;
}

.player-avatar {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
}

.player-details {
    display: flex;
    flex-direction: column;
}

.player-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.player-level {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.player-score {
    color: #a855f7;
    font-weight: 600;
    font-size: 0.95rem;
}

.leaderboard-note {
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    margin-top: 1.5rem;
}

.leaderboard-note p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.leaderboard-note i {
    color: #a855f7;
    font-size: 1rem;
}

/* Catalog Modal Styles */
.catalog-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    gap: 1rem;
}

.catalog-info {
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.shop-reset {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.95rem;
}

.shop-reset i {
    color: #8b5cf6;
    font-size: 1.1rem;
}

.catalog-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.catalog-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.item-icon {
    font-size: 2rem;
    min-width: 3rem;
    text-align: center;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    color: #fff;
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.item-details p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.item-price {
    color: #8b5cf6;
    font-weight: 600;
    font-size: 0.95rem;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.btn-small {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-small:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.catalog-note {
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.catalog-note p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.catalog-note i {
    color: #8b5cf6;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .leaderboard-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.25rem;
    }
    
    .leaderboard-entry {
        padding: 0.875rem 1.25rem;
    }
    
    .player-info {
        gap: 0.75rem;
        margin-left: 0.75rem;
    }
    
    .player-avatar {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .player-name {
        font-size: 0.95rem;
    }
    
    .player-level {
        font-size: 0.8rem;
    }
    
    .player-score {
        font-size: 0.9rem;
    }
}

/* Floating Command Button */
.floating-command-container {
    position: absolute;
    top: 20%;
    right: -120px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.floating-command-container.catalog-container {
    right: auto;
    left: -120px;
    top: 80%;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
}

.floating-command-btn {
    border: 1px solid transparent;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    border-radius: 16px;
    padding: 0.75rem 1.25rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    opacity: 1;
}

.floating-command-btn::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;
}

.floating-command-btn:hover {
    animation-play-state: paused;
    background: radial-gradient(50% 95% at 50% 0, #6a4dff 0, #5b3cff 40%, #4d35c9 100%), linear-gradient(180deg, #775fec 0, #64f 50%);
    transform: translateY(-1px) scale(1.05);
    opacity: 1;
}

.floating-command-btn:hover::before {
    left: 100%;
}

.floating-command-btn i {
    font-size: 1rem;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.floating-command-btn:hover i {
    transform: scale(1.1);
}

.floating-command-btn span {
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .floating-command-container {
        right: -90px;
    }
    
    .catalog-container {
        left: -90px;
    }
    
    .floating-command-btn {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .floating-command-container {
        right: -70px;
    }
    
    .catalog-container {
        left: -70px;
    }
    
    .floating-command-btn {
        padding: 0.6rem 0.9rem;
        font-size: 0.85rem;
    }
    
    .floating-command-btn span {
        display: none;
    }
    
    .floating-command-btn i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .floating-command-container {
        right: -50px;
    }
    
    .catalog-container {
        left: -50px;
    }
    
    .floating-command-btn {
        padding: 0.5rem 0.8rem;
    }
}

/* iOS Style Mobile Navbar */
.ios-navbar {
    display: none !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 -4px 20px rgba(0, 0, 0, 0.1),
        0 -1px 3px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    height: 80px;
}

.ios-navbar-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
}

.ios-navbar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
}

.ios-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-width: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.ios-nav-item[href="login.html"] {
    background: #8b5cf6;
    border-color: #8b5cf6;
    color: white;
}

.ios-nav-item[href="login.html"]:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.ios-nav-item[href="login.html"] i {
    color: white;
}

.ios-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ios-nav-item::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ios-nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.ios-nav-item span {
    font-size: 0.65rem;
    line-height: 1;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.ios-nav-item:hover {
    color: rgba(255, 255, 255, 0.95);
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.ios-nav-item:hover::before {
    opacity: 1;
}

.ios-nav-item:hover::after {
    opacity: 1;
}

.ios-nav-item.active {
    color: #fff;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.25) 0%, 
        rgba(168, 85, 247, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 8px 25px rgba(139, 92, 246, 0.25),
        0 4px 10px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.ios-nav-item.active::before {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.4) 0%, 
        rgba(168, 85, 247, 0.2) 50%, 
        rgba(139, 92, 246, 0.1) 100%);
    opacity: 1;
}

.ios-nav-item.active::after {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    opacity: 1;
}

.ios-nav-item:hover i {
    transform: scale(1.1);
}

.ios-nav-item.active i {
    transform: scale(1.1);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navbar, .navbar.dynamic-island, .navbar.pill, .navbar.scrolled {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .ios-navbar {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Add bottom padding to body to account for iOS navbar */
    body {
        padding-bottom: 100px;
    }
    
    /* Adjust hero section padding */
    .hero {
        padding: 80px 2rem 100px;
    }
}

@media (max-width: 480px) {
    .ios-navbar-container {
        padding: 0 10px;
    }
    
    .ios-nav-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .ios-nav-item i {
        font-size: 1.1rem;
    }
    
    .ios-nav-item span {
        font-size: 0.6rem;
    }
}

/* Dashboard Layout Styles */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    margin-top: 0;
}

/* Sidebar Navigation */
.dashboard-sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-header {
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.sidebar-header h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.sidebar-nav {
    padding: 0 0.75rem;
}

.sidebar-tab {
    width: 100%;
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.sidebar-tab:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
    transform: translateX(4px);
}

.sidebar-tab.active {
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(102, 68, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sidebar-tab i {
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

.sidebar-tab span {
    flex: 1;
}

/* Main Content Area */
.dashboard-main {
    flex: 1;
    margin-left: 280px;
    margin-top: 4rem;
    padding: 2rem;
    background: transparent;
}

/* Tab Content */
.dashboard-tab {
    display: none;
    animation: fadeIn 0.3s ease;
}

.dashboard-tab.active {
    display: block;
}

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

.tab-header {
    margin-bottom: 2rem;
}

.tab-header h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tab-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0;
}

/* Overview Styles */
.overview-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.overview-stats .stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overview-stats .stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.overview-stats .stat-icon {
    width: 50px;
    height: 50px;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.overview-stats .stat-content {
    flex: 1;
}

.overview-stats .stat-value {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.overview-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.overview-activity {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.overview-activity h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
}

.activity-content {
    flex: 1;
}

.activity-title {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.activity-time {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.activity-reward {
    color: #64f;
    font-weight: 600;
    font-size: 0.9rem;
}

.overview-actions {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.overview-actions h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Profile Page Styles */
.profile-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    min-height: calc(100vh - 80px);
}

.profile-header-nav {
    margin-bottom: 2rem;
}

.back-to-dashboard {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.back-to-dashboard:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-1px);
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.profile-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.settings-section {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.settings-section h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.settings-group {
    margin-bottom: 2rem;
}

.settings-group h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .profile-layout {
        padding: 1rem;
    }
}

/* Page Transition Overlay Styles */
#page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.page-transition-content {
    text-align: center;
    color: #ffffff;
}

.page-transition-content .loading-circles {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.page-transition-content .loading-circles svg {
    width: 100%;
    height: 100%;
    color: #64f;
}

.page-transition-content .loading-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

/* Catalog Browser Styles */
.catalog-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.filter-btn.active {
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-color: transparent;
    color: #ffffff;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.catalog-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catalog-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.item-icon {
    width: 50px;
    height: 50px;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.item-details {
    flex: 1;
}

.item-details h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.item-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.item-price {
    color: #64f;
    font-weight: 600;
    font-size: 0.9rem;
}

.item-actions {
    display: flex;
    gap: 0.5rem;
}

/* Leaderboard Styles */
.leaderboard-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.leaderboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-item i {
    font-size: 2rem;
    color: #64f;
    margin-bottom: 1rem;
}

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

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.leaderboard-list {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
}

.leaderboard-list h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.leaderboard-entry:hover {
    background: rgba(255, 255, 255, 0.05);
}

.rank {
    width: 40px;
    height: 40px;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.player-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.player-details {
    flex: 1;
}

.player-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.player-level {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.player-score {
    color: #64f;
    font-weight: 600;
}

/* Profile Styles */
.profile-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-avatar {
    position: relative;
}

.avatar-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(139, 92, 246, 0.3);
}

.avatar-level {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

.profile-bio {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bio-textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    resize: vertical;
    min-height: 80px;
}

.bio-textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
}

.save-bio-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.save-bio-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-content {
    flex: 1;
}

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

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.xp-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.xp-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.xp-fill {
    height: 100%;
    background: linear-gradient(90deg, #64f 0%, #a855f7 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.xp-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    white-space: nowrap;
}

.profile-badges {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
}

.profile-badges h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.badge-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.badge-item.unlocked {
    border-color: rgba(139, 92, 246, 0.3);
}

.badge-item.locked {
    opacity: 0.5;
    filter: grayscale(1);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-name {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Achievements Styles */
.achievements-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievements-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.achievement-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.achievement-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.achievement-item.unlocked {
    border-color: rgba(139, 92, 246, 0.3);
}

.achievement-item.locked {
    opacity: 0.6;
}

.achievement-item.in-progress {
    border-color: rgba(255, 193, 7, 0.3);
}

.achievement-icon {
    font-size: 2.5rem;
    width: 60px;
    text-align: center;
}

.achievement-content {
    flex: 1;
}

.achievement-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.achievement-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.achievement-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #64f 0%, #a855f7 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Alerts Styles */
.alerts-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.alerts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.alerts-filters {
    display: flex;
    gap: 1rem;
}

.mark-all-read-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.alerts-list {
    margin-bottom: 2rem;
}

.alert-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.alert-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.alert-item.unread {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.05);
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
}

.alert-content {
    flex: 1;
}

.alert-content h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.alert-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.alert-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.alert-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.alert-actions {
    display: flex;
    gap: 0.5rem;
}

.mark-read-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.mark-read-btn:hover {
    color: var(--text-primary);
}

.accept-btn, .decline-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border: none;
    color: #ffffff;
}

.decline-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.feedback-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
}

.feedback-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feedback-type {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.feedback-message {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
    resize: vertical;
    min-height: 100px;
}

.submit-feedback-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    align-self: flex-start;
}

/* Game Stats Styles */
.games-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.games-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.game-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.game-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.games-breakdown {
    margin-bottom: 2rem;
}

.games-breakdown h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.game-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.game-stat {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.game-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.game-icon {
    font-size: 2rem;
    width: 50px;
    text-align: center;
}

.game-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.game-stats {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.game-stats span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.recent-games h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.games-history {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.game-history-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.game-history-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.game-history-item.win {
    border-color: rgba(34, 197, 94, 0.3);
}

.game-history-item.loss {
    border-color: rgba(239, 68, 68, 0.3);
}

.game-result {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.game-history-item.win .game-result {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.game-history-item.loss .game-result {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.game-details {
    flex: 1;
}

.game-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.game-time {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.game-wager {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Friends Styles */
.friends-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.friends-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.friend-code-section h3,
.add-friend-section h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.friend-code {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.code-text {
    flex: 1;
    color: var(--text-primary);
    font-family: monospace;
    font-size: 1rem;
    font-weight: 600;
}

.copy-code-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.copy-code-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.add-friend-form {
    display: flex;
    gap: 1rem;
}

.friend-code-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.friend-code-input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
}

.add-friend-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.add-friend-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.friends-list h3,
.friend-requests h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.friends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.friend-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.friend-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.friend-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.friend-info {
    flex: 1;
}

.friend-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.friend-status {
    font-size: 0.9rem;
}

.friend-status.online {
    color: #22c55e;
}

.friend-status.offline {
    color: var(--text-secondary);
}

.friend-actions {
    display: flex;
    gap: 0.5rem;
}

.gift-btn, .message-btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gift-btn {
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
    border: none;
    color: #ffffff;
}

.message-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.requests-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.request-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.request-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.request-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.5rem;
}

.request-info {
    flex: 1;
}

.request-name {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.request-message {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.request-actions {
    display: flex;
    gap: 0.5rem;
}

/* Settings Styles */
.settings-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.settings-section h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.setting-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1rem;
    margin: 0 -1rem;
}

.setting-info h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.setting-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    border-radius: 24px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: var(--text-secondary);
    transition: 0.3s;
    border-radius: 50%;
}

.toggle-switch input:checked + .toggle-slider {
    background: radial-gradient(50% 95% at 50% 0, #775fec 0, #64f 40%, #4d35c9 100%), linear-gradient(180deg, #8972ff 0, #64f 50%);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(26px);
    background: #ffffff;
}

.account-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.export-data-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.export-data-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.delete-account-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    color: #ef4444;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-account-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .dashboard-sidebar {
        width: 240px;
    }
    
    .dashboard-main {
        margin-left: 240px;
    }
}

@media (max-width: 768px) {
    .dashboard-layout {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1rem;
    }
    
    .dashboard-main {
        margin-left: 0;
        padding: 1rem;
    }
    
    .sidebar-nav {
        display: flex;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0;
    }
    
    .sidebar-tab {
        white-space: nowrap;
        min-width: auto;
        padding: 0.75rem 1rem;
    }
    
    .catalog-grid,
    .achievements-grid,
    .game-stats-grid,
    .friends-grid {
        grid-template-columns: 1fr;
    }
    
    .leaderboard-stats,
    .achievements-stats,
    .games-overview {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .friends-actions {
        grid-template-columns: 1fr;
    }
    
    .add-friend-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .dashboard-main {
        padding: 0.5rem;
    }
    
    .catalog-container,
    .leaderboard-container,
    .profile-container,
    .achievements-container,
    .alerts-container,
    .games-container,
    .friends-container,
    .settings-container {
        padding: 1rem;
    }
    
    .sidebar-tab {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .sidebar-tab i {
        font-size: 1rem;
    }
}