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

:root {
    --primary: #00d4ff;
    --secondary: #9d4edd;
    --accent: #ff006e;
    --dark: #0a0a0f;
    --darker: #050508;
    --card-bg: rgba(15, 15, 25, 0.8);
    --border: rgba(157, 78, 221, 0.2);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--darker);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(157, 78, 221, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: #e0e6ed;
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(157, 78, 221, 0.03) 50%, transparent 100%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 212, 255, 0.03) 2px, rgba(0, 212, 255, 0.03) 4px);
    pointer-events: none;
    z-index: 1;
}

.main-header {
    background: linear-gradient(135deg, #0a0a0f 0%, #111 50%, #0f0f1a 100%);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .main-header {
        position: relative;
        box-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .main-header {
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    }
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #9d4edd;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #9d4edd;
}

.nav-brand i {
    margin-right: 0.75rem;
    animation: pulse 2s infinite;
    color: #9d4edd;
}

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

.nav-menu li {
    margin: 0 0.25rem;
}

.nav-menu a {
    color: #c9a9dd;
    text-decoration: none;
    padding: 0.5rem 0.5rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    position: relative;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.05), rgba(157, 78, 221, 0.02));
    border: 1px solid rgba(157, 78, 221, 0.1);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.15), rgba(157, 78, 221, 0.08));
    color: #e0c7f0;
    border-color: rgba(157, 78, 221, 0.3);
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.15);
    transform: translateY(-1px);
}

.nav-menu a i {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.nav-auth-btn {
    padding: 0.5rem 0.5rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(157, 78, 221, 0.05));
    border: 1px solid rgba(157, 78, 221, 0.4);
    color: #c9a9dd;
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(157, 78, 221, 0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    font-family: inherit;
    height: 42px;
    min-width: fit-content;
}

.nav-auth-btn:hover {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(157, 78, 221, 0.1));
    border-color: rgba(157, 78, 221, 0.5);
    color: #e0c7f0;
    box-shadow: 0 4px 16px rgba(157, 78, 221, 0.2);
    transform: translateY(-1px);
}

.nav-auth-btn.active {
    background: linear-gradient(135deg, #9d4edd, #8b3fd1);
    border-color: #9d4edd;
    color: white;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4), 0 4px 16px rgba(157, 78, 221, 0.3);
    transform: translateY(-2px);
}

.nav-auth-btn.active:hover {
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.5), 0 6px 20px rgba(157, 78, 221, 0.4);
}

.nav-auth-btn i {
    font-size: 0.85rem;
    opacity: 0.9;
}

.login-btn, .register-btn {
    padding: 0.5rem 0.5rem;
    border: 1px solid rgba(157, 78, 221, 0.4);
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(157, 78, 221, 0.05));
    color: #c9a9dd;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(157, 78, 221, 0.15);
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    height: 42px;
}

.register-btn {
    background: linear-gradient(135deg, #00d4ff, #0ea5e9);
    border-color: #00d4ff;
    color: white;
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.login-btn:hover, .register-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

.hero-section {
    padding: 8rem 2rem 6rem;
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 5rem;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

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

.animated-logo {
    position: relative;
    display: inline-block;
}

.animated-logo i {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: float 4s ease-in-out infinite, gradient-shift 8s ease infinite;
    filter: drop-shadow(0 0 40px rgba(157, 78, 221, 0.6)) drop-shadow(0 0 80px rgba(0, 212, 255, 0.4));
}

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

.animated-logo h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 4s linear infinite;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
    text-shadow: 0 0 80px rgba(157, 78, 221, 0.5);
}

.animated-logo h1::after {
    content: 'REMASTERED';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    letter-spacing: 12px;
    color: var(--primary);
    opacity: 0.8;
}

@keyframes gradient {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(-3deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

.server-info {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #00d4ff;
    margin: 2rem 0;
}

.status-widget {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.status.online {
    color: #00ff88;
}

.status.offline {
    color: #ff4757;
}

.join-btn {
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.2rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
}

.announcements {
    margin-top: 6rem;
    padding: 4rem 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.announcements h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    position: relative;
    width: 100%;
}

.announcements h2::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

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

.announcement-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

@keyframes gradient-slide {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.announcement-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.announcement-card:hover::after {
    width: 500px;
    height: 500px;
}

.announcement-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 
        0 20px 60px rgba(0, 212, 255, 0.2),
        0 0 100px rgba(157, 78, 221, 0.1),
        inset 0 0 60px rgba(0, 212, 255, 0.05);
}

.announcement-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.announcement-card p {
    color: #c9a9dd;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.announcement-card .date {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.announcement-card .date::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

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

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

/* Large Desktop */
@media (min-width: 1440px) {
    .navbar {
        padding: 1.2rem 3rem;
    }
    
    .nav-menu li {
        margin: 0 1rem;
    }
}

/* Desktop */
@media (max-width: 1439px) and (min-width: 1025px) {
    .navbar {
        padding: 1rem 2rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1200px) and (min-width: 901px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu li {
        margin: 0 0.4rem;
    }
    
    .nav-menu a {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .nav-auth-btn, .login-btn, .register-btn {
        padding: 0.6rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* Tablet Portrait */
@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0a0a0f 0%, #111 50%, #0f0f1a 100%);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(157, 78, 221, 0.2);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-menu-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(157, 78, 221, 0.1);
    }
    
    .nav-auth {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(157, 78, 221, 0.2);
    }
    
    .nav-auth-btn, .login-btn, .register-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

/* Mobile Large */
@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0a0a0f 0%, #111 50%, #0f0f1a 100%);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(157, 78, 221, 0.2);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    
    .nav-menu-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 1rem 2rem;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(157, 78, 221, 0.1);
        transition: all 0.2s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(157, 78, 221, 0.1);
        padding-left: 2.5rem;
    }
    
    .nav-auth {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(157, 78, 221, 0.2);
    }
    
    .nav-auth-btn, .login-btn, .register-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .animated-logo h1 {
        font-size: 1.8rem;
    }
    
    .animated-logo i {
        font-size: 2.5rem;
    }
}

/* Mobile Small */
@media (max-width: 1200px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .navbar {
        padding: 0.75rem 1rem;
    }
    
    .nav-brand {
        font-size: 1.1rem;
    }
    
    .nav-brand i {
        font-size: 1.2rem;
    }
    
    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0a0a0f 0%, #111 50%, #0f0f1a 100%);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(157, 78, 221, 0.2);
        box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        flex-direction: column;
        gap: 0;
        padding: 0.75rem 0;
    }
    
    .nav-menu-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(157, 78, 221, 0.1);
        font-size: 0.9rem;
    }
    
    .nav-auth {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        border-top: 1px solid rgba(157, 78, 221, 0.2);
    }
    
    .nav-auth-btn, .login-btn, .register-btn {
        width: 100%;
        justify-content: center;
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .animated-logo h1 {
        font-size: 1.4rem;
    }
    
    .server-info {
        padding: 1rem;
    }
    
    .join-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 360px) {
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .nav-brand {
        font-size: 1rem;
    }
    
    .nav-brand span {
        display: none;
    }
    
    .mobile-menu-toggle {
        font-size: 1.3rem;
    }
    
    .animated-logo h1 {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 1.5rem 0.75rem;
    }
}

.auth-container {
    max-width: 500px;
    margin: 6rem auto;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.auth-form {
    background: var(--card-bg);
    backdrop-filter: blur(30px);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(157, 78, 221, 0.1),
        inset 0 0 80px rgba(0, 212, 255, 0.02);
    position: relative;
    overflow: hidden;
}

.auth-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

.auth-form::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.08), transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.auth-form h2 {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #c9a9dd;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.form-group label i {
    color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px;
    color: #e0e6ed;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 
        0 0 30px rgba(0, 212, 255, 0.2),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.auth-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    border: none;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.auth-btn:hover::before {
    width: 400px;
    height: 400px;
}

.auth-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(157, 78, 221, 0.4),
        0 0 60px rgba(0, 212, 255, 0.3);
}

.error, .success {
    padding: 1.25rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
}

.error {
    background: rgba(255, 71, 87, 0.15);
    border: 2px solid rgba(255, 71, 87, 0.5);
    color: #ff6b6b;
}

.success {
    background: rgba(0, 255, 136, 0.15);
    border: 2px solid rgba(0, 255, 136, 0.5);
    color: #00ff88;
}

.profile-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #00d4ff;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.profile-info h1 {
    margin: 0 0 1rem 0;
    color: #e0e6ed;
}

.profile-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge.role-admin {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.badge.role-member {
    background: rgba(0, 212, 255, 0.2);
    color: #00d4ff;
    border: 1px solid #00d4ff;
}

.badge.faction {
    background: rgba(157, 78, 221, 0.2);
    color: #9d4edd;
    border: 1px solid #9d4edd;
}

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

.profile-stats,
.profile-edit {
    background: rgba(0, 0, 0, 0.7);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.profile-stats h3,
.profile-edit h3 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
}

.profile-form .form-group {
    margin-bottom: 1rem;
}

.profile-form select {
    width: 100%;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    border-radius: 5px;
    color: #e0e6ed;
}

.success {
    color: #00ff88;
    margin-bottom: 1rem;
    text-align: center;
}

.admin-panel-access {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
}

.admin-panel-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(45deg, #9d4edd, #ff6b6b);
    border: none;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.admin-panel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(157, 78, 221, 0.3);
}

@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

.support-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #00d4ff;
}

.support-header h1 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.ticket-form,
.support-info {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.ticket-form h3,
.support-info h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    border-left: 3px solid #00d4ff;
}

.faq-item h4 {
    color: #e0e6ed;
    margin: 0 0 0.5rem 0;
}

.faq-item p {
    color: #999;
    margin: 0;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    padding: 0.5rem 0;
    color: #e0e6ed;
}

.priority {
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
}

.priority.high {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.priority.medium {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.priority.low {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
}

@media (max-width: 768px) {
    .support-content {
        grid-template-columns: 1fr;
    }
}

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

.about-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #00d4ff;
}

.about-header h1 {
    color: #00d4ff;
    margin-bottom: 1rem;
}

.about-content {
    display: grid;
    gap: 3rem;
}

.server-lore,
.server-rules,
.staff-section,
.server-stats {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333;
}

.server-lore h2,
.server-rules h2,
.staff-section h2,
.server-stats h2 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
}

.lore-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #e0e6ed;
}

.rules-list {
    display: grid;
    gap: 1rem;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    border-left: 3px solid #00ff88;
}

.rule-item i {
    color: #00ff88;
}

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

.staff-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333;
    text-align: center;
}

.staff-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00d4ff, #9d4edd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.staff-info h3 {
    color: #e0e6ed;
    margin-bottom: 0.5rem;
}

.staff-role {
    color: #00d4ff;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.staff-rank {
    color: #ffc107;
    margin-bottom: 1rem;
}

.staff-rank i {
    margin-right: 0.25rem;
}

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

.discord-widget, .twitch-stream {
    margin: 6rem auto;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--border);
    max-width: 1600px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.discord-widget::before, .twitch-stream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-size: 200% 100%;
    animation: gradient-slide 3s linear infinite;
}

.discord-widget::before {
    background: linear-gradient(90deg, #7289da, #5865f2, #7289da);
}

.twitch-stream::before {
    background: linear-gradient(90deg, #9146ff, #772ce8, #9146ff);
}

.discord-widget::after, .twitch-stream::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(114, 137, 218, 0.05), transparent);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.twitch-stream::after {
    background: radial-gradient(circle, rgba(145, 70, 255, 0.05), transparent);
}

.discord-widget h2, .twitch-stream h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.discord-widget h2 {
    background: linear-gradient(135deg, #7289da, #5865f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.twitch-stream h2 {
    background: linear-gradient(135deg, #9146ff, #772ce8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.discord-widget iframe, .twitch-stream iframe {
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(114, 137, 218, 0.1);
    border: 1px solid rgba(114, 137, 218, 0.2);
    position: relative;
    z-index: 1;
}

.twitch-stream iframe {
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(145, 70, 255, 0.1);
    border-color: rgba(145, 70, 255, 0.2);
}

.factions-leaderboard {
    margin-top: 3rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #9d4edd;
}

.factions-leaderboard h2 {
    color: #9d4edd;
    margin-bottom: 1.5rem;
    text-align: center;
}

.leaderboard-list {
    display: grid;
    gap: 1rem;
}

.faction-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    border-left: 3px solid #9d4edd;
    transition: all 0.3s ease;
}

.faction-item:hover {
    background: rgba(157, 78, 221, 0.1);
    transform: translateX(5px);
}

.faction-rank {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00d4ff;
    min-width: 50px;
    text-align: center;
}

.faction-info h4 {
    color: #e0c7f0;
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
}

.faction-info p {
    color: #c9a9dd;
    margin: 0;
    font-size: 0.9rem;
}