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

:root {
    --primary-color: #00ffff;
    --primary-dark: #00cccc;
    --primary-light: #40ffff;
    --secondary-color: #ff00ff;
    --accent-color: #ffff00;
    --neon-green: #00ff00;
    --neon-pink: #ff0080;
    --neon-blue: #0080ff;
    --text-dark: #ffffff;
    --text-light: #b0b0b0;
    --bg-light: #0a0a0a;
    --bg-white: #1a1a1a;
    --bg-dark: #000000;
    --shadow-sm: 0 2px 4px rgba(0, 255, 255, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 255, 255, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 255, 255, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 255, 255, 0.6);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-secondary: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    --gradient-cyber: linear-gradient(45deg, #00ffff, #ff00ff, #ffff00, #00ff00);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 0, 0.1) 0%, transparent 50%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 255, 0.03) 2px,
            rgba(0, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 255, 0.03) 2px,
            rgba(255, 0, 255, 0.03) 4px
        );
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-logo:hover {
    color: var(--primary-light);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 1rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        #1a1a2e 0%, 
        #16213e 25%, 
        #0f3460 50%, 
        #533483 75%, 
        #e94560 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 0, 0.2) 0%, transparent 70%);
    animation: gaming-pulse 6s ease-in-out infinite;
}

@keyframes gaming-pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 20px var(--primary-color),
        0 0 40px var(--primary-color),
        0 0 60px var(--primary-color);
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cyber-text 3s ease-in-out infinite;
}

@keyframes cyber-text {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--text-light);
    text-shadow: 0 0 10px var(--secondary-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
    text-shadow: 0 0 10px var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.8);
    text-shadow: 0 0 10px var(--secondary-color);
}

/* Floating Shapes */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    filter: blur(2px);
}

.shape-1 { background: var(--primary-color); }
.shape-2 { background: var(--secondary-color); }
.shape-3 { background: var(--accent-color); }
.shape-4 { background: var(--neon-green); }
.shape-5 { background: var(--neon-pink); }
.shape-6 { background: var(--neon-blue); }

.shape-1 {
    width: 80px;
    height: 80px;
    background: white;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: white;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: white;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: white;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 40px;
    height: 40px;
    background: white;
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}

.shape-6 {
    width: 70px;
    height: 70px;
    background: white;
    top: 15%;
    left: 40%;
    animation-delay: 2.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 10s infinite linear;
    box-shadow: 0 0 10px var(--primary-color);
}

@keyframes particle-float {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.section-alt {
    background: var(--bg-light);
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-shadow: 0 0 20px var(--primary-color);
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-title i {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--primary-color);
    animation: icon-bounce 2s ease-in-out infinite;
}

@keyframes icon-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.about-card:hover::before {
    left: 0;
}

.about-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
    border-color: var(--secondary-color);
}

.about-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    animation: cyber-pulse 2s ease-in-out infinite;
}

.about-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.8);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.about-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--gradient-cyber);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.about-skills {
    margin-top: 2rem;
}

.skill {
    margin-bottom: 1rem;
}

.skill span {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.skill-progress {
    height: 100%;
    background: var(--gradient-cyber);
    border-radius: 10px;
    width: 0;
    transition: width 2s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Hobbies Section */
.hobbies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hobby-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hobby-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.hobby-card:hover::before {
    left: 0;
}

.hobby-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
    border-color: var(--secondary-color);
}

.hobby-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-dark);
    transition: transform 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    position: relative;
}

.hobby-card:hover .hobby-icon {
    transform: rotate(360deg);
}

.hobby-level {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.hobby-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--bg-light);
    font-size: 0.8rem;
    color: var(--text-light);
}

.hobby-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.hobby-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hobby-card p {
    color: var(--text-light);
}

/* Interests Section */
.interests-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.interest-item {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.interest-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.interest-item:hover::before {
    left: 0;
}

.interest-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.5);
}

.interest-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: var(--bg-dark);
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.interest-item:hover .interest-icon {
    background: var(--gradient-secondary);
    box-shadow: 0 0 35px rgba(255, 0, 255, 0.8);
    transform: rotate(360deg);
}

.interest-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.interest-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Fun Facts Section */
.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fun-fact-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fun-fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.fun-fact-card:hover::before {
    left: 0;
}

.fun-fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.fun-fact-card:hover {
    transform: translateY(-8px) rotate(1deg) scale(1.02);
    box-shadow: 0 0 50px rgba(255, 255, 0, 0.6);
    border-color: var(--accent-color);
}

.fun-fact-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--bg-dark);
    animation: pulse 2s infinite;
    box-shadow: 0 0 40px rgba(255, 255, 0, 0.8);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.fun-fact-card h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.fun-fact-card p {
    color: var(--text-light);
}

/* Contact Section */
.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.coming-soon-container {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.coming-soon-container:hover::before {
    left: 0;
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--bg-dark);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
    animation: cyber-pulse 2s ease-in-out infinite;
}

.coming-soon-container h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-color);
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-container p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.coming-soon-features {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    border-color: var(--secondary-color);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.coming-soon-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.progress-fill {
    height: 100%;
    background: var(--gradient-cyber);
    border-radius: 10px;
    width: 0%;
    animation: progress-animation 3s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

@keyframes progress-animation {
    0% { width: 0%; }
    50% { width: 75%; }
    100% { width: 0%; }
}

.progress-text {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--primary-color);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.contact-method:hover::before {
    left: 0;
}

.contact-method:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
    border-color: var(--secondary-color);
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.contact-method p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.contact-form:hover::before {
    left: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    background: var(--bg-white);
}

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

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.gallery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.gallery-card:hover::before {
    left: 0;
}

.gallery-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
    border-color: var(--secondary-color);
}

.gallery-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-dark);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image {
    transform: rotate(360deg);
}

.gallery-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.gallery-card p {
    color: var(--text-light);
}

/* Favorite Games Section */
.games-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.game-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.game-card:hover::before {
    left: 0;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
    border-color: var(--secondary-color);
}

.game-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--bg-dark);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.game-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

.game-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.game-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.game-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.game-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Top Picks Section */
.picks-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pick-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.pick-card:hover::before {
    left: 0;
}

.pick-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.4);
    border-color: var(--secondary-color);
}

.pick-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.pick-card:hover .pick-icon {
    transform: rotate(360deg);
}

.pick-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.pick-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--accent-color);
}

.pick-rating {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.color-swatch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
}

.color-dot.blue {
    background: var(--primary-color);
}

.pick-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.pick-quote {
    font-style: italic;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.pick-quote i {
    color: var(--accent-color);
}

/* Funny Facts Section */
.facts-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-cyber);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.fact-card:hover::before {
    left: 0;
}

.fact-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 255, 0, 0.4);
    border-color: var(--accent-color);
}

.fact-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    text-shadow: 0 0 20px var(--primary-color);
}

.fact-content {
    text-align: center;
}

.fact-content i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--accent-color);
}

.fact-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--primary-color);
}

.fact-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    border-top: 2px solid var(--primary-color);
    color: var(--text-dark);
    padding: 3rem 0 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-cyber);
    animation: cyber-glow 2s linear infinite;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.footer-logo i {
    margin-right: 10px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-link:hover {
    background: var(--gradient-cyber);
    color: var(--bg-dark);
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
    border-color: var(--secondary-color);
}

.footer p {
    opacity: 0.9;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .section-title::before,
    .section-title::after {
        display: none;
    }
    
    .game-card {
        flex-direction: column;
        text-align: center;
    }
    
    .game-image {
        margin: 0 auto 1rem;
    }
    
    .game-stats {
        justify-content: center;
    }
    
    .picks-container,
    .facts-carousel {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-bottom: 2px solid var(--primary-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu.active .nav-link {
        animation: slideInFromTop 0.5s ease forwards;
        opacity: 0;
    }

    .nav-menu.active .nav-link:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-link:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu.active .nav-link:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu.active .nav-link:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu.active .nav-link:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu.active .nav-link:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu.active .nav-link:nth-child(7) { animation-delay: 0.7s; }
    .nav-menu.active .nav-link:nth-child(8) { animation-delay: 0.8s; }
    .nav-menu.active .nav-link:nth-child(9) { animation-delay: 0.9s; }
    .nav-menu.active .nav-link:nth-child(10) { animation-delay: 1.0s; }

    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-card {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hobbies-grid,
    .interests-container,
    .fun-facts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .about-card {
        padding: 2rem;
    }

    .about-image {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }

    .section {
        padding: 60px 0;
    }
}
