/* ===== GLOBAL STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    /* Updated color scheme for a more modern cyberpunk FiveM feel */
    --primary-color: #ff7700;
    --secondary-color: #ff3e7f;
    --accent-color: #9b59d0;
    --dark-color: #0a0a10;
    --dark-accent: #131522;
    --light-color: #f0f0f0;
    --gray-color: #2a2a3a;
    --text-color: #e0e0e0;
    
    /* Neon effects and glows */
    --transition: all 0.3s ease;
    --primary-glow: 0 0 7px rgba(255, 119, 0, 0.7), 0 0 10px rgba(255, 119, 0, 0.4), 0 0 21px rgba(255, 119, 0, 0.2);
    --secondary-glow: 0 0 7px rgba(255, 62, 127, 0.7), 0 0 10px rgba(255, 62, 127, 0.4), 0 0 21px rgba(255, 62, 127, 0.2);
    --accent-glow: 0 0 7px rgba(155, 89, 208, 0.7), 0 0 10px rgba(155, 89, 208, 0.4), 0 0 21px rgba(155, 89, 208, 0.2);
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), #ff9900);
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), #ff1f5a);
    --accent-gradient: linear-gradient(135deg, var(--accent-color), #7b2cbf);
    --dark-gradient: linear-gradient(135deg, var(--dark-color), #151528);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Rajdhani', 'Poppins', sans-serif;
    background-color: var(--dark-color);
    background-image: radial-gradient(circle at top right, rgba(0, 204, 255, 0.05), transparent 60%),
                      radial-gradient(circle at bottom left, rgba(155, 89, 208, 0.05), transparent 60%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Particles */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(circle at center, transparent 0%, var(--dark-color) 70%);
}

.bg-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--primary-color) 1px, transparent 1px),
        radial-gradient(var(--secondary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.07;
    animation: particlesFade 15s infinite alternate;
}

@keyframes particlesFade {
    0% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 0.05;
        transform: scale(1.05);
    }
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

/* Reveal Text Animation */
.reveal-text {
    position: relative;
}

.reveal-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    animation: revealText 1.5s cubic-bezier(.77,0,.18,1) forwards;
    transform-origin: right;
}

@keyframes revealText {
    0% {
        transform: scaleX(1);
    }
    100% {
        transform: scaleX(0);
    }
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Rajdhani', sans-serif;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 204, 255, 0.25);
}

.primary:hover {
    box-shadow: 0 5px 20px rgba(0, 204, 255, 0.4);
    transform: translateY(-2px);
}

.secondary {
    background: transparent;
    color: var(--light-color);
    border: 2px solid var(--secondary-color);
    margin-left: 15px;
    position: relative;
    z-index: 1;
}

.secondary:hover {
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 62, 127, 0.25);
}

.secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary:hover::after {
    opacity: 1;
}

/* Glow Effect */
.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    box-shadow: var(--primary-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::after {
    opacity: 1;
    animation: glowPulse 1.5s infinite alternate;
}

@keyframes glowPulse {
    0% {
        box-shadow: var(--primary-glow);
    }
    100% {
        box-shadow: 0 0 10px rgba(0, 204, 255, 0.8), 0 0 20px rgba(0, 204, 255, 0.5), 0 0 30px rgba(0, 204, 255, 0.3);
    }
}

.neon-effect {
    position: relative;
    overflow: hidden;
    text-shadow: 0 0 5px rgba(255, 62, 127, 0.7);
}

.neon-effect:hover {
    text-shadow: 0 0 5px rgba(255, 62, 127, 0.7), 0 0 10px rgba(255, 62, 127, 0.5), 0 0 15px rgba(255, 62, 127, 0.3);
}

/* 3D Hover Effects */
.hover3d {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hover3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hover3d .stat-box-inner,
.hover3d .feature-card-inner,
.hover3d .product-card-inner,
.hover3d .step-content {
    transition: transform 0.3s ease;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.hover3d:hover .stat-box-inner,
.hover3d:hover .feature-card-inner,
.hover3d:hover .product-card-inner,
.hover3d:hover .step-content {
    transform: translateZ(20px);
}

/* Glow Hover for Social Links */
.glow-hover {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glow-hover::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: conic-gradient(
        var(--primary-color),
        var(--secondary-color),
        var(--accent-color),
        var(--primary-color)
    );
    top: -25%;
    left: -25%;
    z-index: -1;
    border-radius: 50%;
    animation: rotateGlow 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-hover:hover::before {
    opacity: 0.3;
}

@keyframes rotateGlow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background: rgba(10, 10, 16, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 204, 255, 0.1);
}

header.sticky {
    padding: 15px 0;
    background: rgba(10, 10, 16, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
}

.logo span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-left: 5px;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 5px;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    box-shadow: var(--primary-glow);
    animation: widthPulse 3s infinite;
}

@keyframes widthPulse {
    0% {
        width: 0;
        opacity: 0.5;
    }
    50% {
        width: 100%;
        opacity: 1;
    }
    100% {
        width: 0;
        opacity: 0.5;
    }
}

.nav-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--light-color);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
    box-shadow: var(--primary-glow);
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('../images/gallery3.jpg') no-repeat center center;
    background-size: cover;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 16, 0.85) 0%,
        rgba(10, 10, 16, 0.7) 50%,
        rgba(10, 10, 16, 0.9) 100%
    );
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 204, 255, 0.15) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, rgba(255, 62, 127, 0.15) 0%, transparent 20%);
    opacity: 0.7;
    animation: particlesFloat 20s infinite alternate;
}

@keyframes particlesFloat {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 10% 20%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--light-color);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: 'Orbitron', sans-serif;
    text-shadow: 0 0 10px rgba(0, 204, 255, 0.5);
    position: relative;
}

/* Glitch Effect */
.glitch {
    position: relative;
    color: var(--light-color);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, 900px, 0, 0);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--secondary-color);
    animation: glitch-animation-1 2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 1px 0 var(--primary-color);
    animation: glitch-animation-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-animation-1 {
    0% {
        clip: rect(40px, 900px, 44px, 0);
    }
    20% {
        clip: rect(89px, 900px, 93px, 0);
    }
    40% {
        clip: rect(36px, 900px, 100px, 0);
    }
    60% {
        clip: rect(62px, 900px, 78px, 0);
    }
    80% {
        clip: rect(15px, 900px, 78px, 0);
    }
    100% {
        clip: rect(67px, 900px, 97px, 0);
    }
}

@keyframes glitch-animation-2 {
    0% {
        clip: rect(17px, 900px, 41px, 0);
    }
    20% {
        clip: rect(54px, 900px, 59px, 0);
    }
    40% {
        clip: rect(71px, 900px, 86px, 0);
    }
    60% {
        clip: rect(48px, 900px, 54px, 0);
    }
    80% {
        clip: rect(82px, 900px, 90px, 0);
    }
    100% {
        clip: rect(19px, 900px, 46px, 0);
    }
}

.cyberpunk-text {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Rajdhani', sans-serif;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

/* Server Status */
.server-status {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(19, 21, 34, 0.7);
    border-radius: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 204, 255, 0.2);
    display: inline-flex;
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 5px;
}

.status-indicator.online {
    background: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.8);
    animation: pulse 1.5s infinite;
}

.status-indicator.offline {
    background: #e74c3c;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.8);
}

.status-text {
    font-weight: 600;
    color: var(--light-color);
    margin-right: 10px;
}

.player-count {
    color: var(--primary-color);
    font-weight: 600;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 10px;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 0;
    background-color: var(--gray-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/noise.png');
    opacity: 0.05;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.1;
    animation: orbMove 20s infinite alternate;
}

@keyframes orbMove {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-20px) translateX(-20px);
        opacity: 0.1;
    }
    100% {
        transform: translateY(20px) translateX(20px);
        opacity: 0.05;
    }
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeSlideUp 0.6s forwards;
}

.about-text p:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-stats {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 119, 0, 0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 119, 0, 0.5);
}

.stat-box h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--light-color);
}

.counter {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    opacity: 0.4;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(150px);
    opacity: 0.1;
    top: -100px;
    right: -100px;
    z-index: 0;
    animation: pulseFade 10s infinite alternate;
}

@keyframes pulseFade {
    0% {
        opacity: 0.05;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.15;
        transform: scale(1.1);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: rgba(51, 51, 51, 0.3);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: all 0.5s ease;
}

.feature-card:hover::after {
    top: 100%;
    left: 100%;
}

.feature-card-inner {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    z-index: -1;
    animation: iconSpin 10s linear infinite;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--light-color);
}

/* Gallery Section with Swiper */
.gallery {
    background-color: var(--dark-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(155, 89, 208, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.gallery-swiper {
    width: 100%;
    padding-bottom: 50px;
    position: relative;
    overflow: visible;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.gallery-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.3s 0.1s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
    opacity: 1;
}

/* Swiper Navigation and Pagination Customization */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet {
    background: var(--text-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* ===== JOIN SECTION ===== */
.join {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--secondary-color);
    filter: blur(150px);
    opacity: 0.1;
    bottom: -100px;
    left: -100px;
    z-index: 0;
    animation: orbitJoin 15s infinite alternate;
}

@keyframes orbitJoin {
    0% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(50px) translateY(-50px);
    }
    100% {
        transform: translateX(0) translateY(0);
    }
}

.join-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.join-text {
    flex: 2;
    min-width: 300px;
}

.join-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(51, 51, 51, 0.3);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s ease;
}

.step:hover::before {
    left: 100%;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: -1;
    animation: pulse 2s infinite;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--light-color);
}

.join-links {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.join-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.join-link.discord {
    background: #ff7700;
    color: white;
}

.join-link.fivem {
    background: #ff9900;
    color: white;
}

.join-link i {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.join-link span {
    position: relative;
    z-index: 1;
}

.join-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    filter: blur(5px);
    transition: all 0.5s ease;
}

.join-link:hover::before {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    filter: blur(20px);
    opacity: 0.3;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--gray-color);
    padding: 70px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, var(--dark-color), var(--primary-color), var(--secondary-color), var(--dark-color));
    opacity: 0.5;
}

footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        circle at center bottom,
        var(--primary-color) 0%,
        transparent 70%
    );
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 119, 0, 0.5);
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links, .footer-socials {
    flex: 1;
    min-width: 200px;
}

.footer-links h4, .footer-socials h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-color);
    position: relative;
    display: inline-block;
}

.footer-links h4::after, .footer-socials h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

.footer-links ul li a:hover::before {
    opacity: 1;
    box-shadow: 0 0 5px var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.social-links i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--dark-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 50px;
        clip-path: circle(0px at top right);
        transition: clip-path 0.5s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        clip-path: circle(1500px at top right);
    }
    
    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
        transition-delay: calc(0.1s * var(--i));
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .hero-content h1 {
        font-size: 2.7rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .about-content, .join-content {
        flex-direction: column;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn.secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links, .footer-socials {
        margin-top: 30px;
    }
    
    .product-card {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .info-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .server-status {
        flex-direction: column;
        gap: 5px;
    }
    
    .player-count {
        border-left: none;
        padding-left: 0;
    }
    
    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

@keyframes rotateIn {
    0% {
        transform: rotate(-10deg) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

.shimmer-effect {
    position: relative;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    transition: opacity 0.3s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 119, 0, 0.7);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    transition: transform 0.2s ease;
    box-shadow: 0 0 15px rgba(255, 119, 0, 0.3);
}

.cursor-dot.cursor-active {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: var(--secondary-color);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.7);
}

.cursor-outline.cursor-active {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--secondary-color);
    background-color: rgba(255, 153, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 153, 0, 0.3);
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-outline {
        display: none;
    }
}

/* ===== GALLERY POPUP ===== */
.gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s forwards;
    border: 2px solid rgba(255, 119, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 2rem;
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
    text-shadow: 0 0 10px var(--primary-color);
}

.close-popup:hover {
    color: var(--secondary-color);
    transform: rotate(90deg);
    text-shadow: 0 0 15px var(--secondary-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); }
    to { transform: scale(1); }
}

/* Shop Section */
.shop {
    background-color: var(--dark-color);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.shop::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.15), transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
    z-index: 0;
}

.shop::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 62, 127, 0.1), transparent 70%);
    bottom: -250px;
    left: -250px;
    border-radius: 50%;
    z-index: 0;
}

.shop-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.9;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.2) 0%, rgba(0, 0, 0, 0) 60%);
    z-index: 0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.product-card-inner {
    position: relative;
    z-index: 1;
}

.product-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff7700;
    color: #fff;
    padding: 5px 15px;
    border-radius: 0 0 0 10px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-top: 15px;
    margin-bottom: 20px;
    color: #fff;
}

.product-price {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff7700;
    text-shadow: 0 0 10px rgba(255, 119, 0, 0.5);
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.product-features li {
    margin-bottom: 10px;
    color: #ddd;
    display: flex;
    align-items: flex-start;
}

.product-features li i {
    color: #ff7700;
    margin-right: 10px;
    margin-top: 5px;
}

/* Specific VIP Card Styles */
.product-card.bronze:before {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.product-card.silver:before {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.product-card.gold:before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.product-card.diamond:before {
    background: linear-gradient(135deg, rgba(185, 242, 255, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.product-card.cartof:before {
    background: linear-gradient(135deg, rgba(255, 119, 0, 0.4) 0%, rgba(0, 0, 0, 0) 60%);
    border: 1px solid rgba(255, 119, 0, 0.3);
}

.product-card.mafie-custom:before {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.product-card.id-special:before {
    background: linear-gradient(135deg, rgba(106, 90, 205, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.product-card.staff-grade:before {
    background: linear-gradient(135deg, rgba(46, 139, 87, 0.3) 0%, rgba(0, 0, 0, 0) 60%);
}

.product-card.cartof {
    border: 1px solid rgba(255, 119, 0, 0.5);
    box-shadow: 0 5px 15px rgba(255, 119, 0, 0.2);
}

.product-card.cartof:hover {
    box-shadow: 0 15px 30px rgba(255, 119, 0, 0.3);
}

.product-card.cartof .product-price {
    color: #ff9900;
}

.product-card.diamond .product-price {
    color: #b9f2ff;
    text-shadow: 0 0 10px rgba(185, 242, 255, 0.5);
}

.shop-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: var(--dark-accent);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 204, 255, 0.1);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--light-color);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 16, 0.9);
    z-index: 2000;
    overflow: auto;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--dark-accent);
    margin: 10% auto;
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: modalFadeIn 0.3s ease forwards;
    border: 1px solid var(--primary-color);
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--secondary-color);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--light-color);
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
}

.checkout-details {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.checkout-details p {
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
}

.checkout-details span {
    font-weight: 600;
    color: var(--primary-color);
}

.checkout-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--light-color);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(0, 204, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    color: var(--light-color);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(0, 204, 255, 0.2);
}

#paypal-button-container {
    margin-top: 25px;
}

/* Payment Methods Section */
.payment-methods {
    margin-top: 20px;
}

.payment-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.payment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    background: #1e1e2e;
    border: 1px solid #404060;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.payment-btn:hover {
    background: #2d2d45;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 104, 241, 0.3);
}

/* Modal Improvements */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    background: #1a1a2e;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(94, 104, 241, 0.5);
    padding: 30px;
    width: 90%;
    max-width: 500px;
    border: 1px solid #404060;
    color: #fff;
    animation: modalFadeIn 0.3s ease forwards;
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #5e68f1;
}

/* Payment Instructions */
.payment-instructions {
    margin: 20px 0;
    text-align: center;
}

.payment-address {
    background: #2a2a40;
    padding: 12px;
    border-radius: 5px;
    margin: 15px 0;
    font-family: monospace;
    font-size: 16px;
    word-break: break-all;
    border: 1px solid #3e3e60;
}

/* Paysafecard Input */
#paysafe-code {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    background: #2a2a40;
    border: 1px solid #3e3e60;
    border-radius: 5px;
    color: #fff;
    font-family: monospace;
    letter-spacing: 2px;
    text-align: center;
}

.error-message {
    color: #ff6b6b;
    margin-top: 5px;
    font-size: 14px;
}

/* Success Modal */
.modal-content.success {
    text-align: center;
}

.success-icon {
    font-size: 60px;
    color: #4cd137;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .payment-buttons {
        flex-direction: column;
    }
    
    .payment-btn {
        width: 100%;
    }
    
    .modal-content {
        padding: 20px;
        width: 95%;
    }
}

/* Admin Panel Styles */
.modal-content.admin-panel {
    max-width: 600px;
    padding: 25px;
}

.admin-section {
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.admin-section h4 {
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--primary-color);
    border-bottom: 1px solid rgba(0, 204, 255, 0.3);
    padding-bottom: 8px;
}

.ip-list {
    margin-bottom: 15px;
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
}

.ip-list ul {
    list-style: none;
    padding: 0;
}

.ip-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    margin-bottom: 5px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-family: monospace;
}

.btn-remove {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 3px 8px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    background: #ff1f5a;
}

#block-ip {
    margin-right: 10px;
    font-family: monospace;
}

#add-block-ip {
    padding: 8px 12px;
    margin-top: 10px;
} 