* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --bg-dark: #0a0e27;
    --bg-darker: #050710;
    --accent-color: #00d4ff;
    --accent-secondary: #00f0ff;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border-color: #1a1f3a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
}

.logo-accent {
    color: var(--accent-color);
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Status Bar */
.status-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 50, 50, 0.3);
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #ff3333;
    border-radius: 50%;
    animation: heartbeat 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px #ff3333, 0 0 20px rgba(255, 51, 51, 0.5);
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px #ff3333, 0 0 20px rgba(255, 51, 51, 0.5);
    }
    15% {
        transform: scale(1.3);
        box-shadow: 0 0 15px #ff3333, 0 0 30px rgba(255, 51, 51, 0.7);
    }
    30% {
        transform: scale(1);
        box-shadow: 0 0 10px #ff3333, 0 0 20px rgba(255, 51, 51, 0.5);
    }
    45% {
        transform: scale(1.2);
        box-shadow: 0 0 12px #ff3333, 0 0 25px rgba(255, 51, 51, 0.6);
    }
    60% {
        transform: scale(1);
        box-shadow: 0 0 10px #ff3333, 0 0 20px rgba(255, 51, 51, 0.5);
    }
}

.status-text {
    color: #ff5555;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-location {
    color: var(--text-secondary);
    font-size: 0.75rem;
    border-left: 1px solid rgba(255, 50, 50, 0.3);
    padding-left: 1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(0, 212, 255, 0.05) 25%, rgba(0, 212, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(0, 212, 255, 0.05) 75%, rgba(0, 212, 255, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
    animation: float 20s infinite ease-in-out;
}

.element-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    left: 10%;
    animation: float 15s infinite ease-in-out reverse;
}

.element-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: -100px;
    animation: float 25s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(30px) translateX(20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
}

.terminal-window {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.terminal-header {
    background: rgba(20, 25, 45, 0.8);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red {
    background: #ff5f56;
}

.terminal-button.yellow {
    background: #ffbd2e;
}

.terminal-button.green {
    background: #27c93f;
}

.terminal-body {
    padding: 1.5rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    text-align: left;
}

.terminal-line {
    color: var(--accent-color);
    margin: 0.5rem 0;
}

.prompt {
    color: var(--accent-secondary);
}

.terminal-output {
    color: var(--text-primary);
    margin: 0.5rem 0;
    padding-left: 1rem;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
}

.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

/* Stats Section */
.stats {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 4rem 2rem;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(10, 14, 39, 0.5);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--accent-color);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Preview Section */
.preview-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.preview-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.preview-card {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    background: rgba(10, 14, 39, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: var(--transition);
}

.preview-card:hover::before {
    left: 100%;
}

.preview-card:hover {
    border-color: var(--accent-color);
    background: rgba(0, 212, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.preview-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.preview-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.card-link:hover {
    color: var(--accent-secondary);
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-content p {
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.social-link:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .hamburger {
        display: flex;
    }

    .status-bar {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
    }

    .terminal-window {
        margin-bottom: 2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .preview-section {
        padding: 3rem 1rem;
    }

    .preview-section h2 {
        font-size: 2rem;
    }

    .footer-content {
        justify-content: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-link {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ==================== ABOUT PAGE STYLES ==================== */

/* About Hero */
.about-hero {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.profile-image-container {
    flex-shrink: 0;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    border: 3px solid var(--accent-color);
}

.profile-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bg-dark);
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.profile-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-icon {
    font-size: 1rem;
}

/* About Main Content */
.about-main {
    padding: 4rem 2rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Resume Sections */
.resume-section {
    margin-bottom: 4rem;
}

.resume-section.small {
    margin-bottom: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.section-icon {
    font-size: 1.5rem;
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: 2px solid var(--bg-dark);
    transform: translateX(-5px);
}

.timeline-item.current .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 10px var(--accent-color);
}

.timeline-content {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.1);
}

.timeline-item.current .timeline-content {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.job-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.job-header .company {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.job-header .date {
    display: block;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}

.job-duties {
    margin-top: 1rem;
    padding-left: 1.25rem;
}

.job-duties li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.skill-category {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: var(--transition);
}

.skill-category:hover {
    border-color: var(--accent-color);
}

.skill-category h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 0.35rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

.skill-tag.highlight {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.skill-tag.soft {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

/* Education Cards */
.education-card {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.education-card:hover {
    border-color: var(--accent-color);
}

.education-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.education-card .degree {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.education-card .date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-family: 'JetBrains Mono', monospace;
}

.cert-list {
    margin-top: 0.75rem;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.cert-list li {
    margin-bottom: 0.25rem;
}

/* Certification Grid */
.cert-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.cert-item:hover {
    border-color: var(--accent-color);
    background: rgba(0, 212, 255, 0.05);
}

.cert-badge {
    background: var(--accent-color);
    color: var(--bg-dark);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}

/* Training Grid */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem;
}

.training-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(10, 14, 39, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.training-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.training-provider {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    flex-shrink: 0;
}

/* Award Card */
.award-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
}

.award-icon {
    font-size: 2.5rem;
}

.award-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.award-year {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
}

/* Language Item */
.language-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    width: fit-content;
}

.language {
    font-weight: 600;
    font-size: 1rem;
}

.proficiency {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* About Page Responsive */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .contact-badges {
        justify-content: center;
    }

    .profile-info h1 {
        font-size: 2rem;
    }

    .two-column {
        grid-template-columns: 1fr;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .training-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== PROJECTS PAGE STYLES ==================== */

/* Projects Hero */
.projects-hero {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.projects-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.project-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.project-stat {
    text-align: center;
}

.project-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'JetBrains Mono', monospace;
}

.project-stat .stat-name {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Projects Main */
.projects-main {
    padding: 4rem 2rem;
}

.projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.projects-section {
    margin-bottom: 5rem;
}

.projects-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.projects-section .section-desc {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Ventures Grid */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.venture-card {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-secondary));
    opacity: 0;
    transition: var(--transition);
}

.venture-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.venture-card:hover::before {
    opacity: 1;
}

.venture-card.featured {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.venture-card.featured::before {
    opacity: 1;
}

.venture-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.venture-icon {
    font-size: 2rem;
}

.venture-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.venture-status {
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'JetBrains Mono', monospace;
}

.venture-status.active {
    background: rgba(39, 201, 63, 0.2);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.3);
}

.venture-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.venture-tagline {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.venture-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.venture-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.venture-tags .tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.venture-tags .tag.highlight {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: var(--accent-color);
}

.venture-links {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.venture-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.venture-link:hover {
    color: var(--accent-secondary);
}

/* Code Projects Grid */
.code-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.code-project-card {
    background: rgba(10, 14, 39, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.code-project-card:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.language-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.language-badge.python .lang-dot {
    background: #3572A5;
}

.language-badge.csharp .lang-dot {
    background: #178600;
}

.language-badge.javascript .lang-dot {
    background: #f1e05a;
}

.project-type {
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.code-project-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.code-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.code-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.code-features .feature {
    font-size: 0.8rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.code-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    margin-top: auto;
}

.code-stats {
    display: flex;
    gap: 1rem;
}

.code-stat {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.code-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}

.code-link:hover {
    color: var(--accent-color);
}

.github-icon {
    display: flex;
    align-items: center;
}

/* Coming Soon Section */
.coming-soon-section {
    text-align: center;
}

.coming-soon-card {
    background: rgba(10, 14, 39, 0.3);
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.coming-soon-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-soon-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.coming-soon-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Projects Page Responsive */
@media (max-width: 768px) {
    .projects-hero h1 {
        font-size: 2.5rem;
    }

    .project-stats {
        gap: 2rem;
    }

    .ventures-grid,
    .code-projects-grid {
        grid-template-columns: 1fr;
    }

    .code-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ==================== CONTACT PAGE STYLES ==================== */

/* Contact Hero */
.contact-hero {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.contact-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Contact Main */
.contact-main {
    padding: 4rem 2rem;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-icon {
    font-size: 1.5rem;
}

.form-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.required {
    color: #ff5555;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.6;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0b0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 180px;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.form-message.success {
    background: rgba(39, 201, 63, 0.1);
    border: 1px solid rgba(39, 201, 63, 0.3);
}

.form-message.error {
    background: rgba(255, 85, 85, 0.1);
    border: 1px solid rgba(255, 85, 85, 0.3);
}

.message-icon {
    font-size: 1.5rem;
}

.form-message strong {
    display: block;
    margin-bottom: 0.25rem;
}

.form-message p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item:first-of-type {
    padding-top: 0;
}

.info-icon {
    font-size: 1.25rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.info-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    word-break: break-all;
}

.info-link:hover {
    color: var(--accent-secondary);
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.social-card:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(0, 212, 255, 0.05);
}

.social-card svg {
    opacity: 0.8;
}

.social-card:hover svg {
    opacity: 1;
}

/* Response Time Card */
.response-time {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
}

.response-icon {
    font-size: 1.5rem;
}

.response-time h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.response-time p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Page Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        order: -1;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .submit-btn {
        width: 100%;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* ==================== ADVENTURES PAGE STYLES ==================== */

/* Adventures Hero */
.adventures-hero {
    padding: 120px 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.adventures-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.adventures-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adventure-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.adventure-stat {
    text-align: center;
}

.adventure-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'JetBrains Mono', monospace;
}

.adventure-stat .stat-name {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Current Adventure Banner */
.current-adventure {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 240, 255, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    padding: 3rem 2rem;
}

.current-adventure-container {
    max-width: 1100px;
    margin: 0 auto;
}

.current-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 50, 50, 0.2);
    border: 1px solid rgba(255, 50, 50, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ff5555;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.current-badge .pulse {
    width: 8px;
    height: 8px;
    background: #ff5555;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.current-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.current-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.current-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.current-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.current-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-icon {
    font-size: 1.1rem;
}

.current-image {
    flex-shrink: 0;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.image-placeholder span {
    font-size: 3rem;
}

.image-placeholder p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.image-placeholder.antarctica {
    background: linear-gradient(135deg, rgba(200, 230, 255, 0.1), rgba(150, 200, 255, 0.05));
    border-color: rgba(150, 200, 255, 0.3);
}

/* Adventures Main */
.adventures-main {
    padding: 4rem 2rem;
}

.adventures-container {
    max-width: 1000px;
    margin: 0 auto;
}

.adventures-section {
    margin-bottom: 4rem;
}

.adventures-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Adventure Timeline */
.adventure-timeline {
    position: relative;
    padding-left: 3rem;
}

.adventure-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--border-color));
}

.adventure-entry {
    position: relative;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
}

.adventure-entry:last-child {
    margin-bottom: 0;
}

.entry-date {
    position: absolute;
    left: -3rem;
    top: 0;
    transform: translateX(-50%);
    background: var(--bg-dark);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    min-width: 60px;
}

.adventure-entry.featured .entry-date {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.entry-date .month {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 1px;
}

.entry-date .year {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'JetBrains Mono', monospace;
}

.entry-content {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    margin-left: 2rem;
    transition: var(--transition);
}

.adventure-entry.featured .entry-content {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(0, 212, 255, 0.05);
}

.entry-content:hover {
    border-color: var(--accent-color);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.1);
}

.entry-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.entry-flag {
    font-size: 2rem;
}

.entry-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.entry-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.entry-status {
    margin-left: auto;
    font-size: 0.7rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entry-status.active {
    background: rgba(39, 201, 63, 0.2);
    color: #27c93f;
    border: 1px solid rgba(39, 201, 63, 0.3);
}

.entry-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.entry-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.place-card {
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.place-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.place-card.current {
    border-color: rgba(0, 212, 255, 0.4);
    background: rgba(0, 212, 255, 0.05);
}

.place-card.coming {
    border-style: dashed;
    opacity: 0.7;
}

.place-flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.place-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.place-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.place-status {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 500;
}

/* Bucket List */
.bucket-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.bucket-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(10, 14, 39, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: var(--transition);
}

.bucket-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
}

.bucket-check {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.bucket-item.completed .bucket-check {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-dark);
    font-weight: 700;
}

.bucket-item.completed .bucket-text {
    text-decoration: line-through;
    color: var(--text-secondary);
}

.bucket-text {
    font-size: 0.95rem;
}

/* Adventures Page Responsive */
@media (max-width: 768px) {
    .adventures-hero h1 {
        font-size: 2.5rem;
    }

    .current-content {
        grid-template-columns: 1fr;
    }

    .current-image {
        display: none;
    }

    .adventure-timeline {
        padding-left: 2rem;
    }

    .entry-date {
        left: -2rem;
        min-width: 50px;
        padding: 0.35rem;
    }

    .entry-date .month {
        font-size: 0.6rem;
    }

    .entry-date .year {
        font-size: 0.75rem;
    }

    .entry-content {
        margin-left: 1rem;
    }

    .entry-header {
        flex-wrap: wrap;
    }

    .entry-status {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* ==========================================
   GALLERY PAGE STYLES
   ========================================== */

.gallery-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 60px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    position: relative;
}

.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 240, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-hero-content {
    position: relative;
    z-index: 1;
}

.gallery-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.gallery-stat {
    text-align: center;
}

.gallery-stat .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    font-family: 'JetBrains Mono', monospace;
}

.gallery-stat .stat-name {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-main {
    padding: 4rem 2rem;
    background: var(--bg-darker);
    min-height: 50vh;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.filter-btn.active {
    background: var(--accent-color);
    color: var(--bg-dark);
    border-color: var(--accent-color);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--bg-card);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Empty State */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 2px dashed var(--border-color);
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.gallery-empty p {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-hint {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
}

.lightbox-caption {
    text-align: center;
    padding: 1rem;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--accent-color);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2.5rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Gallery Responsive */
@media (max-width: 768px) {
    .gallery-hero h1 {
        font-size: 2.5rem;
    }
    
    .gallery-stats {
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

    .places-grid {
        grid-template-columns: 1fr;
    }

    .bucket-list {
        grid-template-columns: 1fr;
    }
}
