@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --gradient-1: #7148b5;
    --gradient-2: #8769e9;
    --gradient-3: #715dd3;
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --text-primary: #ffffff;
    --text-secondary: #b4b4c8;
    --accent-glow: rgba(135, 105, 233, 0.4);
    --card-bg: rgba(20, 20, 30, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gradient-1), var(--gradient-3));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--gradient-2), var(--gradient-1));
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(135, 105, 233, 0.2);
    border-top-color: var(--gradient-2);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-spinner-large {
    width: 40px;
    height: 40px;
    border-width: 4px;
}

.loading-spinner-small {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    opacity: 0.6;
}

.loading-text {
    margin-left: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

/* Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(135, 105, 233, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(135, 105, 233, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(50px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(135, 105, 233, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: 3px;
}

/* Glitch Effect */
.glitch {
    position: relative;
    animation: glitchPulse 3s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch::before {
    animation: glitchTop 2s linear infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.glitch::after {
    animation: glitchBottom 2.5s linear infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitchTop {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    92% {
        transform: translate(-2px, -2px);
    }

    94% {
        transform: translate(2px, 1px);
    }

    96% {
        transform: translate(-1px, 2px);
    }
}

@keyframes glitchBottom {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    91% {
        transform: translate(2px, 1px);
    }

    93% {
        transform: translate(-2px, -1px);
    }

    95% {
        transform: translate(1px, -2px);
    }
}

@keyframes glitchPulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

.logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    gap: 0.5rem;
    background: rgba(20, 20, 30, 0.6);
    padding: 0.3rem;
    border-radius: 25px;
    border: 1px solid rgba(135, 105, 233, 0.2);
}

.lang-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    color: white;
    box-shadow: 0 5px 15px var(--accent-glow);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
    background: rgba(135, 105, 233, 0.1);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--gradient-2);
    transition: all 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

/* Free Badge */
.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.089), rgba(0, 200, 100, 0.075));
    border: 2px solid #00ff88;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.116);
}

.free-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 1.5px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.6);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleSlide 1s ease-out backwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-version {
    display: inline-block;
    font-size: 3rem;
    color: var(--gradient-2);
    text-shadow: 0 0 20px var(--accent-glow);
    animation: versionPulse 2s ease-in-out infinite, titleSlide 1s ease-out 0.3s backwards;
}

@keyframes versionPulse {

    0%,
    100% {
        transform: scale(1);
        text-shadow: 0 0 20px var(--accent-glow);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px var(--accent-glow), 0 0 50px var(--accent-glow);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

/* Client Dashboard Access Section */
.client-access-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(113, 72, 181, 0.03), rgba(135, 105, 233, 0.03));
    border-top: 1px solid rgba(135, 105, 233, 0.1);
    border-bottom: 1px solid rgba(135, 105, 233, 0.1);
    position: relative;
    overflow: hidden;
}

.client-access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    height: 100%;
    background: radial-gradient(circle at center, rgba(135, 105, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.client-access-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 3rem;
}

/* CPU Key Login */
.cpukey-login {
    position: relative;
    z-index: 1;
}

.cpukey-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 20, 30, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(135, 105, 233, 0.3);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.cpukey-container:focus-within {
    border-color: var(--gradient-2);
    box-shadow: 0 0 20px rgba(135, 105, 233, 0.4);
}

.cpukey-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cpukey-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-family: 'Orbitron', monospace;
    font-size: 0.95rem;
    padding: 0.75rem;
    outline: none;
    letter-spacing: 1px;
}

.cpukey-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.cpukey-btn {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    border: none;
    border-radius: 40px;
    padding: 0.75rem 2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cpukey-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(135, 105, 233, 0.5);
}

.cpukey-btn .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cpukey-btn:hover .btn-icon {
    transform: translateX(3px);
}

.cpukey-error {
    text-align: center;
    color: #ff4444;
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    color: white;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s;
}

.btn-primary:hover .btn-glow {
    transform: translate(-50%, -50%) scale(2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--gradient-2);
}

.btn-secondary:hover {
    background: var(--gradient-2);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.server-info {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.info-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gradient-2);
    box-shadow: 0 10px 30px var(--accent-glow);
}

.info-icon {
    font-size: 2rem;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-online {
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88;
}

/* Xbox Ring Animation */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.xbox-ring {
    width: 400px;
    height: 400px;
    position: relative;
    animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ring-segment {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: segmentPulse 2s ease-in-out infinite;
}

.ring-segment:nth-child(1) {
    border-top-color: var(--gradient-1);
    animation-delay: 0s;
    filter: drop-shadow(0 0 20px var(--gradient-1));
}

.ring-segment:nth-child(2) {
    border-right-color: var(--gradient-2);
    animation-delay: 0.5s;
    filter: drop-shadow(0 0 20px var(--gradient-2));
}

.ring-segment:nth-child(3) {
    border-bottom-color: var(--gradient-3);
    animation-delay: 1s;
    filter: drop-shadow(0 0 20px var(--gradient-3));
}

.ring-segment:nth-child(4) {
    border-left-color: var(--gradient-1);
    animation-delay: 1.5s;
    filter: drop-shadow(0 0 20px var(--gradient-1));
}

@keyframes segmentPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.title-accent {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    will-change: transform;
    transform: perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--gradient-2);
    box-shadow: 0 20px 60px var(--accent-glow);
}

.card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.card-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Status Section */
.status {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.status-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.dashboard-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.dashboard-card:hover {
    border-color: var(--gradient-2);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.online {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
    }
}

.metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-bar {
    width: 100%;
    height: 10px;
    background: rgba(135, 105, 233, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-3));
    border-radius: 10px;
    transition: width 1s ease-out;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: barGlow 2s ease-in-out infinite;
}

@keyframes barGlow {

    0%,
    100% {
        box-shadow: 0 0 10px var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 20px var(--accent-glow);
    }
}

.metric-value {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    color: var(--gradient-2);
}

.connections {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#connectionsChart {
    width: 100%;
    height: 100%;
}

/* Connect Section */
.connect {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(113, 72, 181, 0.1), rgba(113, 93, 211, 0.1));
    position: relative;
}

.connect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="1" cy="1" r="1" fill="%238769e9" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.connect-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.connect-content {
    max-width: 900px;
    margin: 0 auto;
}

.connect-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.connect-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s;
}

.step:hover {
    transform: translateX(10px);
    border-color: var(--gradient-2);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 100px;
}

.step-content h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.dns-info {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.dns-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.dns-addresses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.dns-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dns-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dns-code {
    background: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--gradient-2);
    border: 1px solid rgba(135, 105, 233, 0.3);
    text-align: center;
}

.download-section {
    align-items: center;
    text-align: center;
}

.download-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    border: none;
    border-radius: 50px;
    color: white;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '⬇';
    margin-right: 0.5rem;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.info-section {
    align-items: center;
    text-align: center;
}

.requirement-text {
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 1px solid rgba(135, 105, 233, 0.2);
    font-size: 0.95rem;
}

.red-text {
    color: #ff4c4c !important;
    font-weight: 600;
}

.code-example {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(135, 105, 233, 0.3);
    border-left: 4px solid var(--gradient-2);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 1rem;
    font-family: 'Courier New', 'Consolas', monospace;
    font-size: 0.95rem;
    color: #00ff88;
    white-space: pre;
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
}

.code-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gradient-2), transparent);
    opacity: 0.5;
}

.code-example:hover {
    border-color: var(--gradient-2);
    box-shadow: 0 5px 30px var(--accent-glow);
}

/* Credits Section */
.credits {
    padding: 5rem 2rem;
    background: var(--bg-primary);
    position: relative;
}

.credits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.credits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.credit-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.credit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.credit-card:hover::before {
    transform: scaleX(1);
}

.credit-card:hover {
    transform: translateY(-5px);
    border-color: var(--gradient-2);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.credit-icon {
    font-size: 2.5rem;
    color: var(--gradient-2);
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(135, 105, 233, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(135, 105, 233, 0.3);
}

.credit-info {
    flex: 1;
}

.credit-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.credit-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.credit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gradient-2);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    background: rgba(135, 105, 233, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(135, 105, 233, 0.2);
}

.credit-link:hover {
    background: rgba(135, 105, 233, 0.2);
    border-color: var(--gradient-2);
    transform: translateX(5px);
}

.credit-link i {
    font-size: 1rem;
}

.credits-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(135, 105, 233, 0.1), rgba(113, 93, 211, 0.05));
    border: 1px solid rgba(135, 105, 233, 0.3);
    border-radius: 15px;
    text-align: center;
}

.credits-note p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(135, 105, 233, 0.2);
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-text {
    color: var(--text-secondary);
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--gradient-2);
    padding-left: 10px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(135, 105, 233, 0.1);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.disclaimer {
    background: rgba(135, 105, 233, 0.05);
    border: 1px solid rgba(135, 105, 233, 0.15);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.disclaimer-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.copyright {
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .xbox-ring {
        width: 300px;
        height: 300px;
        margin-top: 3rem;
    }

    .server-info {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        padding: 2rem;
        transition: right 0.3s;
        border-top: 1px solid rgba(135, 105, 233, 0.2);
    }

    .nav-menu.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .lang-toggle {
        position: absolute;
        top: 70px;
        right: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .status-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .title-version {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: fadeIn 0.5s ease-in;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Top Games Section */
.top-games {
    padding: 80px 0;
    position: relative;
}

.top-games-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.game-card {
    background: var(--card-bg);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.game-card:hover {
    transform: translateX(10px);
    border-color: var(--gradient-2);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.game-card:hover::before {
    opacity: 0.1;
}

.game-rank {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 80px;
    text-align: center;
    opacity: 0.8;
}

.game-banner {
    width: 120px;
    height: 80px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(135, 105, 233, 0.3);
    position: relative;
    overflow: hidden;
}

.game-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-banner-placeholder {
    font-size: 2.5rem;
    opacity: 0.5;
}

.game-info {
    flex: 1;
}

.game-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.game-playtime {
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-playtime::before {
    content: '⏱️';
}

.game-card.loading {
    opacity: 0.6;
    animation: pulse-loading 1.5s ease-in-out infinite;
}

@keyframes pulse-loading {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
}

/* Server Status Cards */
.server-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.server-card {
    background: var(--card-bg);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.server-card:hover {
    transform: translateY(-5px);
    border-color: var(--gradient-2);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.server-card:hover::before {
    opacity: 0.1;
}

.server-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.server-status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
}

.server-status-dot.online {
    background: #0fb391;
    box-shadow: 0 0 10px #0fb391;
    animation: pulse 2s ease-in-out infinite;
}

.server-status-dot.offline {
    background: #ff4444;
    box-shadow: 0 0 10px #ff4444;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.server-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.server-location {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.server-stat {
    text-align: center;
    padding: 0.8rem;
    background: rgba(135, 105, 233, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(135, 105, 233, 0.1);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
}

.stat-value {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gradient-2);
}

/* Responsive */
@media (max-width: 968px) {
    .server-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .server-stats {
        grid-template-columns: 1fr;
    }
}

/* KV Stats Section */
.kv-stats {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.kv-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.kv-card {
    background: var(--card-bg);
    border: 1px solid rgba(135, 105, 233, 0.2);
    border-radius: 15px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.kv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.kv-card:hover {
    transform: translateY(-5px);
    border-color: var(--gradient-2);
    box-shadow: 0 10px 40px var(--accent-glow);
}

.kv-card:hover::before {
    opacity: 0.1;
}

.kv-rank {
    font-size: 3rem;
    line-height: 1;
    flex-shrink: 0;
}

.kv-info {
    flex: 1;
    min-width: 0;
}

.kv-serial {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.3rem;
    word-break: break-all;
}

.kv-gamertag {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.kv-console {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.kv-timer {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kv-timer-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

/* Loading state for KV cards */
.kv-card.loading {
    opacity: 0.6;
    animation: pulse-loading 1.5s ease-in-out infinite;
}

/* KV Serial Glitch Effect */
.kv-glitch-digit {
    display: inline-block;
    font-family: 'Orbitron', monospace;
    color: var(--gradient-2);
    text-shadow:
        0 0 5px rgba(135, 105, 233, 0.5),
        0 0 10px rgba(135, 105, 233, 0.3);
    animation: glitch-flicker 2s ease-in-out infinite;
    transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
    will-change: opacity, transform, filter;
}

.kv-glitch-digit.kv-glitch-intense {
    animation: glitch-intense 0.15s ease-in-out;
    text-shadow:
        0 0 10px rgba(135, 105, 233, 1),
        0 0 20px rgba(135, 105, 233, 0.8),
        3px 0 5px rgba(255, 0, 255, 0.6),
        -3px 0 5px rgba(0, 255, 255, 0.6);
}

.kv-serial-first,
.kv-serial-last {
    font-family: 'Orbitron', monospace;
    color: var(--text-primary);
    text-shadow: 0 0 3px rgba(135, 105, 233, 0.2);
}

@keyframes glitch-flicker {
    0%, 100% {
        text-shadow:
            0 0 5px rgba(135, 105, 233, 0.5),
            0 0 10px rgba(135, 105, 233, 0.3);
    }
    25% {
        text-shadow:
            0 0 8px rgba(135, 105, 233, 0.7),
            0 0 15px rgba(135, 105, 233, 0.4),
            1px 0 3px rgba(255, 0, 255, 0.2),
            -1px 0 3px rgba(0, 255, 255, 0.2);
    }
    50% {
        text-shadow:
            0 0 10px rgba(135, 105, 233, 0.8),
            0 0 20px rgba(135, 105, 233, 0.5),
            2px 0 4px rgba(255, 0, 255, 0.3),
            -2px 0 4px rgba(0, 255, 255, 0.3);
    }
    75% {
        text-shadow:
            0 0 7px rgba(135, 105, 233, 0.6),
            0 0 12px rgba(135, 105, 233, 0.4),
            1px 0 2px rgba(255, 0, 255, 0.2),
            -1px 0 2px rgba(0, 255, 255, 0.2);
    }
}

@keyframes glitch-intense {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-2px, 1px) scale(1.05);
    }
    50% {
        transform: translate(2px, -1px) scale(0.95);
    }
    75% {
        transform: translate(-1px, -1px) scale(1.02);
    }
}

/* Responsive for KV Stats */
@media (max-width: 768px) {
    .kv-list {
        grid-template-columns: 1fr;
    }

    .kv-rank {
        font-size: 2.5rem;
    }

    /* Client Access Section Mobile */
    .client-access-section {
        padding: 4rem 1.5rem;
    }

    .cpukey-container {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-radius: 25px;
    }

    .cpukey-input {
        text-align: center;
        width: 100%;
    }

    .cpukey-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .cpukey-icon {
        font-size: 2rem;
    }
}