/* =============================================
   6BRUHD.DEV - Full 3D Casino Portfolio
   Premium Gambling Industry Developer Portfolio
   ============================================= */

/* CSS Variables - Casino Theme */
:root {
    /* Primary Colors - Neon Casino */
    --neon-purple: #7b2fff;
    --neon-cyan: #00ffff;
    --neon-pink: #ff0080;
    --neon-gold: #ffd700;
    --neon-green: #00ff88;
    
    /* Background Colors */
    --bg-dark: #0a0a0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(20, 20, 35, 0.8);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #aaaaaa;
    --text-muted: #666666;
    
    /* Gradients */
    --gradient-neon: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
    --gradient-gold: linear-gradient(135deg, #ffd700, #ffaa00, #ff8800);
    --gradient-card: linear-gradient(135deg, rgba(123, 47, 255, 0.1), rgba(0, 255, 255, 0.1));
    
    /* Shadows */
    --glow-purple: 0 0 30px rgba(123, 47, 255, 0.5);
    --glow-cyan: 0 0 30px rgba(0, 255, 255, 0.5);
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.5);
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: default;
    line-height: 1.6;
}

/* =============================================
   BACKGROUND & ATMOSPHERE
   ============================================= */

.casino-atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(123, 47, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 0, 128, 0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
}

/* Animated Grid Floor Effect */
.casino-floor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(123, 47, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(123, 47, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    perspective: 500px;
    transform-style: preserve-3d;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Floating Particles - Casino Style */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 15s infinite;
    opacity: 0;
}

.particle.chip {
    width: 8px;
    height: 8px;
    background: var(--neon-gold);
    box-shadow: 0 0 10px var(--neon-gold);
}

.particle.diamond {
    width: 6px;
    height: 6px;
    background: var(--neon-cyan);
    transform: rotate(45deg);
    box-shadow: 0 0 8px var(--neon-cyan);
}

.particle.star {
    width: 4px;
    height: 4px;
    background: var(--text-primary);
    box-shadow: 0 0 6px var(--text-primary);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Mouse Follower - Neon Glow */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, 
        rgba(123, 47, 255, 0.2) 0%, 
        rgba(0, 255, 255, 0.1) 30%,
        transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
    transition: opacity 0.3s;
    mix-blend-mode: screen;
}

/* =============================================
   NAVIGATION - ROULETTE STYLE
   ============================================= */

.nav-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.roulette-nav {
    position: relative;
    width: 120px;
    height: 120px;
}

.roulette-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #1a1a2e 0deg 45deg,
        #0d0d15 45deg 90deg,
        #1a1a2e 90deg 135deg,
        #0d0d15 135deg 180deg,
        #1a1a2e 180deg 225deg,
        #0d0d15 225deg 270deg,
        #1a1a2e 270deg 315deg,
        #0d0d15 315deg 360deg
    );
    border: 3px solid var(--neon-purple);
    box-shadow: 
        var(--glow-purple),
        inset 0 0 20px rgba(123, 47, 255, 0.3);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.roulette-wheel:hover {
    transform: rotate(360deg);
    box-shadow: 
        0 0 50px rgba(123, 47, 255, 0.8),
        inset 0 0 30px rgba(123, 47, 255, 0.5);
}

.roulette-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-neon);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
}

.nav-menu {
    position: absolute;
    top: 130px;
    right: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(123, 47, 255, 0.3);
    border-radius: 15px;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    min-width: 150px;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.8rem 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient-neon);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    background: rgba(123, 47, 255, 0.2);
    padding-left: 1.5rem;
}

.nav-menu a:hover::before {
    opacity: 1;
}

/* =============================================
   HERO SECTION - 3D CANVAS
   ============================================= */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

#casino-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.logo-container {
    perspective: 1000px;
    margin-bottom: 1rem;
}

.logo {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 12vw, 8rem);
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite alternate;
    text-shadow: none;
    filter: drop-shadow(0 0 30px rgba(123, 47, 255, 0.5));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(123, 47, 255, 0.5)) 
                drop-shadow(0 0 40px rgba(0, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(0, 255, 255, 0.8)) 
                drop-shadow(0 0 60px rgba(123, 47, 255, 0.5));
    }
}

/* Glitch Effect */
.logo::before,
.logo::after {
    content: '6BRUHD';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo::before {
    animation: glitch1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.logo::after {
    animation: glitch2 2s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-5px, 2px); }
    94% { transform: translate(5px, -2px); }
    96% { transform: translate(-3px, 1px); }
    98% { transform: translate(3px, -1px); }
}

@keyframes glitch2 {
    0%, 90%, 100% { transform: translate(0); }
    91% { transform: translate(5px, -2px); }
    93% { transform: translate(-5px, 2px); }
    95% { transform: translate(3px, -1px); }
    97% { transform: translate(-3px, 1px); }
}

.tagline {
    font-size: 1.3rem;
    color: var(--text-secondary);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    position: relative;
}

.tagline span {
    display: inline-block;
    animation: taglineFade 3s ease-in-out infinite;
}

.specialization {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spec-badge {
    background: var(--bg-glass);
    border: 1px solid var(--neon-gold);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--neon-gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
    transition: var(--transition-smooth);
}

.spec-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

/* Scroll Indicator - Dice Style */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    animation: bounce 2s infinite;
}

.dice-scroll {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    animation: diceRoll 3s infinite;
    box-shadow: var(--glow-purple);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

@keyframes diceRoll {
    0%, 100% { transform: rotateZ(0deg); }
    25% { transform: rotateZ(10deg); }
    75% { transform: rotateZ(-10deg); }
}

/* =============================================
   SECTION STYLES
   ============================================= */

section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    position: relative;
    display: inline-block;
}

.section-title .icon {
    margin-right: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-neon);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

/* =============================================
   PROJECT CARDS - POKER STYLE
   ============================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.poker-card {
    position: relative;
    height: 450px;
    perspective: 1000px;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.poker-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.card-front {
    background: var(--bg-glass);
    border: 2px solid rgba(123, 47, 255, 0.3);
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.card-front::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 40px;
    font-size: 1.5rem;
}

.card-suit {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.5;
}

.card-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.card-front h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--neon-cyan);
    margin-bottom: 0.8rem;
}

.card-front p {
    color: var(--text-secondary);
    line-height: 1.8;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.chip-tag {
    background: linear-gradient(135deg, rgba(123, 47, 255, 0.3), rgba(0, 255, 255, 0.2));
    border: 1px solid var(--neon-purple);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    color: var(--neon-cyan);
    position: relative;
    overflow: hidden;
}

.chip-tag::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    width: 6px;
    height: 6px;
    background: var(--neon-gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.card-back {
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border: 2px solid var(--neon-gold);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

.card-back::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
}

.card-back h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neon-gold);
    margin-bottom: 1rem;
}

.card-back p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.project-link:hover {
    transform: scale(1.05);
    box-shadow: var(--glow-gold);
}

/* =============================================
   STATS - SLOT MACHINE STYLE
   ============================================= */

.stats-section {
    padding: 4rem 2rem;
}

.slot-machine {
    background: linear-gradient(180deg, #2a2a4e 0%, #1a1a2e 100%);
    border: 3px solid var(--neon-purple);
    border-radius: 30px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 
        var(--glow-purple),
        inset 0 0 50px rgba(0, 0, 0, 0.5);
}

.slot-machine::before {
    content: '🎰 JACKPOT STATS';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: var(--glow-gold);
}

.slot-reels {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.slot-reel {
    background: #0a0a0f;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.slot-reel::before,
.slot-reel::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    z-index: 1;
}

.slot-reel::before {
    top: 0;
    background: linear-gradient(180deg, #0a0a0f, transparent);
}

.slot-reel::after {
    bottom: 0;
    background: linear-gradient(0deg, #0a0a0f, transparent);
}

.reel-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.reel-label {
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.reel-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* =============================================
   SKILLS - CASINO CHIPS
   ============================================= */

.skills-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.skill-chip {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-bounce);
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
}

.skill-chip::before {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.3);
}

.skill-chip::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 3px solid currentColor;
    opacity: 0.5;
}

.skill-chip:hover {
    transform: translateY(-10px) scale(1.1);
}

/* Chip Colors */
.skill-chip.purple {
    background: linear-gradient(135deg, #7b2fff, #5a1fcc);
    color: var(--neon-purple);
    box-shadow: 0 10px 30px rgba(123, 47, 255, 0.4);
}

.skill-chip.cyan {
    background: linear-gradient(135deg, #00cccc, #009999);
    color: var(--neon-cyan);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.skill-chip.gold {
    background: linear-gradient(135deg, #ffd700, #cc9900);
    color: var(--neon-gold);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.skill-chip.pink {
    background: linear-gradient(135deg, #ff0080, #cc0066);
    color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.4);
}

.skill-chip.green {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: var(--neon-green);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.skill-chip span {
    position: relative;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =============================================
   ABOUT - VIP LOUNGE
   ============================================= */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vip-card {
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border: 2px solid var(--neon-gold);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.vip-card::before {
    content: '⭐ VIP';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-gold);
    color: var(--bg-dark);
    padding: 0.3rem 3rem;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.7rem;
    transform: rotate(45deg);
}

.vip-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neon-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-card p {
    color: var(--text-secondary);
    line-height: 2;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.experience-bar {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgba(123, 47, 255, 0.3);
}

.exp-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.exp-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.exp-fill {
    height: 100%;
    background: var(--gradient-neon);
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* =============================================
   CONTACT - NEON SIGNS
   ============================================= */

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.neon-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: transparent;
    border: 2px solid var(--neon-cyan);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.neon-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--neon-cyan);
    opacity: 0;
    transition: opacity 0.3s;
}

.neon-button:hover {
    color: var(--bg-dark);
    box-shadow: 
        0 0 20px var(--neon-cyan),
        0 0 40px var(--neon-cyan),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
}

.neon-button:hover::before {
    opacity: 1;
}

.neon-button svg,
.neon-button span {
    position: relative;
    z-index: 2;
}

.neon-button.discord {
    border-color: #5865F2;
    color: #5865F2;
}

.neon-button.discord::before {
    background: #5865F2;
}

.neon-button.discord:hover {
    box-shadow: 
        0 0 20px #5865F2,
        0 0 40px #5865F2;
}

.neon-button.email {
    border-color: var(--neon-gold);
    color: var(--neon-gold);
}

.neon-button.email::before {
    background: var(--neon-gold);
}

.neon-button.email:hover {
    box-shadow: 
        0 0 20px var(--neon-gold),
        0 0 40px var(--neon-gold);
}

/* =============================================
   FOOTER
   ============================================= */

footer {
    text-align: center;
    padding: 3rem;
    border-top: 1px solid rgba(123, 47, 255, 0.2);
    position: relative;
}

footer::before {
    content: '♠ ♥ ♦ ♣';
    display: block;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 10px;
    opacity: 0.3;
}

footer p {
    color: var(--text-muted);
}

.footer-glow {
    color: var(--neon-purple);
    font-weight: 700;
}

/* =============================================
   ANIMATIONS & UTILITIES
   ============================================= */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Neon flicker animation */
@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    92% { opacity: 1; }
    93% { opacity: 0.8; }
    94% { opacity: 1; }
    96% { opacity: 0.9; }
    97% { opacity: 1; }
}

.neon-text {
    animation: neonFlicker 5s infinite;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .poker-card {
        height: 400px;
    }
    
    .slot-reels {
        gap: 1rem;
    }
    
    .slot-reel {
        min-width: 120px;
        padding: 1rem;
    }
    
    .reel-number {
        font-size: 2rem;
    }
    
    .nav-container {
        top: 10px;
        right: 10px;
    }
    
    .roulette-nav {
        width: 80px;
        height: 80px;
    }
    
    .roulette-center {
        width: 30px;
        height: 30px;
        font-size: 0.5rem;
    }
    
    .skill-chip {
        width: 80px;
        height: 80px;
        font-size: 0.65rem;
    }
    
    .contact-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .neon-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: clamp(2.5rem, 15vw, 4rem);
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 4px;
    }
    
    .specialization {
        flex-direction: column;
        align-items: center;
    }
    
    .vip-card {
        padding: 2rem;
    }
}
