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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #121212 0%, #9100f9 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: white;
    position: relative;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #121212 0%, #9100f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loading-logo {
    font-size: 4rem;
    color: #9100f9;
    margin-bottom: 1rem;
    animation: logoFloat 2s ease-in-out infinite;
}

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

.loading-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    width: 0%;
    border-radius: 2px;
    animation: loadingAnimation 2s ease-in-out infinite;
}

@keyframes loadingAnimation {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Purple Glow Effect */
.glow-effect {
    position: fixed;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(145, 0, 249, 0.4) 0%, rgba(145, 0, 249, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: glowPulse 3s ease-in-out infinite alternate;
    transition: opacity 0.8s ease-out;
}

@keyframes glowPulse {
    0% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    100% { transform: scale(1.1) rotate(10deg); opacity: 0.6; }
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

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

/* Logo - CIRCLE SHAPE */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(145, 0, 249, 0.4);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo-fallback {
    width: 35px;
    height: 35px;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(145, 0, 249, 0.4);
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 4px 15px rgba(145, 0, 249, 0.4); }
    100% { box-shadow: 0 6px 25px rgba(145, 0, 249, 0.6); }
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* NAVIGATION ICONS */
.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icon {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    padding: 0.7rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-icon:hover {
    color: #9100f9;
    background: rgba(145, 0, 249, 0.1);
    transform: translateY(-2px);
}

.nav-icon.active {
    color: #9100f9;
    background: rgba(145, 0, 249, 0.2);
}

.nav-icon.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    border-radius: 2px;
}

.nav-icon[href*="top.gg"]:hover {
    color: #ffd700;
}

/* Login Section */
.login-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    background: linear-gradient(45deg, #00bcd4, #00acc1);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.btn-login:hover {
    background: linear-gradient(45deg, #00acc1, #0097a7);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-sidebar.active {
    visibility: visible;
    opacity: 1;
}

.sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(145, 0, 249, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    overflow-y: auto;
}

.mobile-sidebar.active .sidebar-content {
    transform: translateX(0);
}

.sidebar-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.2);
    border: none;
    border-radius: 8px;
    color: #ff6b6b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(255, 107, 107, 0.4);
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.sidebar-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.sidebar-icon:hover {
    background: rgba(145, 0, 249, 0.2);
    color: #9100f9;
    transform: scale(1.05);
}

.sidebar-icon.active {
    background: rgba(145, 0, 249, 0.3);
    color: #9100f9;
}

.sidebar-icon[href*="top.gg"]:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.2);
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    background: linear-gradient(45deg, #9100f9, #ff0080, #00bcd4);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 30px rgba(145, 0, 249, 0.5);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.invite-section {
    margin-bottom: 4rem;
}

.btn-invite {
    background: linear-gradient(45deg, #ffd700, #ffb300);
    color: #121212;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-invite:hover {
    background: linear-gradient(45deg, #ffb300, #ff8f00);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(145, 0, 249, 0.5);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ✅ FEATURES SECTION WITH GIF SUPPORT */
.features-section {
    min-height: 100vh;
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 10;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    min-height: 400px;
    position: relative;
}

.feature-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Feature GIF Container */
.feature-gif {
    flex: 1;
    max-width: 500px;
    min-width: 300px;
    position: relative;
}

/* ✅ REAL GIF STYLES */
.feature-gif-img {
    width: 100%;
    border: 3px solid;
    border-image: linear-gradient(45deg, #9100f9, #ff0080, #9100f9) 1;
    border-radius: 20px;
    object-fit: cover;
    animation: borderGlow 3s ease-in-out infinite alternate;
    display: block;
}

/* Different GIF heights */
.fishing-gif { height: 280px; }
.lake-gif { height: 320px; }
.mine-gif { height: 300px; }
.stocks-gif { height: 350px; }

/* Fallback placeholder styles */
.gif-placeholder {
    width: 100%;
    background: rgba(18, 18, 18, 0.8);
    border: 3px solid;
    border-image: linear-gradient(45deg, #9100f9, #ff0080, #9100f9) 1;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
    animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { box-shadow: 0 0 20px rgba(145, 0, 249, 0.3); }
    100% { box-shadow: 0 0 40px rgba(145, 0, 249, 0.6); }
}

.gif-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: iconFloat 2s ease-in-out infinite;
}

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

.gif-placeholder span {
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Feature Content */
.feature-content {
    flex: 1;
    max-width: 500px;
    min-width: 300px;
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.feature-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Feature icon colors */
.fishing-gif i { color: #00bcd4; }
.lake-gif i { color: #2196f3; }
.mine-gif i { color: #ff5722; }
.stocks-gif i { color: #4caf50; }

/* Background Animation */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(145, 0, 249, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
    animation: backgroundShift 10s ease-in-out infinite;
    z-index: -1;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

/* ✅ FIXED: Page structure */
.page-container {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
}

body.loading .feature-item {
    opacity: 0;
    transform: translateY(50px);
}

body.loaded .feature-item {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ✅ FIXED: Features section header */
.features-header {
    text-align: center;
    margin-bottom: 5rem;
    opacity: 0;
    animation: fadeInDown 1s ease-out 0.5s forwards;
}

.features-main-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* ✅ FIXED: Feature items with data attributes */
.feature-item[data-animation="left-gif"] {
    animation-delay: 0.2s;
}

.feature-item[data-animation="right-gif"] {
    animation-delay: 0.4s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-item:nth-child(5) {
    animation-delay: 1s;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ✅ ADDED: Footer section */
.footer-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(145, 0, 249, 0.2);
    margin-top: 5rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.footer-logo .logo-fallback {
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.footer-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.3rem;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #9100f9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0080;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ✅ LEGAL PAGE STYLES */
.legal-page {
    min-height: 100vh;
    padding-top: 70px;
    position: relative;
    z-index: 10;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(145, 0, 249, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 0, 249, 0.3);
}

.back-btn:hover {
    background: rgba(145, 0, 249, 0.4);
    transform: translateY(-2px);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(145, 0, 249, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(145, 0, 249, 0.3);
}

.legal-main-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.legal-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.legal-dates {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.document-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tab-btn:hover {
    background: rgba(145, 0, 249, 0.2);
    color: white;
}

.tab-btn.active {
    background: linear-gradient(45deg, #9100f9, #ff0080);
    color: white;
    border-color: transparent;
}

.document-section {
    display: none;
}

.document-section.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

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

.document-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.document-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #9100f9;
    margin-bottom: 0.5rem;
}

.document-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 4px solid #9100f9;
}

.section h3 {
    color: #ff0080;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section h4 {
    color: #9100f9;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.section p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.section li strong {
    color: #9100f9;
    font-weight: 600;
}

.highlight-box {
    background: rgba(145, 0, 249, 0.15);
    border: 2px solid rgba(145, 0, 249, 0.4);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: #9100f9;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.warning-box {
    background: rgba(255, 107, 107, 0.15);
    border: 2px solid rgba(255, 107, 107, 0.4);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.warning-box h4 {
    color: #ff6b6b;
    margin-top: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-box {
    background: rgba(0, 188, 212, 0.15);
    border: 2px solid rgba(0, 188, 212, 0.4);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.contact-box h4 {
    color: #00bcd4;
    margin-top: 0;
}

.legal-footer {
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(145, 0, 249, 0.3);
}

.legal-footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.legal-footer .footer-links a {
    color: #9100f9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-footer .footer-links a:hover {
    color: #ff0080;
}

.legal-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

/* ✅ HELP PAGE STYLES */
.help-page {
    min-height: 100vh;
    padding-top: 70px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.help-container {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    position: relative;
}

.help-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

/* ✅ FIXED: Help Avatar - NO Box Shadow, Perfect Transparency */
.help-avatar {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent !important;
}

.avatar-img {
    /* ✅ FIXED: Size and shape */
    width: 200px;
    height: auto;
    max-height: 200px;
    
    /* ✅ FIXED: Complete transparency */
    background: transparent !important;
    background-color: transparent !important;
    border: none;
    border-radius: 0;
    outline: none;
    
    /* ✅ FIXED: Use filter drop-shadow instead of box-shadow for PNG transparency */
    box-shadow: none !important; /* ✅ Remove box shadow completely */
    filter: drop-shadow(0 0 20px rgba(145, 0, 249, 0.6)); /* ✅ PNG-friendly glow */
    
    /* ✅ Animation and quality */
    animation: avatarFloat 3s ease-in-out infinite;
    object-fit: contain;
    image-rendering: crisp-edges;
    
    /* ✅ Force transparency on all browsers */
    -webkit-background-color: transparent !important;
    -moz-background-color: transparent !important;
    -ms-background-color: transparent !important;
    -o-background-color: transparent !important;
}

.avatar-fallback {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    box-shadow: 0 0 40px rgba(145, 0, 249, 0.5);
    animation: avatarFloat 3s ease-in-out infinite;
}

/* ✅ FIXED: Floating animation with drop-shadow */
@keyframes avatarFloat {
    0%, 100% { 
        transform: translateY(0px);
        filter: drop-shadow(0 0 20px rgba(145, 0, 249, 0.6));
    }
    50% { 
        transform: translateY(-15px);
        filter: drop-shadow(0 5px 30px rgba(145, 0, 249, 0.8));
    }
}

/* Help Message */
.help-message {
    color: white;
}

.help-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

/* Status Section */
.help-status {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(145, 0, 249, 0.3);
    backdrop-filter: blur(10px);
}

.status-icon {
    font-size: 3rem;
    color: #ff0080;
    margin-bottom: 1rem;
    animation: toolsRotate 2s ease-in-out infinite;
}

@keyframes toolsRotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.status-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ff0080;
    margin-bottom: 1rem;
    font-weight: 700;
}

.status-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Coming Soon Section */
.coming-soon {
    background: rgba(145, 0, 249, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(145, 0, 249, 0.3);
}

.coming-soon h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #9100f9;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.feature-item-help {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(145, 0, 249, 0.2);
    transition: all 0.3s ease;
}

.feature-item-help:hover {
    background: rgba(145, 0, 249, 0.2);
    transform: translateY(-2px);
    border-color: rgba(145, 0, 249, 0.5);
}

.feature-item-help i {
    font-size: 1.2rem;
    color: #9100f9;
    min-width: 20px;
}

.feature-item-help span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Contact Support */
.contact-support {
    background: rgba(0, 188, 212, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(0, 188, 212, 0.3);
}

.contact-support h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: #00bcd4;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-support p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, #5865f2, #4752c4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.support-btn:hover {
    background: linear-gradient(45deg, #4752c4, #3c45a5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

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

/* ✅ WORKING SUPPORT PAGE STYLES */
.support-main {
    min-height: 100vh;
    padding-top: 70px;
    position: relative;
    z-index: 10;
}

.support-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

/* Back Button */
.support-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(145, 0, 249, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 0, 249, 0.3);
}

.support-back-btn:hover {
    background: rgba(145, 0, 249, 0.4);
    transform: translateY(-2px);
}

/* Support Header */
.support-header-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    background: rgba(145, 0, 249, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(145, 0, 249, 0.3);
}

.support-main-icon {
    font-size: 4rem;
    color: #9100f9;
    margin-bottom: 1rem;
    animation: headsetBounce 2s ease-in-out infinite;
}

@keyframes headsetBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.support-main-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(45deg, #9100f9, #ff0080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.support-main-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ✅ WORKING CONTACT GRID */
.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.support-contact-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(145, 0, 249, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.support-contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(145, 0, 249, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Contact Item Headers */
.contact-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.discord-bg { background: linear-gradient(45deg, #5865f2, #4752c4); }
.email-bg { background: linear-gradient(45deg, #ea4335, #d33b2c); }
.whatsapp-bg { background: linear-gradient(45deg, #25d366, #20b954); }
.instagram-bg { background: linear-gradient(45deg, #e4405f, #c13584); }

.contact-item-info h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: #9100f9;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.contact-item-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Contact Item Content */
.contact-item-content {
    margin-bottom: 2rem;
}

.contact-item-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-item-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.support-tag {
    background: rgba(145, 0, 249, 0.2);
    color: #9100f9;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    border: 1px solid rgba(145, 0, 249, 0.3);
}

/* ✅ WORKING CONTACT BUTTONS - SIMPLE AND CLEAN */
.contact-item-action {
    position: relative;
    z-index: 100;
}

.support-contact-button {
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    cursor: pointer !important;
    pointer-events: auto !important;
    position: relative;
    z-index: 101;
}

.discord-button {
    background: linear-gradient(45deg, #5865f2, #4752c4) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    background: linear-gradient(45deg, #4752c4, #3c45a5) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.email-button {
    background: linear-gradient(45deg, #ea4335, #d33b2c) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(234, 67, 53, 0.3);
}

.email-button:hover {
    background: linear-gradient(45deg, #d33b2c, #b52d20) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 67, 53, 0.4);
}

.whatsapp-button {
    background: linear-gradient(45deg, #25d366, #20b954) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background: linear-gradient(45deg, #20b954, #1da851) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.instagram-button {
    background: linear-gradient(45deg, #e4405f, #c13584) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.instagram-button:hover {
    background: linear-gradient(45deg, #c13584, #833ab4) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
}

/* Support Tips */
.support-tips-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(145, 0, 249, 0.2);
}

.support-tips-section h2 {
    font-family: 'Orbitron', monospace;
    color: #9100f9;
    margin-bottom: 2rem;
    text-align: center;
}

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

.support-tip-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(145, 0, 249, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(145, 0, 249, 0.2);
}

.support-tip-card i {
    font-size: 2rem;
    color: #ff0080;
    margin-bottom: 1rem;
}

.support-tip-card h4 {
    color: #9100f9;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.support-tip-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Response Times */
.support-response-section {
    background: rgba(145, 0, 249, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(145, 0, 249, 0.3);
}

.support-response-section h3 {
    font-family: 'Orbitron', monospace;
    color: #9100f9;
    margin-bottom: 2rem;
}

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

.support-response-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.support-response-item:hover {
    transform: translateY(-3px);
}

.support-response-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.response-platform {
    font-weight: 600;
    color: white;
}

.response-time {
    font-size: 0.9rem;
    color: #9100f9;
    font-weight: 500;
}

/* ✅ FIXED: Prevent scroll issues */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* ✅ FIXED: Features animation stability */
.feature-item {
    will-change: opacity, transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.feature-item.visible {
    will-change: auto;
}

/* ✅ FIXED: Prevent animation glitches */
.features-section {
    overflow: hidden;
    position: relative;
}

/* Scroll Effects */
.fade-glow { opacity: 0.2; transition: opacity 0.8s ease-out; }

@keyframes countUp { 0% { opacity: 0; } 100% { opacity: 1; } }
.stat-number.animate { animation: countUp 0.5s ease-out; }

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .nav-icons { gap: 1rem; }
    .nav-icon { padding: 0.6rem; font-size: 1rem; }
}

@media (max-width: 768px) {
    .nav-icons { display: none; }
    .mobile-menu-toggle { display: flex !important; }
    .login-text { display: none; }
    .nav-container { padding: 1rem; }
    .hero-section { margin-top: 100px; padding: 1rem; }
    .hero-description { font-size: 1rem; margin-bottom: 2rem; }
    .stats-section { gap: 2rem; }
    .stat-number { font-size: 2rem; }
    .btn-invite { padding: 0.8rem 2rem; font-size: 1.1rem; }
    
    /* Features responsive */
    .features-section { padding: 3rem 1rem; }
    .feature-item {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 5rem;
        text-align: center;
        min-height: auto;
    }
    .feature-gif, .feature-content { max-width: 100%; min-width: auto; }
    .feature-gif-img, .gif-placeholder { height: 250px; margin: 0 auto; }
    .feature-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
    .feature-description { font-size: 1.1rem; line-height: 1.6; }
    
    /* Legal responsive */
    .legal-content { padding: 1rem; }
    .legal-main-title { font-size: 2rem; }
    .legal-dates { flex-direction: column; gap: 0.5rem; }
    .document-tabs { flex-direction: column; }
    .tab-btn { padding: 0.8rem 1.5rem; }
    .section { padding: 1.5rem; }
    .legal-footer .footer-links { flex-direction: column; gap: 1rem; }
    
    /* ✅ Help responsive with transparency fix */
    .help-container { padding: 1rem; }
    .help-title { font-size: 2rem; }
    .status-title { font-size: 1.5rem; }
    .status-text { font-size: 1.1rem; }
    .avatar-img { 
        width: 160px; 
        max-height: 160px;
        background: transparent !important;
        filter: drop-shadow(0 0 15px rgba(145, 0, 249, 0.6));
    }
    .avatar-fallback { width: 160px; height: 160px; font-size: 4rem; }
    .help-status { padding: 2rem 1.5rem; }
    .feature-list { grid-template-columns: 1fr; }
    .features-main-title { font-size: 2.5rem; }
    .footer-links { flex-direction: column; gap: 1rem; }

    /* ✅ Support responsive */
    .support-wrapper { padding: 1rem; }
    .support-main-title { font-size: 2.5rem; }
    .support-contact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .support-tips-grid { grid-template-columns: 1fr; }
    .support-response-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .stats-section { flex-direction: column; gap: 1.5rem; }
    .feature-item { gap: 1.5rem; margin-bottom: 4rem; }
    .feature-gif-img, .gif-placeholder { height: 200px; }
    .feature-title { font-size: 2rem; }
    .feature-description { font-size: 1rem; }
    
    /* Legal responsive */
    .legal-main-title { font-size: 1.8rem; }
    .section h3 { font-size: 1.5rem; }
    .section { padding: 1rem; }
    
    /* ✅ Help responsive with transparency fix */
    .help-title { font-size: 1.8rem; }
    .avatar-img { 
        width: 130px; 
        max-height: 130px;
        background: transparent !important;
        filter: drop-shadow(0 0 12px rgba(145, 0, 249, 0.6));
    }
    .avatar-fallback { width: 130px; height: 130px; font-size: 3.5rem; }
    .status-icon { font-size: 2.5rem; }
    .support-btn { padding: 0.8rem 1.5rem; font-size: 1rem; }

    /* ✅ Support responsive */
    .support-main-title { font-size: 2rem; }
    .contact-item-header { flex-direction: column; text-align: center; gap: 1rem; }
    .support-response-grid { grid-template-columns: 1fr; }
}
/* ===============================================
   DISCORD LOGIN & USER PROFILE STYLES
   =============================================== */

/* User Profile Container */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(88, 101, 242, 0.1);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.user-profile:hover {
    background: rgba(88, 101, 242, 0.2);
    border-color: rgba(88, 101, 242, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

/* User Avatar */
.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid rgba(88, 101, 242, 0.5);
    object-fit: cover;
    animation: avatarGlow 2s ease-in-out infinite alternate;
}

@keyframes avatarGlow {
    0% { border-color: rgba(88, 101, 242, 0.5); }
    100% { border-color: rgba(88, 101, 242, 0.8); }
}

/* User Info */
.user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-name {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Dropdown Button */
.dropdown-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.dropdown-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-btn.active i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: 12px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */
.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.dropdown-item:hover {
    background: rgba(88, 101, 242, 0.2);
    color: white;
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    opacity: 0.8;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0;
}

/* Login Button Updates */
.btn-login {
    background: linear-gradient(45deg, #5865f2, #4752c4);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.btn-login:hover {
    background: linear-gradient(45deg, #4752c4, #3c45a5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

/* Loading State */
.loading-user {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .user-profile {
        padding: 0.4rem 0.8rem;
    }
    
    .user-name {
        max-width: 80px;
        font-size: 0.8rem;
    }
    
    .user-avatar {
        width: 30px;
        height: 30px;
    }
    
    .dropdown-menu {
        right: -20px;
        min-width: 180px;
    }
}

.spin-wheel-fab {
  position: fixed;
  right: 32px;
  bottom: 29px;
  z-index: 2122;
  background: linear-gradient(117deg,#ffd700 60%,#f96941 100%);
  color: #3d1700;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  border-radius: 38px;
  box-shadow: 0 2px 30px #ff8c0088, 0 0 22px #ffd70088;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px 14px 20px;
  font-size: 1.18rem;
  letter-spacing: 1px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform .14s, box-shadow .25s;
  animation: diwali-fab-glow 1.6s infinite alternate;
}
.spin-wheel-fab:hover, .spin-wheel-fab:focus {
  transform: scale(1.07) translateY(-4px);
  box-shadow: 0 4px 60px 6px #ffd700cc, 0 2px 14px #ffbc3b99;
  background: linear-gradient(97deg,#ffe76a 40%,#f96941 100%);
}
@keyframes diwali-fab-glow {
  0% { box-shadow: 0 2px 30px #ffd70038, 0 0 15px #ffd7006c; }
  100% { box-shadow: 0 4px 66px 20px #ffd700cc, 0 2px 38px #f964418a; }
}
.spin-wheel-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: none;
  margin-right: 5px;
  display: block;
}
.spin-wheel-text {
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.08em;
  font-weight: 900;
  letter-spacing: 1.7px;
  color: #885100;
  text-shadow: 0 1px 9px #fff5be60, 0 0px 2px #ffd70044;
  margin-left: 1px;
}
/* Mobile FAB position */
@media (max-width: 700px) {
  .spin-wheel-fab {
    bottom: 11px;
    right: 10px;
    padding: 11px 18px 11px 13px;
    font-size: .97rem;
  }
  .spin-wheel-icon { width: 27px; height: 27px;}
}