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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f1419 100%);
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Glass Material Design */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 50%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #000;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0099ff 0%, #0066ff 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-social {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    gap: 8px;
}

.btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #00d4ff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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 h2 {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 24px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

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

.nav-link:hover {
    color: #00d4ff;
}

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

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

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

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

/* Hero Section */
.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
    padding-bottom: 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #666666 0%, #333333 100%);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #0066ff 0%, #0044cc 100%);
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #aaaaaa;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-card {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-photo-full {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #aaaaaa;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* Personal Statement Section - Two Column Layout */
.personal-statement {
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.statement-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.statement-card, .companies-card {
    padding: 30px;
    height: 100%;
}

.statement-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.statement-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.experience-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 153, 255, 0.1);
    border: 1px solid rgba(0, 153, 255, 0.3);
    border-radius: 40px;
    padding: 12px 24px;
}

.highlight-number {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.highlight-tags {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.highlight-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

/* Interactive Timeline Section */
.timeline-section {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Experience Grid - Fresh Start */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

/* Mobile: Stack to single column */
@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* NEW EXPERIENCE SECTION - GUARANTEED TO WORK */
.experience-new {
    padding: 80px 0;
    background: #0a0a0a;
}

.experience-new .container {
    text-align: center;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Center the last card if it's alone */
.job-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 650px;
    margin: 0 auto;
}

.job-card {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.job-card:hover::before {
    opacity: 1;
}

/* Ensure all cards have black backgrounds */
.spotify,
.espn {
    background: rgba(0, 0, 0, 0.9) !important;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 20px;
}

.logo-container {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.company-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.job-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-info h4 {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.job-dates {
    color: #aaaaaa;
    font-size: 0.85rem;
}

.job-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.job-description {
    margin-bottom: 20px;
}

.job-description p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0 0 12px 0;
    font-size: 0.9rem;
}

.job-description p:last-child {
    margin-bottom: 0;
}

.job-metrics {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-metrics .metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 120px;
}

.job-metrics .metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
}

.job-metrics .metric-label {
    font-size: 0.8rem;
    color: #aaaaaa;
    line-height: 1.2;
}

/* Company-specific colors */
.ad-results .logo-container {
    background: linear-gradient(135deg, #ff0000, #000000);
}

.ad-results::before {
    background: linear-gradient(90deg, #ff0000, #000000);
}

.aka .logo-container {
    background: linear-gradient(135deg, #ff69b4, #000000);
}

.aka::before {
    background: linear-gradient(90deg, #ff69b4, #000000);
}

.spotify .logo-container {
    background: rgba(255, 255, 255, 0.1);
}

.spotify::before {
    background: linear-gradient(90deg, #1db954, #000000);
}

.nyt .logo-container {
    background: linear-gradient(135deg, #0066cc, #000000);
}

.nyt::before {
    background: linear-gradient(90deg, #0066cc, #000000);
}

.espn .logo-container {
    background: rgba(255, 255, 255, 0.1);
}

.espn::before {
    background: linear-gradient(90deg, #ff0033, #000000);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .job-card {
        padding: 25px 20px;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .logo-container {
        width: 70px;
        height: 70px;
        align-self: center;
    }
    
    .company-logo {
        width: 45px;
        height: 45px;
    }
    
    .job-metrics {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .job-metrics .metric {
        align-items: center;
        text-align: center;
    }
}

.experience-card {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0099ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.experience-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.company-badge {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.badge-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    z-index: 2;
}

.header-info {
    flex: 1;
}

.header-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #00d4ff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-title {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.job-duration {
    color: #aaaaaa;
    font-size: 0.85rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-chip {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.achievements {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.achievements p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

.metrics {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1;
    min-width: 120px;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.8rem;
    color: #aaaaaa;
    line-height: 1.2;
}

/* Company-specific card styles */
.espn-card::before {
    background: linear-gradient(90deg, #ff0033, #000000);
}

.espn-badge {
    background: linear-gradient(135deg, #ff0033, #000000);
}

.nyt-card::before {
    background: linear-gradient(90deg, #0066cc, #000000);
}

.nyt-badge {
    background: linear-gradient(135deg, #0066cc, #000000);
}

.spotify-card::before {
    background: linear-gradient(90deg, #1db954, #000000);
}

.spotify-badge {
    background: linear-gradient(135deg, #1db954, #000000);
}

.aka-card::before {
    background: linear-gradient(90deg, #ff69b4, #000000);
}

.aka-badge {
    background: linear-gradient(135deg, #ff69b4, #000000);
}

.ad-results-card::before {
    background: linear-gradient(90deg, #ff0000, #000000);
}

.ad-results-badge {
    background: linear-gradient(135deg, #ff0000, #000000);
}

.interactive-timeline {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Timeline Track */
.timeline-track {
    position: relative;
    margin-bottom: 80px;
}

.timeline-line {
    height: 4px;
    background: linear-gradient(90deg, #00d4ff 0%, #0099ff 50%, #00d4ff 100%);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: timelineFlow 3s infinite;
}

@keyframes timelineFlow {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Timeline Nodes */
.timeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: -42px;
}

.timeline-node {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-node:hover {
    transform: translateY(-10px) scale(1.1);
    z-index: 10;
}

.node-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.9);
    border: 4px solid #00d4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.timeline-node:hover .node-logo {
    border-color: #ffffff;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    transform: scale(1.1);
}

.company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.fallback-icon {
    width: 60px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #00d4ff;
    font-size: 24px;
}

.node-year {
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid #00d4ff;
    margin-top: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-node:hover .node-year {
    background: #00d4ff;
    color: #000000;
    transform: scale(1.05);
}


/* Particle Swirl Effect */
.timeline-node::before,
.timeline-node::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-node::before {
    top: 20px;
    left: -15px;
    animation: orbit1 3s linear infinite;
    animation-delay: 0s;
}

.timeline-node::after {
    bottom: 20px;
    right: -15px;
    animation: orbit2 3s linear infinite;
    animation-delay: 1.5s;
}

.timeline-node:hover::before,
.timeline-node:hover::after {
    opacity: 0.8;
}

/* Additional particles using pseudo-elements of child elements */
.node-logo::before,
.node-logo::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 212, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.node-logo::before {
    top: 10px;
    left: -20px;
    animation: orbit3 2.5s linear infinite;
    animation-delay: 0.8s;
}

.node-logo::after {
    bottom: 10px;
    right: -20px;
    animation: orbit4 2.5s linear infinite;
    animation-delay: 2.3s;
}

.timeline-node:hover .node-logo::before,
.timeline-node:hover .node-logo::after {
    opacity: 1;
}

/* Orbit animations */
@keyframes orbit1 {
    0% {
        transform: rotate(0deg) translateX(25px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(25px) rotate(-360deg);
    }
}

@keyframes orbit2 {
    0% {
        transform: rotate(0deg) translateX(25px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(25px) rotate(-360deg);
    }
}

@keyframes orbit3 {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

@keyframes orbit4 {
    0% {
        transform: rotate(0deg) translateX(30px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(30px) rotate(-360deg);
    }
}

/* Cards Container */
.cards-container {
    position: relative;
    min-height: 400px;
    padding-bottom: 150px;
}

.timeline-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    margin: 0 auto;
    z-index: 5;
    transition: transform 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
}


/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.company-badge {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    overflow: hidden;
}

.badge-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.badge-fallback {
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
}

.header-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.job-title {
    color: #00d4ff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.job-duration {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Card Content */
.card-content {
    padding: 20px 30px 30px 30px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.skill-chip {
    background: rgba(0, 153, 255, 0.1);
    color: #00d4ff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(0, 153, 255, 0.3);
    transition: all 0.3s ease;
}

.skill-chip:hover {
    background: rgba(0, 153, 255, 0.2);
    transform: translateY(-2px);
}

.achievements {
    margin-bottom: 25px;
}

.achievements p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Metrics */
.metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.metric:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.metric-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Company-specific card themes */
.espn-card {
    border-left: 4px solid #dc2626;
}

.espn-badge {
    background: linear-gradient(135deg, #dc2626, #000000);
}

.nyt-card {
    border-left: 4px solid #2563eb;
}

.nyt-badge {
    background: linear-gradient(135deg, #2563eb, #000000);
}

.spotify-card {
    border-left: 4px solid #1db954;
}

.spotify-badge {
    background: linear-gradient(135deg, #1db954, #000000);
}

.aka-card {
    border-left: 4px solid #ec4899;
}

.aka-badge {
    background: linear-gradient(135deg, #ec4899, #000000);
}

.ad-results-card {
    border-left: 4px solid #dc2626;
}

.ad-results-badge {
    background: linear-gradient(135deg, #dc2626, #000000);
}

/* Companies Section - Compact */
.companies-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    text-align: center;
}

.companies-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.company-logo-compact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.company-logo-compact:hover {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(0, 153, 255, 0.3);
    transform: translateY(-2px);
}

.company-img-compact {
    width: 35px;
    height: 35px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.company-logo-compact:hover .company-img-compact {
    filter: grayscale(0%) brightness(1);
}

/* White backgrounds for specific company logos */
.company-logo-compact img[alt="ESPN"],
.company-logo-compact img[alt="Spotify"] {
    background-color: white;
    border-radius: 4px;
    padding: 4px;
}

.company-name-compact {
    color: #aaaaaa;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Professional Experience Section */
.experience {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.2);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.experience-card {
    padding: 25px;
    transition: all 0.3s ease;
    min-height: auto;
}

.experience-card:hover {
    transform: translateY(-8px);
}

.experience-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 15px;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    display: block;
    visibility: visible;
}

.company-icon.fallback-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.2rem;
    position: absolute;
    top: 0;
    left: 0;
}

.experience-info {
    flex: 1;
}

.position-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.experience-meta span {
    color: #aaaaaa;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.experience-meta i {
    color: #00d4ff;
    width: 12px;
}

.experience-content h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 12px;
    margin-top: 20px;
}

.experience-content h4:first-of-type {
    margin-top: 0;
}

.achievements-list {
    list-style: none;
    margin-bottom: 20px;
}

.achievements-list li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.achievements-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-size: 0.8rem;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: rgba(0, 153, 255, 0.1);
    color: #00d4ff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 153, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 153, 255, 0.2);
    border: 1px solid rgba(0, 153, 255, 0.4);
}

/* Portfolio Section */
.portfolio {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    padding: 20px;
}

/* Performance Cards */
.performance-card {
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

/* Company-specific gradients */
.ad-results-media {
    background: linear-gradient(135deg, #dc2626 0%, #000000 100%);
}

.aka-nyc {
    background: linear-gradient(135deg, #ec4899 0%, #000000 100%);
}

.spotify {
    background: linear-gradient(135deg, #1db954 0%, #000000 100%);
}

.new-york-times {
    background: linear-gradient(135deg, #2563eb 0%, #000000 100%);
}

.espn {
    background: linear-gradient(135deg, #dc2626 0%, #000000 100%);
}

/* Performance Card Structure */
.performance-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.performance-header .company-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.performance-header .company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    visibility: visible;
}

.performance-header .company-icon.fallback-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
}

.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
}

.job-title {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
    font-weight: 500;
}

.job-duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.performance-header .skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.performance-header .skill-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.performance-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.performance-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.performance-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.result-text {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Performance Card Hover Effects */
.performance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 153, 255, 0.2);
}

.ad-results-media:hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

.aka-nyc:hover {
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.3);
}

.spotify:hover {
    box-shadow: 0 20px 40px rgba(29, 185, 84, 0.3);
}

.new-york-times:hover {
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.espn:hover {
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
}

/* Performance Grid Layout */
.performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.project-header {
    margin-bottom: 25px;
}

.project-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 153, 255, 0.2);
    color: #00d4ff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 153, 255, 0.3);
}

.project-content p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.7;
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.metric-label {
    color: #aaaaaa;
    font-size: 0.9rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 153, 255, 0.15);
    border: 2px solid rgba(0, 153, 255, 0.4);
    color: #00d4ff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.2);
    font-size: 1.1rem;
    font-weight: bold;
}

.carousel-btn:hover {
    background: rgba(0, 153, 255, 0.3);
    border: 2px solid rgba(0, 153, 255, 0.6);
    color: #ffffff;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 153, 255, 0.4);
}

.prev {
    left: -60px;
}

.next {
    right: -60px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
}

.carousel-hint {
    text-align: center;
    margin-top: 20px;
}

.carousel-hint span {
    color: #aaaaaa;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

/* Services Section */
.services {
    padding: 60px 0;
}

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

.service-card {
    padding: 40px;
    text-align: center;
    height: 100%;
}

.service-card p {
    text-align: left;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #000;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    padding-left: 0;
}

.service-features li {
    color: #aaaaaa;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d4ff;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    padding: 40px;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #aaaaaa;
}

.contact-method i {
    color: #00d4ff;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    color: #000;
    transform: translateY(-3px);
}

.contact-form {
    margin: 20px 0 10px 0;
}

/* Form spacing in contact section */
.contact-card form {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid rgba(0, 153, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

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

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    text-align: center;
    color: #aaaaaa;
}

.footer-content p {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }

    /* Mobile adjustments for experience cards - removed since using inline styles */

    .experience-card {
        padding: 25px 20px;
    }

    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .company-badge {
        width: 70px;
        height: 70px;
        align-self: center;
    }

    .badge-logo {
        width: 45px;
        height: 45px;
    }

    .header-info h3 {
        font-size: 1.5rem;
    }

    .job-title {
        font-size: 1.1rem;
    }

    .job-duration {
        font-size: 0.9rem;
    }

    .metrics {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .metric {
        align-items: center;
        text-align: center;
    }
    
    .prev {
        left: -50px;
    }
    
    .next {
        right: -50px;
    }
    
    .carousel-hint {
        display: none;
    }
    
    .project-metrics {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .experience-meta {
        align-items: center;
    }
    
    /* Personal Statement Mobile - Stack columns */
    .statement-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .statement-title {
        font-size: 1.8rem;
    }
    
    .statement-description {
        font-size: 1rem;
    }
    
    .companies-grid-compact {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .company-img-compact {
        width: 30px;
        height: 30px;
    }
    
    /* Reduce section padding on mobile */
    .about, .experience, .portfolio, .services, .contact {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Even more compact spacing for small mobile */
    .about, .experience, .portfolio, .services, .contact {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .experience-grid {
        gap: 15px;
    }
    
    .experience-card {
        padding: 20px;
    }
    
    .performance-card {
        padding: 25px;
        min-height: 280px;
    }
    
    .performance-header {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .performance-header .company-logo {
        width: 45px;
        height: 45px;
    }
    
    .company-info h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .performance-content p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .result-item {
        padding: 10px 14px;
    }
    
    .result-text {
        font-size: 0.9rem;
    }
    
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    /* Interactive Timeline Mobile Responsive */
    .timeline-section {
        padding: 60px 0 300px 0;
    }
    
    .interactive-timeline {
        padding: 0 20px;
    }
    
    .timeline-track {
        margin-bottom: 60px;
    }
    
    .timeline-nodes {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .timeline-node {
        margin-bottom: 20px;
    }
    
    .node-logo {
        width: 60px;
        height: 60px;
    }
    
    .company-logo {
        width: 45px;
        height: 45px;
    }
    
    .node-year {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-top: 10px;
    }
    
    .cards-container {
        min-height: 300px;
    }
    
    .timeline-card {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    /* Minimal Experience Mobile */
    .minimal-experience {
        padding: 20px 15px;
        gap: 25px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .job-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .company-logo {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .job-info h3 {
        font-size: 1.2rem;
    }
    
    .job-info h4 {
        font-size: 0.95rem;
    }
    
    .timeline-section {
        padding: 60px 0;
    }
    
    .card-header {
        padding: 20px 20px 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .company-badge {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .header-info h3 {
        font-size: 1.5rem;
    }
    
    .job-title {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 15px 20px 20px 20px;
    }
    
    .skills-grid {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .skill-chip {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .metric {
        padding: 15px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .hover-card {
        position: static;
        width: 100%;
        max-height: none;
        margin-top: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        font-size: 0.8rem;
        padding: 15px;
    }
    
    .card-header h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
}

/* Tablet responsive design */
@media (max-width: 1024px) {
    .performance-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
}

/* Simple Scroll Animations */

/* Clean Hover Effects with Green Shadows */
.glass-card {
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 153, 255, 0.2);
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 153, 255, 0.3);
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d4ff 0%, #0099ff 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0099ff 0%, #0066ff 100%);
}
