/* ============================================
   NABIN SHAMA - Gaming Portfolio Styles
   Dark Cyberpunk Theme with Neon Accents
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f1a;
    --bg-card: rgba(15, 15, 30, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    
    /* Neon Accents */
    --neon-purple: #8a2be2;
    --neon-magenta: #ff00aa;
    --neon-blue: #00f3ff;
    --neon-pink: #ff4081;
    --neon-green: #39ff14;
    
    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #8a2be2 0%, #ff00aa 100%);
    --gradient-blue: linear-gradient(135deg, #00f3ff 0%, #8a2be2 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 100%);
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #606070;
    
    /* Fonts */
    --font-display: 'Orbitron', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --card-padding: 24px;
    --grid-gap: 24px;
    
    /* Effects */
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --neon-glow-purple: 0 0 20px rgba(138, 43, 226, 0.5);
    --neon-glow-blue: 0 0 20px rgba(0, 243, 255, 0.5);
    --neon-glow-magenta: 0 0 20px rgba(255, 0, 170, 0.5);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-magenta);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: var(--glass-border);
    padding: 16px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 20px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--text-secondary);
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    color: var(--neon-purple);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-icon {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: var(--gradient-purple);
    color: var(--text-primary);
    box-shadow: var(--neon-glow-purple);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.7);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--neon-purple);
    box-shadow: var(--neon-glow-purple);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-purple);
    padding: 10px 20px;
}

.btn-outline:hover {
    background: var(--neon-purple);
    box-shadow: var(--neon-glow-purple);
}

.btn-view-all {
    background: transparent;
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
    padding: 8px 16px;
    font-size: 12px;
}

.btn-view-all:hover {
    background: rgba(138, 43, 226, 0.2);
}

.btn-full {
    width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark);
    z-index: -2;
}

.neon-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(138, 43, 226, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(138, 43, 226, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-purple);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 10s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
    50% { transform: translateY(-100px) translateX(50px); opacity: 0.3; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-purple);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    margin-bottom: 16px;
}

.title-nabin {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 72px;
    letter-spacing: 8px;
    line-height: 1;
    text-shadow: 0 0 40px rgba(138, 43, 226, 0.5);
}

    .title-sharma {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 96px;
    letter-spacing: 4px;
    line-height: 1;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.5));
    transform: skewX(-5deg);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 6px;
    color: var(--neon-blue);
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.hero-bio {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stats Card */
.hero-stats {
    position: relative;
}

.stats-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    box-shadow: var(--glass-shadow);
}

.stats-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: var(--glass-border);
}

.stats-pulse {
    width: 24px;
    height: 24px;
    color: var(--neon-purple);
    animation: pulse 2s infinite;
}

.stats-header h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: var(--glass-border);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-icon.blue {
    background: rgba(0, 243, 255, 0.1);
    color: var(--neon-blue);
}

.stat-icon.pink {
    background: rgba(255, 64, 129, 0.1);
    color: var(--neon-pink);
}

.stat-icon.purple {
    background: rgba(138, 43, 226, 0.1);
    color: var(--neon-purple);
}

.stat-icon.magenta {
    background: rgba(255, 0, 170, 0.1);
    color: var(--neon-magenta);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
}

.stat-value.blue { color: var(--neon-blue); }
.stat-value.pink { color: var(--neon-pink); }
.stat-value.purple { color: var(--neon-purple); }
.stat-value.magenta { color: var(--neon-magenta); }

/* Hero Character */
.hero-character {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 400px;
    height: 600px;
    pointer-events: none;
    z-index: -1;
}

.character-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: var(--neon-purple);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.1); }
}

/* ============================================
   MAIN GRID LAYOUT
   ============================================ */
.main-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
    position: relative;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 20px;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.game-card {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-purple);
    box-shadow: var(--neon-glow-purple);
}

.game-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 12px;
}

.game-logo.freefire {
    color: #ff6b35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.game-logo.pubg {
    color: #f4a900;
    text-shadow: 0 0 10px rgba(244, 169, 0, 0.5);
}

.game-logo.valorant {
    background: linear-gradient(90deg, #ff4655 0%, #ff6b8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-logo.cod {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.game-uid {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.game-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rank-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1px;
}

.rank-badge.heroic {
    background: linear-gradient(135deg, #ff4444 0%, #ff6666 100%);
    color: white;
}

.rank-badge.ace {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
    color: #1a1a1a;
}

.rank-badge.diamond {
    background: linear-gradient(135deg, #9932cc 0%, #ba55d3 100%);
    color: white;
}

.rank-badge.legendary {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #1a1a1a;
}

.game-level {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--neon-blue);
}

/* ============================================
   ACHIEVEMENTS SECTION
   ============================================ */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.achievement-card {
    text-align: center;
}

.achievement-frame {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.achievement-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.achievement-frame.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffaa00 100%);
}

.achievement-frame.purple {
    background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
}

.achievement-frame.blue {
    background: linear-gradient(135deg, #4169e1 0%, #6495ed 100%);
}

.achievement-icon {
    font-size: 32px;
}

.achievement-rank {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.achievement-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ============================================
   HIGHLIGHTS SECTION
   ============================================ */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.highlight-card {
    cursor: pointer;
    transition: var(--transition-normal);
}

.highlight-card:hover {
    transform: translateY(-4px);
}

.highlight-card:hover .highlight-thumbnail {
    border-color: var(--neon-purple);
    box-shadow: var(--neon-glow-purple);
}

.highlight-card:hover .play-overlay {
    opacity: 1;
    transform: scale(1);
}

.highlight-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    border: var(--glass-border);
    transition: var(--transition-normal);
}

.highlight-bg {
    width: 100%;
    height: 100%;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(138, 43, 226, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

.play-overlay svg {
    width: 24px;
    height: 24px;
    color: white;
    margin-left: 3px;
}

.highlight-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 11px;
}

.highlight-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    margin-top: 12px;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-content {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 28px;
}

.about-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.info-details {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.info-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--neon-blue);
}

.about-avatar {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.avatar-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: var(--neon-purple);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
}

.avatar-character {
    width: 180px;
    height: 180px;
    position: relative;
    z-index: 1;
}

.avatar-name {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: 4px;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 16px;
}

/* ============================================
   CONNECT SECTION
   ============================================ */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.connect-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 12px;
    padding: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-normal);
}

.connect-card:hover {
    transform: translateY(-2px);
    border-color: var(--neon-purple);
}

.connect-card.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
}

.connect-card.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 0 20px rgba(228, 64, 95, 0.3);
}

.connect-card.discord:hover {
    border-color: #5865f2;
    box-shadow: 0 0 20px rgba(88, 101, 242, 0.3);
}

.connect-card.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.3);
}

.connect-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-icon svg {
    width: 24px;
    height: 24px;
}

.connect-card.youtube .connect-icon {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.connect-card.instagram .connect-icon {
    background: rgba(228, 64, 95, 0.1);
    color: #e4405f;
}

.connect-card.discord .connect-icon {
    background: rgba(88, 101, 242, 0.1);
    color: #5865f2;
}

.connect-card.facebook .connect-icon {
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
}

.connect-info {
    display: flex;
    flex-direction: column;
}

.connect-platform {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.connect-handle {
    font-family: var(--font-heading);
    font-size: 12px;
    color: var(--text-muted);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 24px;
}

.contact-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-secondary);
    border-top: var(--glass-border);
    padding: 40px 24px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}

.footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-tagline {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--neon-purple);
    box-shadow: var(--neon-glow-purple);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-stats {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-character {
        display: none;
    }
    
    .main-grid {
        grid-template-columns: 1fr;
    }
    
    .right-column {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-150%);
        transition: var(--transition-normal);
        border-bottom: var(--glass-border);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .social-icons {
        display: none;
    }
    
    .title-nabin {
        font-size: 48px;
    }
    
    .title-sharma {
        font-size: 64px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .title-nabin {
        font-size: 36px;
    }
    
    .title-sharma {
        font-size: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Stagger animation delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Hover glow effect for cards */
.hover-glow {
    transition: var(--transition-normal);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

/* Text selection */
::selection {
    background: var(--neon-purple);
    color: white;
}