:root {
    --primary-gradient: linear-gradient(135deg, #5895e6, #1565c0);
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-light: #e0e0e0;
    --text-muted-custom: #b0b0b0;
    --border-radius: 12px;
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(88, 149, 230, 0.2);
}

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

*,
*::before,
*::after {
    will-change: auto;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

img {
    will-change: transform;
    transform: translateZ(0);
}

body {
    background: linear-gradient(to right, #0a1420, #162535, #0a1420);
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: flex;
    flex-direction: column;
}

.custom-select {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.select-selected {
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.select-selected:hover {
    border-color: #4fc3f7 !important;
    background-color: rgba(79, 195, 247, 0.1) !important;
}

.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top: 2px;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.select-hide {
    display: none;
}

.select-item {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.select-item:last-child {
    border-bottom: none;
}

.select-item:hover {
    background-color: rgba(79, 195, 247, 0.2) !important;
}

.select-item.selected {
    background-color: rgba(79, 195, 247, 0.3) !important;
}

.custom-select-responsive {
    min-width: 180px;
}

@media (min-width: 768px) {
    .custom-select-responsive {
        min-width: 200px;
    }
}

main {
    flex: 1;
}

.mt-n1 {
    margin-top: -5px;
}

.fs-7 {
    font-size: 13px;
}

.text-muted-custom {
    color: var(--text-muted-custom) !important;
}

.container {
    max-width: 1300px !important;
}

.bg-dark {
    background: linear-gradient(to right, rgba(10, 16, 26, 0.9), rgba(20, 30, 42, 0.9), rgba(10, 16, 26, 0.9)) !important;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5895e6, #1976d2);
}

.text-gradient {
    background: linear-gradient(135deg, #5895e6, #4285f4, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(88, 149, 230, 0.5);
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.navbar {
    background: linear-gradient(to right, rgba(8, 12, 20, 0.95), rgba(18, 28, 40, 0.95), rgba(8, 12, 20, 0.95)) !important;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(88, 149, 230, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100px;
    transform: translateZ(0);
    will-change: background, box-shadow;
    min-height: 80px;
}

@media (max-width: 991.98px) {
    .navbar {
        height: auto;
        min-height: 70px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand img {
    height: 115px;
    width: 115px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.navbar-brand:hover img {
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 50px;
        width: 50px;
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        height: 40px;
        width: 40px;
    }

    .navbar-brand {
        font-size: 1.2rem;
    }
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.1;
    transition: all 0.3s ease;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    left: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #5895e6 !important;
}

.navbar-nav .nav-link.active::before {
    left: 0;
}

.navbar-btn {
    font-weight: 600;
    border-radius: var(--border-radius);
}

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: all 0.5s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(88, 149, 230, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(88, 149, 230, 0.5);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-light:hover {
    background: transparent;
    border-color: rgba(88, 149, 230, 0.8);
    color: #5895e6;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(88, 149, 230, 0.2);
}

.discord-nav-btn {
    border: 2px solid rgba(88, 149, 230, 0.6);
    border-radius: var(--border-radius);
    color: var(--text-light);
    font-weight: 700;
    transition: all 0.3s ease;
    background: rgba(88, 149, 230, 0.1);
    text-decoration: none;
    font-size: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(88, 149, 230, 0.1);
}

.discord-nav-btn:hover {
    background: f;
    border-color: rgba(88, 149, 230, 0.8);
    color: white;
    transform: translateY(-3px) scale(1);
    box-shadow: 0 8px 25px rgba(88, 149, 230, 0.4);
}

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
}


.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/img/gta-img/hero-bg.webp') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(25, 118, 210, 0.4));
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234fc3f7" stroke-width="0.3" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn-primary {
    background: var(--primary-gradient);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(88, 149, 230, 0.3);
}

.hero-btn-primary::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: all 0.6s ease;
}

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

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(88, 149, 230, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(88, 149, 230, 0.8);
    color: #5895e6;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88, 149, 230, 0.2);
}

.stat-pill {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 149, 230, 0.2);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.stat-pill:hover {
    background: rgba(88, 149, 230, 0.1);
    border-color: rgba(88, 149, 230, 0.4);
    transform: translateY(-2px);
}

.hero-logo-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    width: 320px;
    height: 320px;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 0 50px rgba(88, 149, 230, 0.6));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(1deg);
    }

    75% {
        transform: translateY(10px) rotate(-1deg);
    }
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(88, 149, 230, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.logo-pulse-ring,
.logo-pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(88, 149, 230, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulseRing 2s ease-out infinite;
    z-index: 2;
}

.logo-pulse-ring {
    width: 450px;
    height: 450px;
}

.logo-pulse-ring-2 {
    width: 500px;
    height: 500px;
    animation-delay: 1s;
    border-color: rgba(88, 149, 230, 0.2);
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

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

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #5895e6;
    border-radius: 50%;
    animation: particleFloat 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1.5s;
}

.particle:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 3s;
}

.particle:nth-child(4) {
    bottom: 20%;
    right: 20%;
    animation-delay: 4.5s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

.simple-feature {
    text-align: center;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 149, 230, 0.2);
    height: 100%;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0);
    will-change: transform, box-shadow, border-color;
}

.simple-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    border-color: rgba(88, 149, 230, 0.3);
}

.simple-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.simple-feature p {
    font-size: 1rem;
    line-height: 1.6;
}

.about-section {
    position: relative;
    background: linear-gradient(to right, rgba(12, 18, 28, 0.7), rgba(24, 35, 48, 0.7), rgba(12, 18, 28, 0.7));
}

.about-hero-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(88, 149, 230, 0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(88, 149, 230, 0.1), rgba(25, 118, 210, 0.1));
    z-index: -1;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    height: 100%;
    align-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(88, 149, 230, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(88, 149, 230, 0.3);
    border-color: rgba(88, 149, 230, 0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.about-content {
    padding: 0;
}

.about-feature {
    text-align: center;
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
}

.about-feature i {
    display: block;
}

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

.stat-simple .stat-number {
    display: block;
    margin-bottom: 0.5rem;
}

.stat-simple .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}


.mission-point {
    display: flex;
    align-items: center;
    background: rgba(88, 149, 230, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-gradient);
    transition: all 0.3s ease;
}

.mission-point:hover {
    transform: translateX(10px);
    background: rgba(88, 149, 230, 0.1);
}

.modern-career-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 149, 230, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
    height: 100%;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modern-career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(88, 149, 230, 0.8), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.modern-career-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(88, 149, 230, 0.25);
    border-color: rgba(88, 149, 230, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.career-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.career-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1);
}

.modern-career-card:hover .career-image {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.2);
}

.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            transparent 50%,
            rgba(0, 0, 0, 0.4) 80%,
            rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.career-icon-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(88, 149, 230, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(88, 149, 230, 0.3);
}

.modern-career-card:hover .career-icon-overlay {
    background: var(--primary-gradient);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(88, 149, 230, 0.4);
}

.career-info {
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.career-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(88, 149, 230, 0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.career-category::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--primary-gradient);
    border-radius: 1px;
}

.career-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.career-description {
    color: rgba(240, 240, 240, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.career-action i {
    color: rgba(88, 149, 230, 0.6);
    transition: all 0.3s ease;
    transform: translateX(0);
}

.modern-career-card:hover .career-action {
    border-color: rgba(88, 149, 230, 0.3);
}

.modern-career-card:hover .action-text {
    color: #5895e6;
}

.modern-career-card:hover .career-action i {
    color: #5895e6;
    transform: translateX(8px);
}

.step-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 149, 230, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: rgba(88, 149, 230, 0.3);
    transform: translateX(5px);
}

.server-info-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 149, 230, 0.2);
    box-shadow: var(--shadow-dark);
}

.info-item {
    background: rgba(88, 149, 230, 0.1);
    border-radius: var(--border-radius);
    border: 1px solid rgba(88, 149, 230, 0.2);
}

.faq-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(88, 149, 230, 0.2);
    --bs-accordion-border-radius: var(--border-radius);
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(88, 149, 230, 0.2) !important;
    border-radius: var(--border-radius) !important;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 149, 230, 0.05), transparent);
    transition: all 0.7s ease;
    z-index: 0;
}

.faq-item:hover::before {
    left: 100%;
}

.faq-item:hover {
    border-color: rgba(88, 149, 230, 0.4) !important;
    box-shadow: 0 10px 30px rgba(88, 149, 230, 0.1);
    transform: translateY(-2px);
}

.faq-button {
    background: transparent !important;
    border: none !important;
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius) !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
    position: relative;
    z-index: 1;
}

.faq-button:not(.collapsed) {
    color: #5895e6 !important;
    background: linear-gradient(135deg, rgba(88, 149, 230, 0.1), rgba(25, 118, 210, 0.1)) !important;
}

.faq-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.faq-button::after {
    background-image: none !important;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #5895e6;
    font-size: 1.2rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-body {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(88, 149, 230, 0.1);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-steps {
    margin-bottom: 0;
}

.faq-steps li {
    position: relative;
}

.faq-steps li::marker {
    color: #5895e6;
    font-weight: bold;
}

.faq-list {
    list-style: none;
    margin-bottom: 0;
}

.faq-list li {
    position: relative;
}

.faq-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #5895e6;
    position: absolute;
    left: 0;
    top: 0;
}

.faq-body code {
    background: rgba(88, 149, 230, 0.2);
    color: #5895e6;
    border-radius: 4px;
    font-size: 0.9rem;
    border: 1px solid rgba(88, 149, 230, 0.3);
}

.laws-accordion {
    --bs-accordion-bg: transparent;
    --bs-accordion-border-color: rgba(88, 149, 230, 0.2);
    --bs-accordion-border-radius: var(--border-radius);
}

.law-item {
    background: var(--card-bg);
    border: 1px solid rgba(88, 149, 230, 0.2) !important;
    border-radius: var(--border-radius) !important;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.law-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 149, 230, 0.05), transparent);
    transition: all 0.7s ease;
    z-index: 0;
}

.law-item:hover::before {
    left: 100%;
}

.law-item:hover {
    border-color: rgba(88, 149, 230, 0.4) !important;
    box-shadow: 0 10px 30px rgba(88, 149, 230, 0.1);
    transform: translateY(-2px);
}

.law-button {
    background: transparent !important;
    border: none !important;
    color: var(--text-light) !important;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius) !important;
    transition: all 0.3s ease;
    box-shadow: none !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
}

.law-button:not(.collapsed) {
    color: #5895e6 !important;
    background: linear-gradient(135deg, rgba(88, 149, 230, 0.1), rgba(25, 118, 210, 0.1)) !important;
}

.law-button:focus {
    box-shadow: none !important;
    border: none !important;
}

.law-title-wrapper {
    flex: 1;
    text-align: left;
    margin-left: 0.5rem;
}

.law-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.law-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted-custom);
    font-weight: 400;
}

.law-button::after {
    background-image: none !important;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #5895e6;
    font-size: 1.2rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    margin-left: auto;
    flex-shrink: 0;
}

.law-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.law-body {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(88, 149, 230, 0.1);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.law-content {
    position: relative;
}

.law-content h4 {
    color: #5895e6;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(88, 149, 230, 0.3);
}

.law-content h5 {
    color: var(--text-light);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 0.75rem;
    border-left: 3px solid var(--primary-gradient);
}

.law-section {
    background: rgba(88, 149, 230, 0.03);
    border-radius: var(--border-radius);
    border: 1px solid rgba(88, 149, 230, 0.1);
}

.law-section strong {
    color: #5895e6;
    font-weight: 600;
}

.law-preamble {
    font-style: italic;
    background: rgba(88, 149, 230, 0.05);
    border-left: 4px solid var(--primary-gradient);
    border-radius: 0 8px 8px 0;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid rgba(88, 149, 230, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: rgba(88, 149, 230, 0.4);
}

.team-avatar-wrapper {
    position: relative;
    display: inline-block;
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 25%;
    object-fit: cover;
    border: 4px solid rgba(88, 149, 230, 0.3);
    transition: all 0.3s ease;
    background: var(--card-bg);
}

.team-card:hover .team-avatar {
    border-color: rgba(88, 149, 230, 0.6);
    transform: scale(1.05);
}

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

.team-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.rule-card {
    background: var(--card-bg);
    border: 1px solid rgba(88, 149, 230, 0.2);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rule-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 149, 230, 0.05), transparent);
    transition: all 0.7s ease;
    z-index: 0;
}

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

.rule-card:hover {
    border-color: rgba(88, 149, 230, 0.4);
    box-shadow: 0 10px 30px rgba(88, 149, 230, 0.1);
    transform: translateY(-5px);
}

.rule-header {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(88, 149, 230, 0.1);
    position: relative;
    z-index: 1;
}

.rule-icon {
    width: 40px;
    height: 40px;
    background: rgba(88, 149, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5895e6;
    font-size: 1rem;
    margin-left: auto;
    transition: all 0.3s ease;
}

.rule-card:hover .rule-icon {
    background: rgba(88, 149, 230, 0.2);
    transform: scale(1.1);
}

.rule-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.rule-title {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.rule-description {
    color: var(--text-muted-custom);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.rule-card:hover .rule-title {
    color: #5895e6;
}

.rule-card:hover .rule-description {
    color: var(--text-light);
}

.rule-box {
    background: var(--card-bg);
    border: 1px solid rgba(88, 149, 230, 0.2);
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.rule-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 149, 230, 0.05), transparent);
    transition: all 0.7s ease;
    z-index: 0;
}

.rule-box:hover::before {
    left: 100%;
}

.rule-box:hover {
    border-color: rgba(88, 149, 230, 0.4);
    box-shadow: 0 10px 30px rgba(88, 149, 230, 0.1);
    transform: translateY(-2px);
}

.rule-box-header {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background: transparent;
}

.rule-box .rule-number {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.rule-box .rule-title-wrapper {
    flex: 1;
    text-align: left;
    margin-left: 0.5rem;
}

.rule-box .rule-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.2;
}

.rule-box .rule-icon {
    width: 40px;
    height: 40px;
    background: rgba(88, 149, 230, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5895e6;
    font-size: 1rem;
    margin-left: auto;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rule-box:hover .rule-icon {
    background: rgba(88, 149, 230, 0.2);
    transform: scale(1.1);
}

.rule-box-body {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(88, 149, 230, 0.1);
    position: relative;
    z-index: 1;
}

.rule-box .rule-content {
    position: relative;
}

.rule-box .rule-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.rule-box:hover .rule-title {
    color: #5895e6;
}

.rule-list {
    list-style: none;
    padding-left: 0;
}

.rule-list li {
    position: relative;
    color: var(--text-muted-custom);
    font-size: 0.95rem;
    line-height: 1.5;
}

.rule-list li::before {
    content: '–';
    color: #5895e6;
    font-weight: bold;
    position: absolute;
    left: -15px;
    top: 0;
}

.ban-box {
    background: var(--card-bg);
    border: 1px solid rgba(88, 149, 230, 0.2);
    border-radius: var(--border-radius);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.ban-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(88, 149, 230, 0.08), transparent);
    transition: all 0.8s ease;
    z-index: 0;
}

.ban-box:hover::before {
    left: 100%;
}

.ban-box:hover {
    border-color: rgba(88, 149, 230, 0.5);
    box-shadow: 0 20px 60px rgba(88, 149, 230, 0.2);
    transform: translateY(-8px) scale(1.02);
}

.ban-box-header {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(88, 149, 230, 0.15);
    position: relative;
    z-index: 1;
}

.ban-player-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(88, 149, 230, 0.2), rgba(25, 118, 210, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid rgba(88, 149, 230, 0.3);
    transition: all 0.3s ease;
}

.ban-player-avatar i {
    font-size: 1.5rem;
    color: #5895e6;
    transition: all 0.3s ease;
}

.ban-box:hover .ban-player-avatar {
    background: linear-gradient(135deg, rgba(88, 149, 230, 0.4), rgba(25, 118, 210, 0.4));
    border-color: rgba(88, 149, 230, 0.6);
    transform: scale(1.1);
}

.ban-box:hover .ban-player-avatar i {
    color: white;
    transform: scale(1.1);
}

.ban-player-name {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.ban-box:hover .ban-player-name {
    color: #5895e6;
}

.ban-box-body {
    background: rgba(255, 255, 255, 0.02);
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ban-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.ban-info-icon {
    width: 35px;
    height: 35px;
    background: rgba(88, 149, 230, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ban-info-icon i {
    font-size: 0.95rem;
    color: #5895e6;
    transition: all 0.3s ease;
}

.ban-box:hover .ban-info-icon {
    background: rgba(88, 149, 230, 0.2);
    transform: scale(1.05);
}

.ban-box:hover .ban-info-icon i {
    color: white;
}

.ban-info-content {
    flex: 1;
}

.ban-label {
    font-weight: 600;
    color: #5895e6;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.25rem;
}

.ban-value {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ban-box:hover .ban-value {
    color: white;
}

.ban-status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 0rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: auto;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ban-status-badge.bg-danger {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: white;
    border-color: rgba(220, 53, 69, 0.3);
}

.ban-status-badge.bg-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800) !important;
    color: #333;
    border-color: rgba(255, 193, 7, 0.3);
}

.ban-status-badge.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
    color: white;
    border-color: rgba(40, 167, 69, 0.3);
}

.ban-box:hover .ban-status-badge {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

footer {
    background: linear-gradient(to right, rgba(8, 12, 20, 0.95), rgba(18, 28, 40, 0.95), rgba(8, 12, 20, 0.95));
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(88, 149, 230, 0.2);
    position: relative;
    margin-top: auto;
}

.footer-logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--primary-gradient);
    padding: 2px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-gradient);
    opacity: 0.5;
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #22b3f7e0 !important;
    transform: translateY(-3px) scale(1);
}

.custom-alert {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
}

.custom-alert .fas.fa-info-circle {
    color: #5895e6;
}

.custom-toast {
    background: linear-gradient(135deg, rgba(10, 20, 32, 0.95), rgba(22, 37, 53, 0.95)) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(88, 149, 230, 0.3) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-dark), var(--shadow-light) !important;
    color: var(--text-light) !important;
    margin-top: 110px !important;
}

.swal2-container.swal2-top-end {
    top: 0 !important;
    padding-top: 0 !important;
}

.custom-toast-title {
    color: var(--text-light) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}

.custom-timer-bar {
    background: var(--primary-gradient) !important;
    height: 3px !important;
}

.swal2-popup {
    background: linear-gradient(135deg, rgba(10, 20, 32, 0.95), rgba(22, 37, 53, 0.95)) !important;
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(88, 149, 230, 0.3) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-dark), var(--shadow-light) !important;
    color: var(--text-light) !important;
}

.swal2-title {
    color: var(--text-light) !important;
    font-weight: 600 !important;
}

.swal2-content {
    color: var(--text-muted-custom) !important;
}

.swal2-input,
.swal2-textarea {
    background: rgba(10, 20, 32, 0.8) !important;
    border: 1px solid rgba(88, 149, 230, 0.4) !important;
    border-radius: 8px !important;
    color: var(--text-light) !important;
    padding: 12px !important;
}

.swal2-input:focus,
.swal2-textarea:focus {
    border-color: rgba(88, 149, 230, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(88, 149, 230, 0.1) !important;
    outline: none !important;
}

.swal2-input::placeholder,
.swal2-textarea::placeholder {
    color: var(--text-muted-custom) !important;
}

.swal2-label {
    color: var(--text-light) !important;
    font-weight: 500 !important;
}

.swal2-confirm {
    background: var(--primary-gradient) !important;
    border: none !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 5px 15px rgba(88, 149, 230, 0.4) !important;
}

.swal2-cancel {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    color: var(--text-light) !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    transition: all 0.3s ease !important;
}

.swal2-cancel:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}

.swal2-confirm[style*="rgb(40, 167, 69)"] {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

.swal2-confirm[style*="rgb(40, 167, 69)"]:hover {
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4) !important;
}

.swal2-confirm[style*="rgb(220, 53, 69)"] {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
}

.swal2-confirm[style*="rgb(220, 53, 69)"]:hover {
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4) !important;
}

.server-info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 149, 230, 0.2);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-dark);
    transition: all 0.3s ease;
}

.server-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-light);
    border-color: rgba(88, 149, 230, 0.4);
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.info-row {
    background: var(--card-bg);
    border: 1px solid rgba(88, 149, 230, 0.1);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.info-row:hover {
    background: rgba(88, 149, 230, 0.1);
    border-color: rgba(88, 149, 230, 0.3);
    transform: translateX(3px);
}

.server-actions .btn {
    transition: all 0.3s ease;
}

.server-actions .btn:hover {
    transform: scale(1.02);
}

.server-header {
    border-bottom: 2px solid rgba(88, 149, 230, 0.2);
    padding-bottom: 15px;
}

.server-status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-row-clickable {
    cursor: pointer;
}

.info-row-clickable:hover {
    background: rgba(88, 149, 230, 0.15) !important;
    border-color: rgba(88, 149, 230, 0.4) !important;
    transform: translateX(5px) !important;
}

.info-row-clickable:hover .fa-copy {
    color: #fff !important;
}

.info-row-clickable:active {
    transform: translateX(5px) scale(0.98) !important;
}

@media (max-width: 991.98px) {
    .navbar-toggler {
        border: 1px solid rgba(88, 149, 230, 0.3);
        padding: 0.25rem 0.5rem;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(88, 149, 230, 0.25);
    }

    .navbar-collapse {
        margin-top: 0.5rem !important;
        background: rgba(10, 16, 26, 0.95);
        backdrop-filter: blur(15px);
        border-radius: 8px;
        border: 1px solid rgba(88, 149, 230, 0.2);
        padding: 1rem;
        margin-left: -15px;
        margin-right: -15px;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        text-align: center;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(88, 149, 230, 0.1);
        transform: none;
    }

    .nav-item:last-child .nav-link {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.5rem 1rem;
    }
}

.fullscreen-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 16, 26, 0.98), rgba(22, 37, 53, 0.98));
    backdrop-filter: blur(20px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.fullscreen-menu-overlay::-webkit-scrollbar {
    display: none;
}

.fullscreen-menu-overlay.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1051;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(88, 149, 230, 0.1);
    transition: all 0.3s ease;
}

.fullscreen-menu-overlay .close-btn:hover {
    background: rgba(88, 149, 230, 0.2);
    transform: scale(1.1);
}

.fullscreen-menu-header {
    text-align: center;
    margin-bottom: 2rem;
}

.fullscreen-logo {
    width: 150px;
    height: 150px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(88, 149, 230, 0.4));
}

.fullscreen-logo:hover {
    transform: scale(1.1);
    border-color: rgba(88, 149, 230, 0.6);
    filter: drop-shadow(0 0 30px rgba(88, 149, 230, 0.6));
}

.fullscreen-menu-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.fullscreen-menu-content .menu-link {
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(88, 149, 230, 0.2);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
}

.fullscreen-menu-content .menu-link:hover,
.fullscreen-menu-content .menu-link.active {
    background: rgba(88, 149, 230, 0.15);
    border-color: rgba(88, 149, 230, 0.4);
    transform: scale(1.02);
    color: #5895e6 !important;
    text-decoration: none;
}

.fullscreen-menu-content .tebex-link {
    padding: 0.5rem 1rem;
    background: rgba(88, 149, 230, 0.1);
    border-color: rgba(88, 149, 230, 0.3);
}

.fullscreen-menu-content .tebex-link img {
    max-height: 24px;
    width: auto;
}

.fullscreen-user-section {
    margin-top: 0;
    justify-content: center;
    width: 100%;
    flex-shrink: 0;
}

.fullscreen-user-section .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }

    .navbar-toggler {
        z-index: 1052;
        position: relative;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        text-align: center;
    }

    .hero-logo-container {
        width: 350px;
        height: 350px;
        margin-bottom: 2rem;
    }

    .hero-logo {
        width: 220px;
        height: 220px;
    }

    .logo-glow {
        width: 300px;
        height: 300px;
    }

    .logo-pulse-ring {
        width: 320px;
        height: 320px;
    }

    .logo-pulse-ring-2 {
        width: 350px;
        height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .simple-feature {
        margin-bottom: 2rem;
    }

    .career-image-wrapper {
        height: 220px;
    }

    .career-title {
        font-size: 1.5rem;
    }

    .career-description {
        font-size: 0.9rem;
    }
}

.hero-section,
#features,
.about-section,
#cesty,
#download,
#faq,
#zakony-hero,
#team-hero,
#pravidla-hero,
#banlist-hero,
#statistiky-hero {
    position: relative;
}

.hero-section::after,
#features::after,
.about-section::after,
#cesty::after,
#download::after,
#zakony-hero::after,
#team-hero::after,
#pravidla-hero::after,
#banlist-hero::after,
#statistiky-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(88, 149, 230, 0.2), transparent);
    z-index: 1;
}

@media (max-width: 576px) {
    .hero-logo-container {
        width: 280px;
        height: 280px;
    }

    .hero-logo {
        width: 180px;
        height: 180px;
    }

    .logo-glow {
        width: 250px;
        height: 250px;
    }

    .logo-pulse-ring {
        width: 260px;
        height: 260px;
    }

    .logo-pulse-ring-2 {
        width: 280px;
        height: 280px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .navbar-nav .nav-link {
        font-size: 1.1rem;
    }

    .dropdown-item {
        color: var(--text-light);
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
        border-radius: 6px;
        margin: 0.25rem 0;
    }

    .dropdown-item:hover {
        background: rgba(88, 149, 230, 0.15);
        color: #5895e6;
    }
}

.dropdown-menu {
    background: linear-gradient(135deg, #1a2332, #2d3748) !important;
    border: 2px solid rgba(88, 149, 230, 0.4) !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(88, 149, 230, 0.1) !important;
    padding: 0.75rem !important;
    margin-top: 0.75rem !important;
    min-width: 200px !important;
}

.dropdown-item {
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    color: #e0e0e0 !important;
    border-radius: 8px !important;
    margin: 0.25rem 0 !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    border: 1px solid transparent !important;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #5895e6, #4285f4) !important;
    color: white !important;
    transform: translateX(5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(88, 149, 230, 0.3) !important;
}

.dropdown-item.text-danger {
    color: #ff6b6b !important;
}

.dropdown-item.text-danger:hover {
    background: linear-gradient(135deg, #ff6b6b, #ff5252) !important;
    color: white !important;
    transform: translateX(5px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3) !important;
}

.dropdown-divider {
    border-color: rgba(88, 149, 230, 0.3) !important;
    margin: 0.5rem 0 !important;
}

.dropdown-toggle.show {
    background-color: transparent !important;
    border-color: rgba(88, 149, 230, 0.5) !important;
}

.dropdown-toggle:focus {
    background-color: transparent !important;
    border-color: rgba(88, 149, 230, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(88, 149, 230, 0.25) !important;
}

.btn-outline-light.dropdown-toggle.show {
    background-color: transparent !important;
    color: var(--text-light) !important;
}

.fullscreen-user-section .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    max-width: 280px !important;
    margin-top: 1rem !important;
}

@media (max-width: 576px) {
    #customCharacterSelect.custom-select {
        width: 100% !important;
    }

    #customCharacterSelect .select-selected {
        padding: 0.75rem !important;
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        min-height: 45px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        word-break: break-word !important;
    }

    #customCharacterSelect .select-selected span {
        flex: 1 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        padding-right: 10px !important;
        max-width: calc(100% - 30px) !important;
    }

    #customCharacterSelect .select-selected .fas.fa-chevron-down {
        flex-shrink: 0 !important;
        margin-top: 0 !important;
        width: 20px !important;
        text-align: center !important;
    }

    #customCharacterSelect .select-items {
        max-height: 180px !important;
        font-size: 0.8rem !important;
    }

    #customCharacterSelect .select-item {
        padding: 0.75rem !important;
        line-height: 1.3 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
}

@media (max-width: 420px) {
    #customCharacterSelect .select-selected {
        font-size: 0.75rem !important;
        padding: 0.6rem 0.75rem !important;
        min-height: 42px !important;
    }

    #customCharacterSelect .select-item {
        font-size: 0.75rem !important;
        padding: 0.6rem 0.75rem !important;
    }

    #customCharacterSelect .select-selected span {
        max-width: calc(100% - 25px) !important;
    }
}

@media (max-width: 576px) {
    .character-basic-info .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .character-job-info .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .character-health-stats .col-6 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-bottom: 0.5rem !important;
    }

    .stat-card {
        padding: 0.75rem !important;
    }

    .stat-card .text-light {
        font-size: 0.85rem !important;
    }

    .stat-card .small {
        font-size: 0.75rem !important;
    }

    .stat-card i {
        font-size: 0.9rem !important;
        width: 16px !important;
    }
}

@media (max-width: 420px) {
    .stat-card {
        padding: 0.6rem !important;
    }

    .stat-card .text-light {
        font-size: 0.8rem !important;
    }

    .stat-card .small {
        font-size: 0.7rem !important;
    }

    .stat-card i {
        font-size: 0.85rem !important;
        width: 14px !important;
    }
}