:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Google Brand Accents (Optimized for dark mode) */
    --google-blue: #5c93fc;
    --google-red: #f25f5c;
    --google-yellow: #ffd043;
    --google-green: #4dbb6f;
    
    --bg-dark: #070b13;
    --bg-card: rgba(13, 20, 38, 0.45);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --glow-blue: rgba(66, 133, 244, 0.12);
    --glow-green: rgba(52, 168, 83, 0.12);
    --glow-red: rgba(234, 67, 53, 0.12);
    --glow-yellow: rgba(251, 188, 5, 0.12);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --btn-text: #070b13;
}

[data-theme="light"] {
    /* Google Brand Accents (Optimized for light mode visibility) */
    --google-blue: #1a73e8;
    --google-red: #ea4335;
    --google-yellow: #e37400; /* Darker yellow for accessibility/readability on light background */
    --google-green: #1e8e3e;
    
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.7);
    --border-glass: rgba(15, 23, 42, 0.08);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    
    --glow-blue: rgba(26, 115, 232, 0.06);
    --glow-green: rgba(30, 142, 62, 0.06);
    --glow-red: rgba(234, 67, 53, 0.06);
    --glow-yellow: rgba(249, 171, 0, 0.06);
    --btn-text: #ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 10% 20%, var(--glow-blue) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, var(--glow-green) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, var(--glow-yellow) 0%, transparent 50%),
        radial-gradient(circle at 80% 10%, var(--glow-red) 0%, transparent 35%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height:1.8;
}

/* Typography & Headlines */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
    font-weight: 700;
}

/* Floating Glassmorphic Navbar */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1200px;
    margin:20px auto;
    padding:15px 30px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    position: relative;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.theme-toggle-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    width: 48px;
    height: 48px;
    outline: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(66, 133, 244, 0.3);
}

[data-theme="light"] .theme-toggle-btn:hover {
    box-shadow: 0 8px 32px rgba(26, 115, 232, 0.2);
}

/* Mobile nav toggle button styles (Desktop hidden) */
.mobile-nav-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    width: 38px;
    height: 38px;
    outline: none;
    z-index: 1001;
}

.mobile-nav-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

.mobile-nav-toggle line {
    transform-origin: 12px 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle.open #line1 {
    transform: translateY(6px) rotate(45deg);
}

.mobile-nav-toggle.open #line2 {
    opacity: 0;
}

.mobile-nav-toggle.open #line3 {
    transform: translateY(-6px) rotate(-45deg);
}

/* Day/Night Icons visibility based on theme */
[data-theme="light"] .sun-icon {
    display: none;
}
[data-theme="light"] .moon-icon {
    display: block;
    color: #475569;
}
[data-theme="dark"] .sun-icon {
    display: block;
    color: var(--google-yellow);
}
[data-theme="dark"] .moon-icon {
    display: none;
}

.logo{
    font-size:1.4rem;
    font-weight:700;
    background: linear-gradient(135deg, var(--google-blue), var(--google-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 10px;
}

.nav-links a{
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration:none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.nav-links a:hover{
    color: var(--google-blue);
    background: rgba(66, 133, 244, 0.08);
    border-color: rgba(66, 133, 244, 0.2);
}

/* Hero Header Layout */
.hero-header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 40px;
    position: relative;
    text-align: center;
    box-sizing: border-box;
}

.hero-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 40px auto;
    z-index: 10;
}

/* Floating status & greeting badges */
.hero-badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 25px;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #4dbb6f; /* Google Green */
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #4dbb6f;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(77, 187, 111, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(77, 187, 111, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(77, 187, 111, 0);
    }
}

.badge-greeting {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(66, 133, 244, 0.1);
    border: 1px solid rgba(66, 133, 244, 0.2);
    color: var(--google-blue);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Typography refinements */
.hero-title {
    font-size: 5.5rem;
    font-weight: 800;
    line-height: 1.1;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--text-primary) 30%, var(--google-blue) 70%, var(--google-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -3px;
    margin: 0 0 20px;
}

.hero-subtitle {
    max-width: 680px;
    margin: 0 auto 30px;
    color: var(--text-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Floating skills tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    max-width: 750px;
}

.hero-tag-pill {
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-tag-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Buttons */
.hero-buttons{
    margin-top:10px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    font-weight:600;
    font-size:0.95rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--google-blue);
    color: #070b13;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: white;
    color: #070b13;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--border-glass);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Glowing Button Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-glow:hover::after {
    opacity: 1;
    left: 120%;
    top: 120%;
}

/* Scroll indicator animation */
.scroll-indicator-container {
    z-index: 10;
    margin-top: auto;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-muted);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

.scroll-indicator .arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin-top: 8px;
    animation: scrollArrow 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 18px;
        opacity: 0;
    }
}

@keyframes scrollArrow {
    0% {
        transform: rotate(45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(45deg) translate(4px, 4px);
        opacity: 0;
    }
}

/* Sections */

section{
    max-width:1200px;
    margin:auto;
    padding:80px 30px;
}

section h2{
    color: var(--google-blue);
    margin-bottom:30px;
    font-size:2rem;
}

/* Cards Grid & Glass Cards */
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.card{
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.card:hover{
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.card h3{
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom:15px;
    font-weight: 600;
}

.card h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.card h3 a:hover {
    color: var(--google-blue) !important;
}

.card p{
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Color Themed Borders (Google Aesthetics) */
.card-blue {
    border-top: 4px solid var(--google-blue);
}
.card-blue:hover {
    box-shadow: 0 15px 35px rgba(92, 147, 252, 0.15);
    border-color: var(--google-blue);
}

.card-green {
    border-top: 4px solid var(--google-green);
}
.card-green:hover {
    box-shadow: 0 15px 35px rgba(77, 187, 111, 0.15);
    border-color: var(--google-green);
}

.card-red {
    border-top: 4px solid var(--google-red);
}
.card-red:hover {
    box-shadow: 0 15px 35px rgba(242, 95, 92, 0.15);
    border-color: var(--google-red);
}

.card-yellow {
    border-top: 4px solid var(--google-yellow);
}
.card-yellow:hover {
    box-shadow: 0 15px 35px rgba(255, 208, 67, 0.15);
    border-color: var(--google-yellow);
}



/* Skill pill tags */
.card-skill {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pill-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.pill-blue {
    background: rgba(92, 147, 252, 0.1);
    color: #8cafff;
    border: 1px solid rgba(92, 147, 252, 0.2);
}
.pill-blue:hover {
    background: var(--google-blue);
    color: #070b13;
}

.pill-green {
    background: rgba(77, 187, 111, 0.1);
    color: #7aff9c;
    border: 1px solid rgba(77, 187, 111, 0.2);
}
.pill-green:hover {
    background: var(--google-green);
    color: #070b13;
}

.pill-red {
    background: rgba(242, 95, 92, 0.1);
    color: #ff9d9b;
    border: 1px solid rgba(242, 95, 92, 0.2);
}
.pill-red:hover {
    background: var(--google-red);
    color: #070b13;
}

.pill-yellow {
    background: rgba(255, 208, 67, 0.1);
    color: #ffe694;
    border: 1px solid rgba(255, 208, 67, 0.2);
}
.pill-yellow:hover {
    background: var(--google-yellow);
    color: #070b13;
}

/* Project Specific Styles */
.card-project {
    padding-top: 45px; /* Space for absolute badge */
}

.project-tag {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-blue { color: var(--google-blue); }
.tag-green { color: var(--google-green); }
.tag-red { color: var(--google-red); }
.tag-yellow { color: var(--google-yellow); }

/* Timeline Tree Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--border-glass);
    border-radius: 2px;
    z-index: 0;
}

.timeline-progress-bar {
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 0%;
    background: linear-gradient(
        to bottom,
        var(--google-blue) 0%,
        var(--google-green) 50%,
        var(--google-yellow) 100%
    );
    border-radius: 2px;
    z-index: 1;
    transition: height 0.1s ease;
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -50px;
    top: 8px;
    transform: translateX(-50%) scale(0.3);
    opacity: 0;
    width: 120px;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    font-family: var(--font-heading);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.6s ease;
    z-index: 2;
}

.timeline-item.in-view .timeline-badge {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

.timeline-badge.badge-blue {
    background: var(--google-blue);
    color: #070b13;
}

.timeline-badge.badge-green {
    background: var(--google-green);
    color: #070b13;
}

.timeline-badge.badge-yellow {
    background: var(--google-yellow);
    color: #070b13;
}

.timeline-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.timeline-item.in-view .timeline-panel {
    transform: translateY(0);
    opacity: 1;
}

.timeline-panel::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 16px;
    width: 16px;
    height: 16px;
    background: #0d1426;
    border-left: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    transform: rotate(45deg);
}

.timeline-panel:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.timeline-panel h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.timeline-institution {
    display: inline-block;
    color: var(--google-blue);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-panel p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

/* About */

#about p{
    color: var(--text-secondary);
    max-width:900px;
}

/* Experience */

#experience ul{
    margin-top:15px;
    padding-left:20px;
}

#experience li{
    margin-bottom:10px;
    color: var(--text-secondary);
}

/* Contact */

#contact p{
    margin-bottom:15px;
}

a{
    color:#38bdf8;
    text-decoration:none;
}

a:hover{
    color:white;
}

/* Footer */

footer{
    text-align:center;
    padding:30px;
    margin-top:50px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#94a3b8;
}

/* Particle Background */

#particles-js{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:-1;
}

/* Mobile Optimization */
@media(max-width:768px){
    .mobile-nav-toggle {
        display: flex;
    }

    .navbar{
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 100px;
        margin: 15px;
        padding: 10px 20px;
        position: relative;
    }

    .nav-links{
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(13, 20, 38, 0.92);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: 1px solid var(--border-glass);
        border-radius: 24px;
        padding: 20px;
        gap: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        z-index: 999;
        transform: translateY(-10px);
        opacity: 0;
        transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
    }

    [data-theme="light"] .nav-links {
        background: rgba(248, 250, 252, 0.95);
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.04);
        color: var(--text-primary);
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        border: 1px solid rgba(255, 255, 255, 0.06);
        transition: var(--transition-smooth);
    }

    [data-theme="light"] .nav-links a {
        background: rgba(15, 23, 42, 0.03);
        color: var(--text-primary);
        border-color: rgba(15, 23, 42, 0.06);
    }

    .nav-links a:hover {
        background: rgba(66, 133, 244, 0.12) !important;
        color: var(--google-blue) !important;
        border-color: rgba(66, 133, 244, 0.25) !important;
    }

    .nav-links a.terminal-link:hover {
        background: rgba(77, 187, 111, 0.12) !important;
        color: var(--google-green) !important;
        border-color: rgba(77, 187, 111, 0.25) !important;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        max-width: 320px;
        margin: 30px auto 0;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    section {
        padding: 50px 20px;
    }

    section h2 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    /* Mobile Timeline tree adjustment */
    .timeline {
        padding-left: 20px;
        margin-top: 30px;
    }

    .timeline::before {
        left: 6px;
    }

    .timeline-progress-bar {
        left: 6px;
    }

    .timeline-item {
        margin-bottom: 35px;
    }

    .timeline-badge {
        position: relative;
        left: 0;
        top: 0;
        transform: scale(0.8);
        opacity: 0;
        width: fit-content;
        margin-bottom: 12px;
        display: inline-block;
        padding: 4px 10px;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .timeline-item.in-view .timeline-badge {
        transform: scale(1);
        opacity: 1;
    }

    .timeline-panel {
        padding: 20px;
        border-radius: 16px;
        transform: translateY(20px);
        opacity: 0;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .timeline-item.in-view .timeline-panel {
        transform: translateY(0);
        opacity: 1;
    }

    .timeline-panel::before {
        display: none;
    }

    .cards {
        gap: 15px;
    }

    .card {
        padding: 20px;
        border-radius: 16px;
    }

    .verify-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .verify-card h1 {
        font-size: 1.8rem;
    }

    .verify-card p {
        margin-bottom: 20px;
    }
}

/* Verification Forms */
.verify-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.verify-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.verify-card h1 {
    color: var(--google-blue);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.verify-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.verify-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.verify-card input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    background: var(--bg-dark);
    color: var(--text-primary);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.verify-card input::placeholder {
    color: var(--text-muted);
}

.verify-card input:focus {
    border-color: var(--google-blue);
    box-shadow: 0 0 12px rgba(66, 133, 244, 0.25);
    background: var(--bg-dark);
}

.verify-card button {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: var(--google-blue);
    color: var(--btn-text);
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.verify-card button:hover {
    transform: translateY(-2px);
    background: var(--text-primary);
    color: var(--bg-dark);
    box-shadow: 0 0 25px rgba(66, 133, 244, 0.5);
}

/* Contact & Request Buttons */
.contact-btn {
    display: inline-block;
    margin: 20px auto;
    padding: 15px 40px;
    border-radius: 12px;
    background: var(--google-blue);
    color: var(--btn-text);
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.contact-btn:hover {
    transform: translateY(-3px);
    background: var(--text-primary);
    color: var(--bg-dark);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.5);
}

.request-btn {
    width: 100%;
    margin-bottom: 15px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.request-btn:hover {
    background: #38bdf8;
    color: #0f172a;
    border-color: #38bdf8;
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(56, 189, 248, 0.4);
}

/* Alerts */
.alert {
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    text-align: left;
    font-weight: 500;
}

.alert-error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* Admin Dashboard Grid */
.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.2);
}

.dashboard-card h2 {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 5px;
    font-weight: 700;
}

.dashboard-card p {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* Badges for table values */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-verified {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.badge-pending {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* Interactive Background Canvas */
#interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Retro Terminal Overlay */
.terminal-link {
    display: inline-flex;
    align-items: center;
    color: var(--google-green) !important;
    border-color: rgba(77, 187, 111, 0.2) !important;
}

.terminal-link:hover {
    background: rgba(77, 187, 111, 0.1) !important;
    border-color: rgba(77, 187, 111, 0.4) !important;
    color: var(--google-green) !important;
    box-shadow: 0 0 15px rgba(77, 187, 111, 0.2);
}

.terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(7, 11, 19, 0.96);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.terminal-overlay.open {
    display: flex;
    opacity: 1;
}

.terminal-window {
    width: 100%;
    max-width: 800px;
    height: 80vh;
    max-height: 550px;
    background: rgba(13, 20, 38, 0.95);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.terminal-overlay.open .terminal-window {
    transform: scale(1);
}

.terminal-header {
    background: rgba(7, 11, 19, 0.8);
    border-bottom: 1px solid var(--border-glass);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
    z-index: 2;
}

.term-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.term-close { background: #ff5f56; }
.term-minimize { background: #ffbd2e; }
.term-maximize { background: #27c93f; }

.terminal-title {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-secondary);
    font-family: monospace;
    font-size: 0.9rem;
    pointer-events: none;
}

.terminal-body {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    color: #4dbb6f;
    text-shadow: 0 0 5px rgba(77, 187, 111, 0.3);
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}
.terminal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}
.terminal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
.terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

.terminal-output {
    word-break: break-all;
    white-space: pre-wrap;
    line-height: 1.4;
}

.term-system {
    color: var(--google-blue);
    text-shadow: 0 0 5px rgba(92, 147, 252, 0.3);
}

.term-error {
    color: var(--google-red);
    text-shadow: 0 0 5px rgba(242, 95, 92, 0.3);
}

.term-prompt {
    color: var(--google-yellow);
    margin-right: 10px;
    user-select: none;
    font-weight: bold;
}

.terminal-input-line {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.term-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #4dbb6f;
    font-family: inherit;
    font-size: inherit;
    text-shadow: inherit;
    caret-color: #4dbb6f;
}

@media (max-width: 576px) {
    .terminal-window {
        height: 90vh;
        max-height: none;
    }
    .terminal-body {
        font-size: 0.85rem;
        padding: 15px;
    }
}