@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(0,255,255,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0,255,255,0.5);
    border: 2px solid #00ffff;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(0,255,255,0.1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-text:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0,255,255,0.4);
    background: rgba(0,255,255,0.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: #00ffff;
    border-color: #00ffff;
    background: rgba(0,255,255,0.1);
    box-shadow: 0 0 15px rgba(0,255,255,0.3);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: radial-gradient(circle at center, rgba(0,255,255,0.1) 0%, transparent 70%);
}

.profile-pic {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #00ffff;
    box-shadow: 0 0 30px rgba(0,255,255,0.5), 0 0 60px rgba(0,255,255,0.3);
    position: relative;
    animation: profileGlow 3s ease-in-out infinite alternate;
}

.profile-pic::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #ff6b6b, #4ecdc4, #00ffff);
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    display: block;
}

.profile-pic:hover img {
    transform: scale(1.05);
}

@keyframes profileGlow {
    from { box-shadow: 0 0 30px rgba(0,255,255,0.5), 0 0 60px rgba(0,255,255,0.3); }
    to { box-shadow: 0 0 40px rgba(0,255,255,0.8), 0 0 80px rgba(0,255,255,0.5); }
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content h1 {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.glitch {
    position: relative;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 40px #00ffff;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 40px #00ffff; }
    to { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 60px #00ffff; }
}

.subtitle {
    font-size: 1.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tagline {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-social {
    padding: 12px 30px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

/* Sections */
section {
    padding: 80px 0;
    margin: 40px 0;
}

h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
}

.about {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 400;
}

.about ul {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 20px 0;
    padding-left: 30px;
}

.about li {
    margin-bottom: 10px;
    color: #e0e0e0;
}

.about li::marker {
    color: #00ffff;
}

/* Character Stats Section */
.character-stats {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(26,26,46,0.6));
    border: 2px solid rgba(0,255,255,0.3);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.character-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,107,107,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stats-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-bars {
    display: flex;
    flex-direction: column;
    gap: 25px;
    order: 2;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0,255,255,0.3);
}

.stat-bar {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-label {
    min-width: 140px;
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-weight: 600;
    font-size: 1.1rem;
}

.stat-progress {
    flex: 1;
    height: 24px;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    border: 1px solid rgba(0,255,255,0.3);
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #00ffff);
    border-radius: 12px;
    position: relative;
    animation: statFill 2s ease-out;
    box-shadow: 0 0 10px rgba(0,255,255,0.5);
}

.stat-fill[data-level="95"] { width: 95%; }
.stat-fill[data-level="88"] { width: 88%; }
.stat-fill[data-level="92"] { width: 92%; }
.stat-fill[data-level="90"] { width: 90%; }

@keyframes statFill {
    from { width: 0%; }
}

.stat-value {
    min-width: 70px;
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    font-weight: 600;
    text-align: right;
    font-size: 1.1rem;
}

.character-info {
    display: flex;
    flex-direction: column;
    order: 1;
}

.info-panel {
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 25px;
}

.info-panel h3 {
    font-family: 'Orbitron', monospace;
    color: #ff6b6b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.info-panel p {
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

.achievement-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.achievement {
    background: linear-gradient(45deg, rgba(255,215,0,0.2), rgba(255,107,107,0.2));
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255,215,0,0.3);
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Project Highlights */
.project-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
    border: 1px solid rgba(0,255,255,0.2);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background: rgba(0,255,255,0.1);
    border-radius: 8px;
    border-left: 3px solid #00ffff;
}

.highlight-icon {
    font-size: 1.2rem;
    min-width: 24px;
}

.highlight-item strong {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, rgba(0,255,255,0.1), rgba(255,107,107,0.1));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,255,255,0.2);
}

.value-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.value-item strong {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-bottom: 4px;
    font-family: 'Orbitron', monospace;
}

.value-item span:last-child {
    color: #cccccc;
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Work Grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: start;
}

.project-card {
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.project-card:hover::before {
    left: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,255,255,0.2);
    border-color: #00ffff;
}

.project-card h3 {
    font-family: 'Orbitron', monospace;
    color: #ff6b6b;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.project-card .role {
    color: #4ecdc4;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}

.project-card p {
    line-height: 1.6;
    color: #cccccc;
    flex-grow: 1;
}

.video-link {
    margin-top: auto;
}

/* Video and Image Containers */
.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.image-container {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.video-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff0000, #cc0000);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.video-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,0,0,0.3);
    background: linear-gradient(45deg, #cc0000, #990000);
}

/* Achievement Section */
.achievements {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(26,26,46,0.6));
    border: 2px solid rgba(255,215,0,0.3);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255,215,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(26,26,46,0.8));
    border: 2px solid rgba(255,215,0,0.5);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4, #ffd700);
    border-radius: 15px;
    z-index: -1;
    animation: achievementBorder 3s linear infinite;
}

@keyframes achievementBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.achievement-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255,215,0,0.3);
}

.achievement-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.achievement-card h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.achievement-rarity {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.achievement-rarity.legendary {
    background: linear-gradient(45deg, #ff6b00, #ffd700);
    color: #000;
    box-shadow: 0 0 15px rgba(255,215,0,0.5);
}

.achievement-rarity.epic {
    background: linear-gradient(45deg, #9b59b6, #e74c3c);
    color: #fff;
    box-shadow: 0 0 15px rgba(155,89,182,0.5);
}

.achievement-rarity.rare {
    background: linear-gradient(45deg, #3498db, #2ecc71);
    color: #fff;
    box-shadow: 0 0 15px rgba(52,152,219,0.5);
}

/* Skills & Experience Section */
.skills-experience {
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 40px 0;
}

.skills-section {
    margin-bottom: 50px;
}

.skills-section h3 {
    font-family: 'Orbitron', monospace;
    color: #ff6b6b;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

/* Skill Tree Section */
.skill-tree {
    margin-bottom: 50px;
}

.skill-tree-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.skill-node {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(26,26,46,0.8));
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-node.mastered {
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.skill-node.advanced {
    border-color: #9b59b6;
    box-shadow: 0 0 15px rgba(155,89,182,0.3);
}

.skill-node.intermediate {
    border-color: #3498db;
    box-shadow: 0 0 10px rgba(52,152,219,0.3);
}

.skill-node:hover {
    transform: translateY(-5px) scale(1.05);
}

.skill-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.skill-node span {
    display: block;
    font-family: 'Orbitron', monospace;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.skill-level {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0,0,0,0.8);
    color: #00ffff;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.skill-node.mastered .skill-level {
    background: #ffd700;
    color: #000;
}

.skill-node.advanced .skill-level {
    background: #9b59b6;
    color: #fff;
}

.skill-node.intermediate .skill-level {
    background: #3498db;
    color: #fff;
}

.experience-section h3 {
    font-family: 'Orbitron', monospace;
    color: #4ecdc4;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

/* Quest Log Section */
.quest-log h3 {
    font-family: 'Orbitron', monospace;
    color: #4ecdc4;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    text-align: center;
}

.quest-card {
    background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(26,26,46,0.8));
    border: 2px solid rgba(78,205,196,0.5);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s ease;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.quest-card.completed {
    border-color: #2ecc71;
    box-shadow: 0 0 15px rgba(46,204,113,0.2);
}

.quest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(78,205,196,0.3);
}

.quest-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2ecc71;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.quest-card h4 {
    font-family: 'Orbitron', monospace;
    color: #00ffff;
    font-size: 1.3rem;
    margin-bottom: 8px;
    margin-right: 120px;
}

.quest-location {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.quest-description {
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.quest-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.reward {
    background: linear-gradient(45deg, rgba(0,255,255,0.3), rgba(255,107,107,0.3));
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.3);
    font-weight: 600;
}

.xp-gained {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    color: #000;
    padding: 5px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* Section Icons */
.section-icon {
    margin-right: 10px;
    font-size: 2rem;
    vertical-align: middle;
}

/* Contact Terminal Enhancements */
.contact {
    background: linear-gradient(135deg, rgba(0,0,0,0.4), rgba(26,26,46,0.6));
    border: 2px solid rgba(0,255,255,0.3);
    border-radius: 20px;
    padding: 60px 40px;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.contact-terminal {
    max-width: 600px;
    margin: 0 auto;
    background: #0a0a0a;
    border: 2px solid #00ffff;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,255,255,0.3);
    position: relative;
    z-index: 1;
}

.terminal-header {
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    padding: 10px 15px;
    border-bottom: 1px solid #333;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ff5f57; }
.btn-minimize { background: #ffbd2e; }
.btn-maximize { background: #28ca42; }

.terminal-title {
    color: #00ffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    font-weight: 600;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    background: #000;
    border-radius: 0 0 8px 8px;
}

.terminal-line {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.prompt {
    color: #00ffff;
    font-weight: bold;
    margin-right: 5px;
}

.command {
    color: #ff6b6b;
    margin-right: 10px;
}

.terminal-link {
    color: #4ecdc4;
    text-decoration: none;
    transition: all 0.3s ease;
}

.terminal-link:hover {
    color: #00ffff;
    text-shadow: 0 0 5px #00ffff;
}

.status-text {
    color: #2ecc71;
    font-weight: 600;
}

.terminal-cursor {
    color: #00ffff;
    font-weight: bold;
    animation: blink 1s infinite;
    margin-top: 10px;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
}

.footer-content p {
    color: #888;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #00ffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10,10,10,0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
    
    .hero {
        margin-top: 70px;
        padding: 40px 0;
        min-height: 90vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .profile-pic {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 50px 0;
        margin: 20px 0;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .about {
        padding: 40px 20px;
    }
    
    .about p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .character-stats {
        padding: 40px 20px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 20px;
    }
    
    .project-card h3 {
        font-size: 1.2rem;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .achievement-card {
        padding: 20px;
    }
    
    .skill-tree-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .skill-node {
        padding: 15px 10px;
    }
    
    .skill-node span {
        font-size: 0.8rem;
    }
    
    .quest-card {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .quest-card h4 {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
    
    .quest-status {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
    
    .xp-gained {
        position: static;
        display: inline-block;
        margin-top: 15px;
    }
    
    .contact {
        padding: 40px 20px;
    }
    
    .terminal-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .terminal-body {
        padding: 15px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .value-item {
        padding: 10px 8px;
    }
    
    .value-icon {
        font-size: 1.5rem;
    }
    
    .value-item strong {
        font-size: 0.8rem;
    }
    
    .value-item span:last-child {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .profile-pic {
        width: 120px;
        height: 120px;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .about {
        padding: 30px 15px;
    }
    
    .character-stats {
        padding: 30px 15px;
    }
    
    .project-card {
        padding: 15px;
    }
    
    .achievement-card {
        padding: 15px;
    }
    
    .skill-tree-container {
        grid-template-columns: 1fr;
    }
    
    .skill-node {
        padding: 12px 8px;
    }
    
    .contact {
        padding: 30px 15px;
    }
    
    .terminal-body {
        padding: 10px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 12px 25px;
    }
}