/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.highlight {
    color: #667eea;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0a;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    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 span {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

/* Special styling for Games link - Simplified for visibility */
.games-link {
    position: relative;
    color: #667eea !important;
    font-weight: 600 !important;
    display: inline-block !important;
    visibility: visible !important;
    text-decoration: none !important;
    animation: gamesPulse 2s ease-in-out infinite;
}

.games-link:hover {
    color: #764ba2 !important;
    animation: gamesGlow 0.5s ease-in-out;
    transform: scale(1.05);
}

/* Remove the complex ::before pseudo-element */
.games-link::before {
    display: none !important;
}

.games-badge {
    position: absolute;
    top: -8px;
    right: -20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 700;
    animation: badgeBounce 1.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    z-index: 10;
}

@keyframes gamesPulse {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

@keyframes gamesGlow {
    0% {
        box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.8);
    }
}

@keyframes badgeBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-2px) scale(1.1);
    }
}

/* Responsive adjustments for games link */
@media (max-width: 768px) {
    .games-badge {
        right: -15px;
        top: -6px;
        font-size: 0.5rem;
        padding: 1px 4px;
    }
}

/* Games Showcase Section */
.games-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
}

.games-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23667eea" stop-opacity="0.1"/><stop offset="100%" stop-color="%23667eea" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="150" fill="url(%23a)"/><circle cx="800" cy="400" r="200" fill="url(%23a)"/><circle cx="400" cy="800" r="180" fill="url(%23a)"/></svg>') center/cover;
    pointer-events: none;
}

.games-intro {
    text-align: center;
    margin-bottom: 60px;
}

.games-intro p {
    font-size: 1.3rem;
    color: #b0b0b0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.games-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    align-items: stretch; /* make all cards same height per row */
}

.game-preview-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: left; /* left align text */
    position: relative;
    overflow: hidden;
    display: flex;           /* make consistent vertical layout */
    flex-direction: column;  /* stack content */
    height: 100%;           /* stretch to row height */
}

.game-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.game-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(102, 126, 234, 0.3);
}

.game-preview-card.coming-soon {
    opacity: 0.7;
}

.game-preview-card.coming-soon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
}

.game-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
    align-self: flex-start; /* align icon left within flex container */
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.game-preview-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.game-preview-card p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-features {
    display: flex;
    gap: 10px;
    justify-content: flex-start; /* left align feature tags */
    flex-wrap: wrap;
    margin-bottom: 14px; /* ensure space before Play button */
}

.feature-tag {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.feature-tag:last-child {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3);
}

.games-cta {
    text-align: center;
}

.btn-games {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    animation: gameBtnPulse 2s ease-in-out infinite;
}
/* Make Play button inside cards sit on its own row with spacing */
.game-preview-card .btn-games {
    display: block;
    width: 100%;
    margin-top: auto;   /* push button to bottom consistently */
    align-self: stretch; /* full card width */
}

.btn-games:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    animation: none;
}

.btn-sparkle {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes gameBtnPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    25% {
        transform: rotate(90deg) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }
    75% {
        transform: rotate(270deg) scale(1.2);
        opacity: 0.8;
    }
}

/* Ensure Games link overrides general nav-link styles */
.nav-link.games-link {
    color: #667eea !important;
    font-weight: 600 !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-link.games-link:hover {
    color: #764ba2 !important;
}

/* Light mode overrides */
body.light-mode .nav-link.games-link {
    color: #667eea !important;
}

body.light-mode .nav-link.games-link:hover {
    color: #764ba2 !important;
}

/* Responsive adjustments for games showcase */
@media (max-width: 768px) {
    .games-showcase {
        padding: 60px 0;
    }
    
    .games-preview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .game-preview-card {
        padding: 20px;
    }
    
    .games-intro p {
        font-size: 1.1rem;
    }
    
    .btn-games {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    .game-preview-card .btn-games { width: 100%; margin-top: auto; }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: poPoppins;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', 'Poppins', sans-serif;
    min-height: 4.2em; /* Use min-height to accommodate content */
    line-height: 1.1; /* Slightly tighter line height */
    display: block;
    overflow: visible;
    transition: none;
    font-size: 3 rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    white-space: pre-wrap; /* Preserve line breaks */
}

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

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

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: poPoppins;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg-animation {
    width: 400px;
    height: 400px;
    background: none !important;
    border-radius: 50%;
    opacity: 1; /* Make it fully visible */
    animation: float 6s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    z-index: 1;
    top: -120px; /* Move the circle up */
}

.hero-bg-animation::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    border-radius: 50%;
    opacity: 0.05;
    animation: float 8s ease-in-out infinite reverse;
}

/* Floating Shapes Animation */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    opacity: 0.3;
}

.shape-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 20%;
    animation: floatShape 4s ease-in-out infinite;
}

.shape-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 80%;
    animation: floatShape 5s ease-in-out infinite reverse;
}

.shape-3 {
    width: 25px;
    height: 25px;
    top: 80%;
    left: 30%;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-4 {
    width: 12px;
    height: 12px;
    top: 30%;
    left: 70%;
    animation: floatShape 3s ease-in-out infinite reverse;
}

.shape-5 {
    width: 18px;
    height: 18px;
    top: 50%;
    left: 10%;
    animation: floatShape 7s ease-in-out infinite;
}

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

/* Code Animation */
.code-animation {
    background: transparent !important;
    border: none;
    box-shadow: none;
    padding: 0;
    font-size: 1.5rem;
    color: #fff;
    z-index: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Fira Mono', 'Courier New', monospace;
    text-align: left;
    transition: all 0.3s ease;
}

.code-animation:hover {
    box-shadow: 0 0 48px 16px #764ba2, 0 0 16px 4px #667eea;
    filter: drop-shadow(0 0 24px #764ba2cc);
    transform: translate(-50%, -50%) scale(1.05);
}

.code-line {
    margin-bottom: 8px;
    line-height: 1.7;
}

.code-keyword {
    color: #ffb86c;
    font-weight: bold;
    text-shadow: 0 0 12px #ffb86c, 0 0 24px #ffb86c88;
}

.code-function {
    color: #8be9fd;
    font-weight: bold;
    text-shadow: 0 0 12px #8be9fd, 0 0 24px #8be9fd88;
}

.code-string {
    color: #f1fa8c;
    text-shadow: 0 0 12px #f1fa8c, 0 0 24px #f1fa8c88;
}

.code-bracket {
    color: #bd93f9;
    text-shadow: 0 0 12px #bd93f9, 0 0 24px #bd93f988;
}

.code-indent {
    color: transparent;
}

@keyframes codeGlow {
    10%, 100% { opacity: 0.7; }
    100% { opacity: 0.7; }
}

@keyframes typewriter {
    0% { opacity: 0; }
    50% { opacity: 0.2; }
    100% { opacity: 0.2; }
}

/* Technology Stack Styles */
.tech-stack {
    margin-top: 3rem;
}

.tech-stack h3 {
    font-size: 1.2rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.tech-logo {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: poPoppins;
    transition: all 0.3s ease;
    animation: techFloat 3s ease-in-out infinite;
}

.tech-logo:nth-child(even) {
    animation-delay: -1.5s;
}

.tech-logo:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.tech-logo::after {
    content: attr(data-tech);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tech-logo:hover::after {
    opacity: 1;
}

.tech-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.tech-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0.8);
}

.tech-logo:hover .tech-icon,
.tech-logo:hover .tech-icon-img {
    transform: scale(1.2);
}

.tech-logo:hover .tech-icon-img {
    filter: brightness(1);
}

/* Specific tech icon colors */
@keyframes techFloat {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #667eea;
    border-bottom: 2px solid #667eea;
    transform: rotate(45deg);
}

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

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    background: #111111;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.9rem;
    color: #888;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.profile-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
    box-shadow: none;
}

/* Experience Section */
.experience {
    background: #0a0a0a;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 120px;
}

.timeline-dot {
    position: absolute;
    left: 41px;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 4px solid #0a0a0a;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-date {
    color: #888;
    font-weight: 500;
    margin-bottom: 1rem;
    display: block;
}

.timeline-content ul {
    list-style: none;
    margin-top: 1rem;
}

.timeline-content li {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
}

/* Projects Section */
.projects {
    background: #111111;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.project-image {
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: white;
    font-size: 2rem;
    text-decoration: none;
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.project-content p {
    color: #b0b0b0;
    margin-bottom: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.project-links {
    display: flex;
    gap: 1rem;
}

.project-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.project-links a:hover {
    color: #764ba2;
}

/* Skills Section */
.skills {
    background: #0a0a0a;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.skill-category h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #667eea;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    display: block;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 500;
}

.skill-bar {
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    width: 0;
    transition: width 1s ease;
}

/* Contact Section */
.contact {
    background: #111111;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.contact-info p {
    color: #b0b0b0;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #b0b0b0;
}

.contact-item i {
    color: #667eea;
    width: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 2rem 0;
    text-align: center;
    color: #888;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .hero-container {
    gap: 2rem;
  }
  .about-content, .contact-content {
    gap: 2rem;
  }
  .projects-grid, .skills-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .hero-bg-animation {
    width: 220px;
    height: 220px;
    top: -60px;
  }
  .code-animation {
    font-size: 1.1rem;
  }
  .about-image .image-placeholder {
    width: 160px;
    height: 160px;
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.98);
    width: 100vw;
    min-height: 100vh;
    height: 100vh;
    text-align: center;
    transition: left 0.3s;
    padding: 2.5rem 0 1.5rem 0;
    z-index: 2000;
    box-shadow: 0 4px 32px rgba(0,0,0,0.15);
    overflow-y: auto;
    overflow-x: hidden;
    /* Custom scrollbar styling */
    scrollbar-width: thin;
    scrollbar-color: #667eea rgba(255, 255, 255, 0.1);
  }
  
  /* Webkit scrollbar styling for mobile nav-menu */
  .nav-menu::-webkit-scrollbar {
    width: 6px;
  }
  
  .nav-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
  }
  
  .nav-menu::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 3px;
  }
  
  .nav-menu::-webkit-scrollbar-thumb:hover {
    background: #764ba2;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-link {
    display: block;
    font-size: 1.3rem;
    padding: 1.2rem 0;
    margin: 0.2rem 0;
    color: #fff !important;
    width: 100%;
    border-radius: 0;
    transition: background 0.2s, color 0.2s;
  }
  .nav-link:active, .nav-link:hover {
    background: rgba(102, 126, 234, 0.08);
    color: #667eea !important;
  }
  .theme-toggle {
    display: block;
    margin: 2rem auto 0 auto;
    font-size: 2rem;
    color: #fff;
    background: none;
    border: none;
    cursor: poPoppins;
    transition: color 0.2s;
  }
  .theme-toggle:active, .theme-toggle:hover {
    color: #667eea;
  }
  .nav-toggle {
    display: flex;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-bg-animation {
    width: 180px;
    height: 180px;
    top: -40px;
  }
  .code-animation {
    font-size: 0.95rem;
  }
  .about-content, .contact-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  .about-image .image-placeholder {
    width: 120px;
    height: 120px;
    font-size: 2rem;
  }
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    padding-left: 60px;
  }
  .timeline-dot {
    left: 11px;
  }
  .projects-grid, .skills-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .project-image {
    height: 140px;
  }
  .footer {
    padding: 1rem 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 5px;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .hero-bg-animation {
    width: 120px;
    height: 120px;
    top: -20px;
  }
  .code-animation {
    font-size: 0.7rem;
  }
  .about-image .image-placeholder {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }
  .btn {
    padding: 8px 14px;
    font-size: 0.8rem;
  }
  .project-image {
    height: 90px;
  }
  .project-content {
    padding: 0.7rem;
  }
  .footer {
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 1rem;
  }
  .section-title {
    font-size: 0.9rem;
  }
  .btn {
    padding: 6px 8px;
    font-size: 0.7rem;
  }
  .hero-bg-animation {
    width: 70px;
    height: 70px;
    top: -10px;
  }
  .code-animation {
    font-size: 0.5rem;
  }
}



/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: poPoppins;
    color: #ffffff;
    transition: color 0.3s ease;
    margin-left: 1rem;
}

.theme-toggle:hover {
    color: #667eea;
}

/* Light Mode Styles */
body.light-mode {
    color: #333333;
    background: #f0f2f5;
}

body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
body.light-mode .nav-link,
body.light-mode .theme-toggle,
body.light-mode .nav-menu {
    color: #222 !important;
}
body.light-mode .nav-link:hover,
body.light-mode .theme-toggle:hover {
    color: #667eea !important;
}
body.light-mode .bar {
    background: #222 !important;
}

/* Consistent navbar font style and size in both modes, non-bold */
.nav-link {
    font-family: 'Poppins', 'Montserrat', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    background: none;
    transition: color 0.3s;
}

.nav-logo span {
    font-family: 'Poppins', 'Montserrat', 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: unset;
}

body.light-mode .nav-link {
    color: #222 !important; /* or #333 for a softer black */
    font-family: 'Poppins', 'Montserrat', 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

body.light-mode .nav-link:hover {
    color: #667eea !important;
}

body.light-mode .nav-link.active {
    color: #667eea !important;
}

body.light-mode .nav-link::after {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.light-mode .nav-logo span {
    font-family: 'Poppins', 'Montserrat', 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: unset !important;
}

body.light-mode .hero {
    background: linear-gradient(135deg, #e0e2e5 0%, #f0f2f5 50%, #ffffff 100%);
}

body.light-mode .hero-title {
    color: #333333;
}

body.light-mode .hero-subtitle {
    color: #667eea;
}

body.light-mode .hero-description {
    color: #555555;
}

body.light-mode .hero-bg-animation {
    background: radial-gradient(circle, #22243a 90%, #111 100%);
    opacity: 1;
}

body.light-mode .hero-bg-animation::before {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0.1;
}

body.light-mode .shape {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.4;
}

body.light-mode .code-animation {
    color: #222 !important;
    text-shadow: 0 0 12px #fff, 0 0 24px #fff;
}

body.light-mode .code-keyword {
    color: #d9534f;
    text-shadow: 0 0 12px #d9534f, 0 0 24px #d9534f88;
}

body.light-mode .code-function {
    color: #5cb85c;
    text-shadow: 0 0 12px #5cb85c, 0 0 24px #5cb85c88;
}

body.light-mode .code-string {
    color: #f0ad4e;
    text-shadow: 0 0 12px #f0ad4e, 0 0 24px #f0ad4e88;
}

body.light-mode .code-bracket {
    color: #5bc0de;
    text-shadow: 0 0 12px #5bc0de, 0 0 24px #5bc0de88;
}

body.light-mode .tech-stack h3 {
    color: #667eea;
}

body.light-mode .tech-logo {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.2);
}

body.light-mode .tech-logo:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: #667eea;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

body.light-mode .tech-logo::after {
    background: rgba(255, 255, 255, 0.9);
    color: #333333;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

body.light-mode .tech-icon-img {
    filter: brightness(1);
}

body.light-mode .tech-logo:hover .tech-icon-img {
    filter: brightness(1.2);
}

body.light-mode .scroll-arrow {
    border-right: 2px solid #667eea;
    border-bottom: 2px solid #667eea;
}

body.light-mode .section-title {
    background: none !important;
    -webkit-text-fill-color: initial !important;
    background-clip: initial !important;
    color: #222 !important;
}

body.light-mode .about {
    background: #ffffff;
}

body.light-mode .about-text p {
    color: #555555;
}

body.light-mode .stat-label {
    color: #777;
}

body.light-mode .image-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.light-mode .experience {
    background: #f0f2f5;
}

body.light-mode .timeline::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.light-mode .timeline-dot {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 4px solid #f0f2f5;
}

body.light-mode .timeline-content h3 {
    color: #667eea;
}

body.light-mode .timeline-content h4 {
    color: #333333;
}

body.light-mode .timeline-date {
    color: #777;
}

body.light-mode .timeline-content li {
    color: #555555;
}

body.light-mode .timeline-content li::before {
    color: #667eea;
}

body.light-mode .projects {
    background: #ffffff;
}

body.light-mode .project-card {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

body.light-mode .project-card:hover {
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

body.light-mode .project-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.light-mode .project-overlay {
    background: rgba(255, 255, 255, 0.8);
}

body.light-mode .project-link {
    color: #333333;
}

body.light-mode .project-content h3 {
    color: #667eea;
}

body.light-mode .project-content p {
    color: #555555;
}

body.light-mode .tech-tag {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

body.light-mode .project-links a {
    color: #667eea;
}

body.light-mode .project-links a:hover {
    color: #764ba2;
}

body.light-mode .skills {
    background: #f0f2f5;
}

body.light-mode .skill-category h3 {
    color: #667eea;
}

body.light-mode .skill-name {
    color: #333333;
}

body.light-mode .skill-bar {
    background: #e0e0e0;
}

body.light-mode .skill-progress {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

body.light-mode .contact {
    background: #ffffff;
}

body.light-mode .contact-info h3 {
    color: #667eea;
}

body.light-mode .contact-info p {
    color: #555555;
}

body.light-mode .contact-item {
    color: #555555;
}

body.light-mode .contact-item i {
    color: #667eea;
}

body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    color: #333333;
}

body.light-mode .form-group input::placeholder,
body.light-mode .form-group textarea::placeholder {
    color: #777;
}

body.light-mode .form-group input:focus,
body.light-mode .form-group textarea:focus {
    border-color: #667eea;
}

body.light-mode .footer {
    background: #e0e2e5;
    color: #777;
    border-top: 1px solid #d0d0d0;
}

@media (max-width: 768px) {
    body.light-mode .nav-menu {
        background-color: rgba(255, 255, 255, 0.95);
        /* Custom scrollbar styling for light mode */
        scrollbar-color: #667eea rgba(0, 0, 0, 0.1);
    }
    
    /* Webkit scrollbar styling for light mode mobile nav-menu */
    body.light-mode .nav-menu::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
    }
}

#typewriter {
  border-right: 2px solid #fff;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  animation: blink-cursor 0.8s steps(1) infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: #fff; }
  50% { border-color: transparent; }
}

.code-animation {
    opacity: 1 !important;
}

/* Hamburger menu on right */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-toggle {
  margin-left: auto;
  order: 2;
}

/* Theme toggle always visible in nav-menu, but only visible in desktop in nav bar */
.theme-toggle {
  margin-left: 1rem;
}

@media (max-width: 768px) {
  /* Hide theme toggle in nav bar, show in nav-menu */
  .theme-toggle {
    display: block;
    margin: 2rem auto 0 auto;
  }
  .nav-container > .theme-toggle {
    display: none !important;
  }
  .nav-menu {
    flex-direction: column;
    align-items: center;
  }
  .nav-toggle {
    order: 2;
    margin-left: 0;
    margin-right: 1rem;
  }
}

@media (min-width: 769px) {
  .nav-menu .theme-toggle {
    display: none !important;
  }
  .nav-container > .theme-toggle {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .nav-container > .theme-toggle {
    display: none !important;
  }
  .nav-menu .theme-toggle {
    display: block !important;
  }
}

.shape-parallax {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    pointer-events: none;
}

/* Testimonials Section */
.testimonials {
    background: #0a0a0a;
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.testimonial-card {
    background: #181a2a;
    border-radius: 16px;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    text-align: center;
    border: 1px solid #222;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.15);
}

.testimonial-photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 3px solid #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.12);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: #b0b0b0;
    font-style: italic;
    margin-bottom: 1.2rem;
}

.testimonial-name {
    display: block;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 0.2rem;
    font-size: 1.05rem;
}

.testimonial-title {
    display: block;
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .testimonial-card {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
}

body.light-mode .testimonials {
    background: #f0f2f5;
}
body.light-mode .testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.06);
}
body.light-mode .testimonial-quote {
    color: #555;
}
body.light-mode .testimonial-name {
    color: #667eea;
}
body.light-mode .testimonial-title {
    color: #888;
}
body.light-mode .testimonial-photo {
    border: 3px solid #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
}

.blog-main {
    background: #0a0a0a;
    min-height: 100vh;
}
.blog-header {
    padding: 80px 0 40px 0;
    text-align: center;
}
.blog-list {
    padding-bottom: 80px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: #181a2a;
    border-radius: 12px;
    padding: 2rem;
    color: #fff;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 16px 40px rgba(102, 126, 234, 0.15);
}
.blog-title {
    color: #667eea;
    margin-bottom: 0.5rem;
}
.blog-date {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: block;
}
.blog-summary {
    color: #b0b0b0;
    margin-bottom: 1.2rem;
}
.blog-readmore {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}
.blog-readmore:hover {
    color: #764ba2;
}

body.light-mode .blog-main {
    background: #f0f2f5;
}
body.light-mode .blog-card {
    background: #fff;
    color: #222;
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.06);
}
body.light-mode .blog-title {
    color: #667eea;
}
body.light-mode .blog-date {
    color: #888;
}
body.light-mode .blog-summary {
    color: #555;
}
body.light-mode .blog-readmore {
    color: #667eea;
}
body.light-mode .blog-readmore:hover {
    color: #764ba2;
}

pre, code {
    font-family: 'Fira Mono', 'Consolas', 'Menlo', 'Monaco', monospace;
    font-size: 1em;
}
pre {
    border-radius: 8px;
    padding: 1.1em 1.2em;
    margin: 1.5em 0;
    overflow-x: auto;
    line-height: 1.6;
    box-shadow: 0 2px 16px rgba(102,126,234,0.07);
}
code {
    border-radius: 4px;
    padding: 0.2em 0.4em;
}

/* Make sure Prism.js theme is not overridden */
pre[class*="language-"] {
    background: #232136 !important;
    color: #fff !important;
}
code[class*="language-"] {
    background: none !important;
    color: inherit !important;
    padding: 0;
}

.spinning-tech-stack {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto 40px auto;
}

.spin-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #181a2a;
  color: #00eaff;
  border-radius: 50%;
  width: 120px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: bold;
  z-index: 2;
  box-shadow: 0 0 30px #00eaff44;
}

.spin-items {
  position: absolute;
  width: 100%; height: 100%;
  top: 0; left: 0;
  animation: spin 12s linear infinite;
}

.spin-item {
  position: absolute;
  width: 100px; height: 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #222a44cc;
  border-radius: 16px;
  box-shadow: 0 4px 16px #00eaff22;
  color: #fff;
  font-weight: 500;
  transition: transform 0.3s;
}

.spin-item img {
  width: 48px; height: 48px; margin-bottom: 8px;
}

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

/* Snackbar Styles */
.snackbar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #181a2a;
    color: #fff;
    padding: 0;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 90%;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.snackbar.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.snackbar.success {
    background: #1a5f7a;
    border-color: #2dd4bf;
}

.snackbar.error {
    background: #7a1a1a;
    border-color: #f87171;
}

.snackbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

#snackbar-message {
    flex: 1;
    margin-right: 12px;
    font-size: 14px;
    line-height: 1.4;
}

.snackbar-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.snackbar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Light mode styles */
.light-mode .snackbar {
    background: #fff;
    color: #222;
    border: 1px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.light-mode .snackbar.success {
    background: #ecfdf5;
    border-color: #10b981;
    color: #065f46;
}

.light-mode .snackbar.error {
    background: #fef2f2;
    border-color: #ef4444;
    color: #991b1b;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .snackbar {
        bottom: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .snackbar-content {
        padding: 12px 16px;
    }
    
    #snackbar-message {
        font-size: 13px;
    }
}

/* Table styles for dark mode */
body:not(.light-mode) table,
html:not(.light-mode) table,
table {
  background: #181a2a;
  color: #fff;
  border-collapse: collapse;
}

body:not(.light-mode) th,
body:not(.light-mode) td,
html:not(.light-mode) th,
html:not(.light-mode) td,
th, td {
  border: 1px solid #333;
  padding: 12px;
  background: #181a2a;
  color: #fff;
}

body:not(.light-mode) thead th,
html:not(.light-mode) thead th,
thead th {
  background: #22243a;
  color: #fff;
}

body:not(.light-mode) tr:nth-child(even),
html:not(.light-mode) tr:nth-child(even),
tr:nth-child(even) {
  background: #232136;
}


