/* Variables */
:root {
    --primary: #00f5ff;
    --secondary: #ff006e;
    --accent: #fbff00;
    --dark: #0a0a0a;
    --darker: #050505;
    --light: #ffffff;
    --gray: #808080;
    
    --font-main: 'Space Grotesk', sans-serif;
    --font-title: 'Orbitron', sans-serif;
    --font-mono: 'Rajdhani', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    cursor: none;
}

/* Curseur custom */
#cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.2s;
}

#cursor .cursor-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

#cursor-trail {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

/* Canvas backgrounds */
#canvas3d, #matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#matrix {
    z-index: 1;
    opacity: 0.08;
    transition: opacity 0.5s;
}

.container {
    position: relative;
    z-index: 2;
}

/* Preloader Terminal */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    transition: opacity 0.5s;
}

.terminal-loader {
    width: 500px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary);
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.3);
    font-family: var(--font-mono);
}

.terminal-header {
    background: var(--dark);
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--primary);
}

.terminal-title {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
}

.terminal-controls {
    display: flex;
    gap: 8px;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-btn.red { background: #ff5f56; }
.terminal-btn.yellow { background: #ffbd2e; }
.terminal-btn.green { background: #27c93f; }

.terminal-body {
    padding: 20px;
}

.terminal-line {
    margin-bottom: 15px;
    color: var(--light);
}

.prompt {
    color: var(--secondary);
    font-weight: 700;
}

.typing {
    color: var(--primary);
    animation: typing 2s steps(30) infinite;
}

@keyframes typing {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0%;
    animation: loading 3s ease-in-out forwards;
}

@keyframes loading {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Floating Stats */
.floating-stats {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateX(-10px);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.stat-item i {
    font-size: 24px;
    color: var(--primary);
}

.stat-item span {
    font-size: 24px;
    font-weight: 700;
    color: var(--light);
    font-family: var(--font-title);
}

.stat-item small {
    font-size: 10px;
    color: var(--gray);
    text-transform: uppercase;
}

/* Secret Button */
.secret-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--secondary);
    border-radius: 50%;
    color: var(--secondary);
    font-size: 20px;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s;
}

.secret-btn:hover {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 245, 255, 0.03) 0px,
        rgba(0, 245, 255, 0.03) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100px); }
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

/* Glitch Title */
.glitch-wrapper {
    margin-bottom: 2rem;
}

.glitch-title {
    font-family: var(--font-title);
    font-size: clamp(4rem, 15vw, 10rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    position: relative;
    display: inline-block;
    text-shadow:
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 40px var(--primary);
    animation: glitch-anim 3s infinite;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title::before {
    animation: glitch-top 1.5s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    text-shadow: 2px 0 var(--secondary);
}

.glitch-title::after {
    animation: glitch-bottom 2s infinite reverse;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    text-shadow: -2px 0 var(--accent);
}

@keyframes glitch-anim {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(-2px, 2px); }
    92% { transform: translate(2px, -2px); }
    93% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
}

@keyframes glitch-top {
    0%, 90%, 100% { clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%); }
    91% { clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%); }
    92% { clip-path: polygon(0 5%, 100% 5%, 100% 35%, 0 35%); }
}

@keyframes glitch-bottom {
    0%, 90%, 100% { clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%); }
    91% { clip-path: polygon(0 70%, 100% 70%, 100% 95%, 0 95%); }
    92% { clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%); }
}

/* Subtitle typing */
.subtitle-wrapper {
    font-family: var(--font-mono);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--primary);
    margin-bottom: 3rem;
}

.bracket {
    color: var(--secondary);
    font-weight: 700;
}

.cursor-blink {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Hero Terminal */
.hero-terminal {
    width: 100%;
    max-width: 600px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 20px;
    font-family: var(--font-mono);
    margin-top: 2rem;
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.3);
}

.terminal-header-mini {
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.terminal-output {
    min-height: 100px;
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
    color: var(--light);
    font-size: 14px;
    line-height: 1.6;
}

.terminal-output::-webkit-scrollbar {
    width: 8px;
}

.terminal-output::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

.terminal-output::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.terminal-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-prompt {
    color: var(--primary);
    font-weight: 700;
}

#terminal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--light);
    font-family: var(--font-mono);
    font-size: 16px;
}

#terminal-input::placeholder {
    color: var(--gray);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 13px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 2s infinite;
}

@keyframes wheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0; }
}

.arrow {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.arrow span {
    width: 2px;
    height: 10px;
    background: var(--primary);
    animation: arrow 2s infinite;
}

.arrow span:nth-child(1) { animation-delay: 0s; }
.arrow span:nth-child(2) { animation-delay: 0.2s; }
.arrow span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrow {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-title);
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.title-bracket {
    color: var(--secondary);
    font-size: 1.2em;
}

.title-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.service-card {
    position: relative;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    backdrop-filter: blur(10px);
}

/* Coins des cartes */
.card-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.card-corner.tl {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.card-corner.tr {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.card-corner.bl {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.card-corner.br {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

.service-card:hover .card-corner {
    width: 40px;
    height: 40px;
}

.card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 15px;
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    transition: opacity 0.5s;
}

.service-card:hover .card-glow {
    opacity: 0.5;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 20px var(--primary));
}

.card-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-badge {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-family: var(--font-mono);
    color: var(--primary);
    transition: all 0.3s;
}

.tech-badge:hover {
    background: rgba(0, 245, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

/* Skills Matrix */
.skills-matrix {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.matrix-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.matrix-category h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-bar {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s;
}

.skill-bar.visible {
    opacity: 1;
    transform: translateX(0);
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    color: var(--light);
    font-weight: 600;
}

.skill-progress {
    position: relative;
    width: 100%;
    height: 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 15px;
    overflow: hidden;
}

.skill-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.skill-percent {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--light);
    font-size: 0.85rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
}

/* Mini Games */
.mini-games {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.game-card h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.game-canvas-wrapper {
    position: relative;
    display: inline-block;
}

#snake-game {
    background: #000;
    border: 2px solid var(--primary);
    border-radius: 10px;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.game-overlay.hidden {
    display: none;
}

.game-start-btn, .game-btn {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.game-start-btn:hover, .game-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.8);
}

.game-score {
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--primary);
}

.game-controls {
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

/* Code Breaker */
.code-breaker {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.code-display {
    display: flex;
    gap: 10px;
}

.code-display span {
    width: 50px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: var(--font-title);
    color: var(--primary);
}

.code-input {
    display: flex;
    gap: 10px;
}

.code-digit {
    width: 50px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    font-size: 2rem;
    font-family: var(--font-title);
    color: var(--light);
}

.code-digit:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

#code-result {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    min-height: 30px;
}

/* Reaction Game */
.reaction-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reaction-box {
    width: 300px;
    height: 200px;
    background: #333;
    border: 3px solid var(--gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.reaction-box.ready {
    background: #ff0000;
    border-color: #ff0000;
}

.reaction-box.go {
    background: #00ff00;
    border-color: #00ff00;
}

.reaction-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--light);
}

.reaction-result {
    font-family: var(--font-mono);
    font-size: 1.5rem;
    color: var(--primary);
    min-height: 40px;
}

/* Pricing */
.pricing {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid rgba(0, 245, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.5s;
    backdrop-filter: blur(10px);
}

.price-card.featured {
    border-color: var(--secondary);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    filter: blur(15px);
    transition: opacity 0.5s;
}

.price-card:hover::before {
    opacity: 0.6;
}

.price-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.price-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px currentColor);
}

.price-header h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--light);
}

.price-amount {
    text-align: center;
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.price-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

/* Contact */
.contact {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.contact-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 245, 255, 0.3);
    border-radius: 10px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s;
}

.contact-method:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
    transform: translateX(10px);
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-stats .stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-stats .stat i {
    color: var(--primary);
}

/* Discord Widget */
.discord-widget {
    background: rgba(10, 10, 10, 0.9);
    border: 2px solid var(--primary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
}

.widget-header {
    background: linear-gradient(135deg, #5865F2, #7289DA);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
}

.widget-body {
    padding: 30px;
    text-align: center;
}

.user-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 4rem;
    color: var(--dark);
}

.user-info h4 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--light);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.status.online i {
    color: #00ff00;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.discord-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: #5865F2;
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.4);
    margin-top: 20px;
}

.discord-btn-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.6);
    background: #7289DA;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        cursor: auto;
    }
    
    #cursor, #cursor-trail {
        display: none;
    }
    
    .floating-stats {
        display: none;
    }
    
    .glitch-title {
        font-size: 3rem;
    }
    
    .hero-terminal {
        display: none;
    }
}