:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-darker: #000000;
    --color-accent-orange: #ffa500;
    --color-accent-orange-light: #ffb700;
    --color-accent-purple: #9d4edd;
    --text-white: #ffffff;
    --text-light: #e0e0e0;
    --glow-color-orange: rgba(255, 165, 0, 0.8);
    --brightness-dimmed: 0.6;
    --brightness-photos: 0.8;
    --bolt-size: 450px;
    --glow-blur: 15px;
    --z-background: 10;
    --z-photos: 5;
    --z-bolt: 100;
    --transition-fast: 0.2s ease-out;
    --transition: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Exo', 'Arial', sans-serif;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    color: var(--text-white);
}

.main-content {
    flex: 1;
    width: 100%;
    min-height: 80vh; /* Garde le footer un peu plus bas */
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.8);
    border-left: 1px solid rgba(255, 165, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-accent-orange), rgba(255, 165, 0, 0.7));
    border-radius: 10px;
    box-shadow: 0 0 10px var(--color-accent-orange), inset 0 0 5px rgba(255, 165, 0, 0.5);
    border: 1px solid rgba(255, 165, 0, 0.5);
    transition: all var(--transition);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(255, 165, 0, 1), var(--color-accent-orange));
    box-shadow: 0 0 20px var(--color-accent-orange), inset 0 0 8px rgba(255, 165, 0, 0.8);
    width: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}


.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 2px solid rgba(255, 165, 0, 0.4);
    box-shadow: 0 15px 50px rgba(255, 165, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    z-index: 1000;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    box-sizing: border-box;
    transition: all var(--transition);
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-accent-orange), transparent);
    opacity: 0.8;
}

.navbar-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all var(--transition);
    position: absolute;
    left: 2rem;
}

.navbar-logo::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-orange);
    box-shadow: 0 0 10px var(--color-accent-orange);
    transition: width var(--transition);
}

.navbar-logo:hover {
    transform: translateY(-2px);
}

.navbar-logo:hover::before {
    width: 100%;
}

.navbar-logo:hover .logo-img {
    filter: drop-shadow(0 0 15px var(--color-accent-orange)) scale(1.1);
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: all var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.3));
}

.navbar-logo:hover .logo-img {
    filter: drop-shadow(0 0 20px var(--color-accent-orange)) scale(1.1);
}

.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-accent-orange);
    box-shadow: 0 0 10px var(--color-accent-orange);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent-orange);
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.btn-join {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--color-accent-orange) 0%, #ff8c00 100%);
    color: #000;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5);
}

.btn-join-secondary {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    color: var(--color-accent-orange);
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--color-accent-orange);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all var(--transition);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.2);
}

.btn-join-secondary:hover {
    background: rgba(255, 165, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.4);
}

.navbar-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: absolute;
    right: 2rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-accent-orange);
    border-radius: 2px;
    transition: all var(--transition);
    box-shadow: 0 0 8px rgba(255, 165, 0, 0.5);
}

.menu-toggle:hover span {
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}


.main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    flex-shrink: 0;
    isolation: isolate;
    overflow: visible;
}


.info-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-orange), transparent);
    box-shadow: 0 0 15px var(--color-accent-orange);
}

.galerie-section {
    background: linear-gradient(135deg, rgba(20, 10, 0, 0.3) 0%, rgba(10, 10, 20, 0.3) 100%);
    position: relative;
    z-index: 1000;
    padding-bottom: 8rem;
}

.evenements-section {
    background: linear-gradient(135deg, rgba(10, 10, 25, 0.3) 0%, rgba(20, 15, 10, 0.3) 100%);
}

.contact-section {
    background: linear-gradient(135deg, rgba(15, 20, 10, 0.3) 0%, rgba(10, 10, 20, 0.3) 100%);
}

.section-content {
    max-width: 800px;
    text-align: center;
    z-index: 10;
    animation: slide-in 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--color-accent-orange);
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.5);
    margin: 0 0 2rem 0;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    font-size: 2.5rem;
}

.section-description {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 2rem 0;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--color-accent-orange), var(--color-accent-orange-light));
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--color-accent-orange);
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.5s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.6);
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.full-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.ls-background-masked {
    position: fixed;
    inset: 0;
    z-index: 2;
    top: 80px;
    opacity: 1;
    filter: brightness(0.9) blur(0px);
    will-change: filter;
    pointer-events: none;
}


.hero-content {
    position: absolute;
    inset: 0;
    z-index: 110;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    pointer-events: none;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--color-accent-orange);
    text-shadow: 0 0 40px rgba(255, 165, 0, 0.8), 0 0 80px rgba(255, 165, 0, 0.4);
    margin: 0 0 1.5rem 0;
    letter-spacing: 3px;
    animation: glow-pulse 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-light);
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.5);
    margin: 0 0 2rem 0;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.8;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 300;
}

@keyframes glow-pulse {

    0%,
    100% {
        text-shadow: 0 0 40px rgba(255, 165, 0, 0.8), 0 0 80px rgba(255, 165, 0, 0.4);
    }

    50% {
        text-shadow: 0 0 60px rgba(255, 165, 0, 1), 0 0 100px rgba(255, 165, 0, 0.6);
    }
}


.page-background {
    position: fixed;
    inset: 0;
    z-index: 3;
    top: 80px;
    opacity: 1;
    pointer-events: none;
    filter: brightness(1.0) saturate(0.6);
}


.photo-zone {
    position: absolute;
    width: 50%;
    height: 50%;
    overflow: hidden;

    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.photo-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) saturate(0.6);
}


.photo-zone--top-left {
    top: 0;
    left: 0;
}

.photo-zone--top-right {
    top: 0;
    left: 50%;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4), inset -5px 0 15px rgba(0, 0, 0, 0.3);
}

.photo-zone--bottom-left {
    top: 50%;
    left: 0;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4), inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.photo-zone--bottom-right {
    top: 50%;
    left: 50%;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4), inset -5px 0 15px rgba(0, 0, 0, 0.3), inset 0 -5px 15px rgba(0, 0, 0, 0.3);
}


.fissure {
    position: absolute;
    pointer-events: none;
    z-index: 15;
    filter: drop-shadow(0 0 10px var(--glow-color-orange));
    animation: fissure-flicker 1.5s ease-in-out infinite;
}

.fissure--horizontal {
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    transform: translateY(-50%);
    background: linear-gradient(to right, transparent, var(--color-accent-orange), transparent);
}

.fissure--vertical {
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, transparent, var(--color-accent-orange), transparent);
}

@keyframes fissure-flicker {

    0%,
    100% {
        opacity: 0.6;
        filter: drop-shadow(0 0 10px var(--glow-color-orange));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 20px var(--glow-color-orange));
    }
}


.center-bolt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    width: var(--bolt-size);
    pointer-events: none;
    will-change: filter;
    opacity: 1;
    filter: brightness(0.8);
}


.center-bolt::before {
    content: '';
    position: absolute;
    inset: -60%;
    background-image: url("/img/image_eclaircie.png");
    background-size: cover;
    background-position: center;


    mask-image: url("/img/instantrp_byopo_eclair.png");
    -webkit-mask-image: url("/img/instantrp_byopo_eclair.png");
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;

    filter: brightness(0.75);
    z-index: 1;
}

.bolt-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 var(--glow-blur) var(--glow-color-orange));
    animation: bolt-glow 2s ease-in-out infinite;
    z-index: 2;
}


@keyframes bolt-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 var(--glow-blur) var(--glow-color-orange));
    }

    50% {
        filter: drop-shadow(0 0 calc(var(--glow-blur) * 1.5) var(--glow-color-orange));
    }
}


.home-content {
    position: absolute;
    inset: 0;
    z-index: 105;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    padding: 4rem 3rem;
    align-items: center;
    justify-content: space-between;
    overflow-y: auto;
    max-height: 100vh;
    pointer-events: auto;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 25%, rgba(0, 0, 0, 0.1) 75%, rgba(0, 0, 0, 0.3) 100%);
}

.home-hero {
    z-index: 81;
    animation: slide-in-right 1s ease-out;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.4) 0%, rgba(20, 10, 0, 0.2) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 165, 0, 0.15);
    backdrop-filter: blur(10px);
}

.hero-content-wrapper {
    max-width: 500px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.badge-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin: 0 0 0.8rem 0;
    letter-spacing: 3px;
    line-height: 1.15;
    animation: glow-pulse 2.5s ease-in-out infinite;
    text-transform: uppercase;
}

.title-main {
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.2);
    display: inline-block;
    transition: all 0.3s ease-out;
}

.title-accent {
    color: #ffa500;
    text-shadow: 0 0 40px rgba(255, 165, 0, 0.8), 0 0 80px rgba(255, 165, 0, 0.4);
    display: inline-block;
    transition: all 0.3s ease-out;
    margin-left: 0.5rem;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #eaeaea;
    margin: 0 0 1.8rem 0;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
}

.hero-description {
    font-size: 1.05rem;
    color: #c8c8c8;
    line-height: 1.8;
    margin: 0 0 2.8rem 0;
    font-weight: 400;
    max-width: 480px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.action-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--px, 50%) var(--py, 50%), rgba(255, 255, 255, 0.2), transparent 60%);
    opacity: 0;
    pointer-events: none;
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn.primary {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: #000;
    border: 2px solid #ff9500;
}

.action-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.action-btn.primary:active {
    transform: translateY(-1px) scale(0.98);
}

.action-btn.secondary {
    background: linear-gradient(135deg, #5865f2 0%, #7289da 100%);
    color: white;
    border: 2px solid #6c77d4;
}

.action-btn.secondary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5), 0 0 20px rgba(88, 101, 242, 0.3);
}

.btn-text {
    font-weight: 600;
}

.server-stats-section {
    z-index: 81;
    animation: slide-in-left 1s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: none;
    backdrop-filter: none;
}

.server-stats {
    z-index: 81;
}

.stats-card {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.35) 0%, rgba(12, 12, 18, 0.3) 100%);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 50px rgba(255, 165, 0, 0.12);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease-out;
}

.stats-card:hover {
    border-color: rgba(255, 165, 0, 0.5);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4), 0 0 60px rgba(255, 165, 0, 0.2);
    transform: translateY(-5px);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #ffa500 100%);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.4);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.2rem;
    padding-bottom: 1.8rem;
    border-bottom: 2px solid rgba(255, 165, 0, 0.25);
    gap: 1rem;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.25), transparent);
    padding: 1.2rem 1.5rem 1.8rem;
    margin: -2.5rem -2.5rem 2rem -2.5rem;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #00ff00;
    box-shadow: 0 0 12px #00ff00, 0 0 24px rgba(0, 255, 0, 0.4);
    animation: pulse-glow 2.5s ease-in-out infinite;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 15px #00ff00, 0 0 30px rgba(0, 255, 0, 0.3);
}

.status-text {
    color: #c0c0c0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.server-count {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffda6b;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 30px rgba(255, 184, 77, 1), 0 4px 12px rgba(0, 0, 0, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 165, 0, 0.08) 100%);
    border-radius: 10px;
    border: 1.5px solid rgba(255, 165, 0, 0.28);
    transition: all 0.35s cubic-bezier(0.4, 0.0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent, rgba(255, 165, 0, 0.15), transparent);
    transition: all 0.6s ease-out;
    opacity: 0;
}

.stat-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 165, 0, 0.15) 100%);
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 165, 0, 0.45);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.25), inset 0 0 15px rgba(255, 165, 0, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
    animation: shimmer 0.6s ease-out;
}

@keyframes shimmer {
    0% {
        transform: translate(-100%, -100%) rotate(45deg);
    }

    100% {
        transform: translate(100%, 100%) rotate(45deg);
    }
}

.stat-value {
    font-size: 2.3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.6rem;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.8), 0 4px 12px rgba(0, 0, 0, 1);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.8rem;
    color: #f0f0f0;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    margin-bottom: 0.4rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.stat-sub {
    font-size: 0.72rem;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, rgba(15, 15, 20, 0.4) 0%, rgba(12, 12, 18, 0.35) 100%);
    border-radius: 8px;
    border: 1.5px solid rgba(255, 165, 0, 0.25);
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease-out;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 165, 0, 0.12) 100%);
    border-color: rgba(255, 165, 0, 0.35);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(255, 165, 0, 0.2);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item i {
    color: var(--color-accent-orange);
    font-size: 1rem;
    transition: all 0.3s ease-out;
    flex-shrink: 0;
    text-shadow: 0 0 12px rgba(255, 165, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.feature-item:hover i {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 15px rgba(255, 165, 0, 1);
}

.feature-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease-out;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.feature-item:hover span {
    color: #fff;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 15px #00ff00, 0 0 30px rgba(0, 255, 0, 0.3);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 20px #00ff00, 0 0 40px rgba(0, 255, 0, 0.5);
    }
}


@media (max-width: 1200px) {
    .home-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        padding: 3.5rem 2.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .server-stats-section {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .home-content {
        padding: 2.5rem 1.5rem;
        gap: 3rem;
        max-height: auto;
        overflow-y: auto;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .server-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .action-btn {
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }

    .stats-card {
        padding: 1.8rem;
    }

    .card-header {
        margin-bottom: 1.8rem;
        padding-bottom: 1.4rem;
    }

    .stat-value {
        font-size: 1.8rem;
    }

    .server-count {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .home-content {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 1.5px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.8rem;
    }

    .action-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .btn-text {
        font-weight: 600;
    }

    .action-btn i {
        font-size: 0.85rem;
    }

    .stats-card {
        padding: 1.5rem;
    }

    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .server-count {
        font-size: 1.5rem;
    }

    .feature-item {
        padding: 0.85rem 1rem;
        font-size: 0.8rem;
    }

    .feature-item i {
        font-size: 0.9rem;
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .photo-zone img,
    .bolt-image {
        animation: none;
        transition: none;
    }
}

.action-btn:focus-visible,
.nav-link:focus-visible,
.social-link:focus-visible {
    outline: 2px solid var(--color-accent-orange);
    outline-offset: 2px;
}

* {
    transition-property: color, background-color, border-color, text-shadow, box-shadow, transform, opacity;
}

body {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media print {

    .navbar,
    .center-bolt,
    .fissure {
        display: none;
    }
}


.main-content {
    position: relative;
    z-index: 500;
    scroll-behavior: smooth;
    background: transparent;
}

.main-content::before {
    content: '';
    position: fixed;
    inset: 0;
    top: 80px;
    background: radial-gradient(circle at center, rgba(255, 165, 0, 0.05), rgba(0, 0, 0, 0.5));
    z-index: 1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    color: white;
    z-index: 1000;
    text-shadow: 0 0 30px rgba(255, 166, 0, 0.788);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.page-desc {
    font-size: 1.2rem;
    text-align: center;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}


.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 2;
}

.hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: rgba(255, 165, 0, 0.15);
    border: 2px solid var(--color-accent-orange);
    border-radius: 50px;
    color: var(--color-accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    margin: 0 0 1rem 0;
    letter-spacing: 4px;
    text-shadow: 0 0 40px rgba(255, 165, 0, 0.6);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-desc {
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-light);
    animation: fadeIn 0.8s ease-out 0.6s both;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    transform: translateX(0);
}

.cta-primary {
    background: linear-gradient(135deg, var(--color-accent-orange) 0%, #ff8c00 100%);
    color: #000;
    box-shadow: 0 8px 25px rgba(255, 165, 0, 0.4);
    border-color: var(--color-accent-orange);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.6);
}

.cta-secondary {
    background: transparent;
    color: var(--color-accent-orange);
    border-color: var(--color-accent-orange);
    box-shadow: inset 0 0 20px rgba(255, 165, 0, 0.1);
}

.cta-secondary:hover {
    background: rgba(255, 165, 0, 0.15);
    box-shadow: inset 0 0 30px rgba(255, 165, 0, 0.3), 0 0 20px rgba(255, 165, 0, 0.3);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s ease-out 1s both;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--color-accent-orange);
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.6);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.4rem;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(0, 0, 0, 0.75) 100%);
    border-top: 1px solid rgba(255, 165, 0, 0.1);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(255, 165, 0, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    border: 2px solid rgba(255, 165, 0, 0.15);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 165, 0, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.15);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px solid var(--color-accent-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-accent-orange);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--color-accent-orange) 0%, #ff8c00 100%);
    color: #000;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin: 0 0 1rem 0;
    color: var(--text-white);
    font-weight: 700;
}

.feature-card p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}


.gallery-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    group: hover;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.gallery-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-info {
    opacity: 1;
}

.gallery-info span {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}


.events-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(5, 5, 5, 0.95) 100%);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.6);
    border-left: 4px solid var(--color-accent-orange);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.15);
    transform: translateX(5px);
}

.event-day {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    color: var(--color-accent-orange);
    text-align: center;
}

.event-details h3 {
    margin: 0 0 0.5rem 0;
    color: var(--text-white);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.event-details p {
    margin: 0 0 0.8rem 0;
    color: var(--text-light);
    line-height: 1.6;
}

.time {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 4px;
    color: var(--color-accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
}


.contact-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.08) 0%, rgba(255, 165, 0, 0.02) 100%);
    border: 2px solid rgba(255, 165, 0, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 165, 0, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent-orange);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.2);
}

.contact-item:hover::before {
    opacity: 1;
}

.contact-item i {
    font-size: 3rem;
    color: var(--color-accent-orange);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(-10deg);
}

.contact-item h3 {
    font-size: 1.4rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-day {
        text-align: left;
    }
}


.footer {
    background: linear-gradient(135deg, #050505 0%, #1a0a00 50%, #050505 100%);
    border-top: 2px solid rgba(255, 165, 0, 0.5);
    color: var(--text-white);
    padding: 4rem 0 0 0;
    box-shadow: 0 -15px 50px rgba(255, 165, 0, 0.2), inset 0 1px 0 rgba(255, 165, 0, 0.1);
    position: relative;
    z-index: 200;
    margin-top: auto;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-orange), transparent);
    opacity: 0.5;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent-orange);
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.4), 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease-out;
    position: relative;
    padding-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-title i {
    font-size: 1.3rem;
    margin: 0;
    transition: all 0.3s ease-out;
    color: var(--color-accent-orange);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-orange), transparent);
    box-shadow: 0 0 10px var(--color-accent-orange);
}

.footer-title:hover {
    text-shadow: 0 0 25px rgba(255, 165, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
    transform: translateX(5px);
}

.footer-title:hover i {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 12px var(--color-accent-orange));
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease-out;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.footer-links a i {
    color: var(--color-accent-orange);
    width: 18px;
    text-align: center;
    transition: all 0.3s ease-out;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--color-accent-orange);
    transform: translateX(10px);
    text-shadow: 0 0 12px rgba(255, 165, 0, 0.6);
}

.footer-links a:hover i {
    transform: scale(1.3) rotate(-15deg);
    filter: drop-shadow(0 0 8px var(--color-accent-orange));
}


.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 165, 0, 0.08);
    color: var(--color-accent-orange);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 6px;
    transition: all 0.3s ease-out;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-link i {
    font-size: 1rem;
    transition: all 0.3s ease-out;
}

.social-link::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.5s ease-out;
}

.social-link:hover {
    background: rgba(255, 165, 0, 0.15);
    border-color: var(--color-accent-orange);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.4), inset 0 0 15px rgba(255, 165, 0, 0.1);
    transform: translateY(-3px);
    color: #fff;
}

.social-link:hover i {
    transform: scale(1.3) rotate(15deg);
}

.social-link:hover::before {
    left: 100%;
}

.footer-contact {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-contact p {
    margin: 0.8rem 0;
}

.footer-contact strong {
    color: var(--color-accent-orange);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.3rem;
}

.footer-contact strong i {
    font-size: 1rem;
}

.footer-contact a {
    color: var(--color-accent-orange);
    text-decoration: none;
    transition: all 0.3s ease-out;
    text-shadow: 0 0 8px rgba(255, 165, 0, 0.3);
}

.footer-contact a:hover {
    text-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
    transform: translateY(-2px);
}


.footer-divider {
    height: 3px;
    margin: 2.5rem 0;
    background: linear-gradient(to right, transparent, var(--color-accent-orange), transparent);
    box-shadow: 0 0 20px var(--color-accent-orange), 0 0 40px rgba(255, 165, 0, 0.3);
    animation: divider-pulse 2s ease-in-out infinite;
}

@keyframes divider-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px var(--color-accent-orange), 0 0 40px rgba(255, 165, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 30px var(--color-accent-orange), 0 0 60px rgba(255, 165, 0, 0.5);
    }
}

.footer-bottom {
    background: #000000;
    border-top: 1px solid rgba(255, 165, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
}

.brand-name {
    color: var(--color-accent-orange);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
}

.footer-credit {
    color: rgba(255, 165, 0, 0.8);
    font-size: 0.85rem;
}

.credit-highlight {
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.8);
}

@keyframes glow-pulse {

    0%,
    100% {
        text-shadow: 0 0 5px var(--color-accent-orange);
    }

    50% {
        text-shadow: 0 0 20px var(--color-accent-orange);
    }
}

@keyframes float-up {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        transform: translateY(-20px);
        opacity: 1;
    }
}

@keyframes slide-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (min-width: 1920px) {
    :root {
        --bolt-size: 550px;
    }

    .navbar {
        padding: 1.5rem 4rem;
    }

    .navbar-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .navbar-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }
}


@media (max-width: 768px) {
    :root {
        --bolt-size: 300px;
    }


    .menu-toggle {
        display: flex;
    }

    .navbar-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 10, 0, 0.95) 100%);
        padding: 2rem 1.5rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--transition-slow);
        border-bottom: 2px solid rgba(255, 165, 0, 0.3);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        z-index: 999;
    }

    .navbar-menu.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 1rem;
        justify-content: center;
        border-radius: 6px;
        background: rgba(255, 165, 0, 0.05);
        font-size: 0.9rem;
    }

    .nav-link:hover {
        background: rgba(255, 165, 0, 0.15);
    }

    .navbar-actions {
        display: flex;
        gap: 0.5rem;
    }

    .btn-join,
    .btn-join-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }

    .btn-join-secondary {
        display: none;
    }

    .logo-img {
        height: 35px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-links {
        gap: 0.6rem;
    }

    .footer-social {
        justify-content: flex-start;
        gap: 0.7rem;
    }

    .social-link {
        padding: 0.7rem 1rem;
        font-size: 0.75rem;
        border-radius: 4px;
    }

    .social-link i {
        font-size: 0.9rem;
    }

    .footer-bottom-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .navbar-logo {
        gap: 0.5rem;
    }

    .navbar-text {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .navbar-text i {
        font-size: 1rem;
    }

    .logo-img {
        height: 40px;
    }

    .footer-container {
        padding: 0 1rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-title {
        font-size: 0.9rem;
    }

    .footer-title i {
        font-size: 0.9rem;
    }

    .footer-links {
        gap: 0.5rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding-left: 1.2rem;
    }

    .footer-links a i {
        width: 16px;
        font-size: 0.8rem;
    }

    .footer-social {
        gap: 0.5rem;
        flex-direction: column;
    }

    .social-link {
        padding: 0.6rem 0.8rem;
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        width: 100%;
        justify-content: center;
    }

    .footer-contact {
        font-size: 0.85rem;
    }

    .footer-contact p {
        margin: 0.6rem 0;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .footer {
        padding: 1.5rem 0 1rem;
    }
}


@media (min-width: 1920px) {
    :root {
        --bolt-size: 550px;
    }
}

@media (max-width: 768px) {
    :root {
        --bolt-size: 300px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .social-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }

    .footer-bottom-content {
        padding: 0 1.5rem;
    }

    .footer {
        padding: 2.5rem 0 1.5rem;
    }
}