:root {
    --bg-color: #050505;
    --card-bg: #111111;
    --text-primary: #ffffff;
    --text-secondary: #888888;
    --accent: #ff0000; /* Neon Green */
    --accent-secondary: #616161; /* Cyan */
    --danger: #ff0055;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --border-radius: 12px;
    --spacing: 2rem;
}

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

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Max width container for entire site (except hero and ticker) */
main {
    width: 100%;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEUAAAA5OTkAAABERERmZmZEREQABgZEREQanl7FAAAAACHRSTlMAMwAyyKV+AAABc0lEQVQ4y2NgQAX8DIwMrEDswIAKGMG0A5A2ZIBqQwdQ7cAA1Q4MoNqBAVQ7MIDqBAZAncAAsg0ZQLYhA8g2ZADZhgwg25ABZBsygGxDBpBtZNkAAwMrCDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwMrEDswsAKxAwCVgy6Va0f2tAAAAABJRU5ErkJggg==');
}

/* Typography */
h1, h2, h3 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: var(--font-mono);
}

.logo .dot {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Nav Socials */
.nav-socials {
    display: flex;
    gap: 1.2rem;
    margin: 0 1rem;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 0 1.5rem;
    align-items: center;
}

.nav-socials a {
    font-size: 1.2rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-socials a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.x-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.x-logo-icon svg {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.x-logo-icon:hover svg {
    transform: scale(1.1);
}

.cta-btn {
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--accent) !important;
}

.cta-btn:hover {
    background: var(--accent);
    color: var(--bg-color) !important;
    box-shadow: 0 0 15px var(--accent);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

/* Hero Chart Background */
.hero-chart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
}

.hero-content {
    z-index: 2;
    max-width: 600px;
}

.glitch-wrapper {
    position: relative;
}

.glitch {
    font-size: 5rem;
    position: relative;
    color: var(--text-primary);
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 var(--danger);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 var(--accent-secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(34px, 9999px, 11px, 0); }
    5% { clip: rect(68px, 9999px, 84px, 0); }
    10% { clip: rect(16px, 9999px, 93px, 0); }
    15% { clip: rect(4px, 9999px, 95px, 0); }
    20% { clip: rect(16px, 9999px, 52px, 0); }
    25% { clip: rect(80px, 9999px, 2px, 0); }
    30% { clip: rect(73px, 9999px, 14px, 0); }
    35% { clip: rect(97px, 9999px, 23px, 0); }
    40% { clip: rect(14px, 9999px, 61px, 0); }
    45% { clip: rect(56px, 9999px, 41px, 0); }
    50% { clip: rect(28px, 9999px, 83px, 0); }
    55% { clip: rect(20px, 9999px, 44px, 0); }
    60% { clip: rect(30px, 9999px, 18px, 0); }
    65% { clip: rect(95px, 9999px, 48px, 0); }
    70% { clip: rect(68px, 9999px, 46px, 0); }
    75% { clip: rect(23px, 9999px, 67px, 0); }
    80% { clip: rect(19px, 9999px, 6px, 0); }
    85% { clip: rect(58px, 9999px, 97px, 0); }
    90% { clip: rect(76px, 9999px, 78px, 0); }
    95% { clip: rect(66px, 9999px, 19px, 0); }
    100% { clip: rect(2px, 9999px, 15px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(25px, 9999px, 90px, 0); }
    5% { clip: rect(4px, 9999px, 93px, 0); }
    10% { clip: rect(31px, 9999px, 41px, 0); }
    15% { clip: rect(65px, 9999px, 88px, 0); }
    20% { clip: rect(11px, 9999px, 37px, 0); }
    25% { clip: rect(56px, 9999px, 67px, 0); }
    30% { clip: rect(12px, 9999px, 78px, 0); }
    35% { clip: rect(57px, 9999px, 87px, 0); }
    40% { clip: rect(62px, 9999px, 53px, 0); }
    45% { clip: rect(55px, 9999px, 79px, 0); }
    50% { clip: rect(73px, 9999px, 52px, 0); }
    55% { clip: rect(17px, 9999px, 43px, 0); }
    60% { clip: rect(35px, 9999px, 55px, 0); }
    65% { clip: rect(76px, 9999px, 66px, 0); }
    70% { clip: rect(78px, 9999px, 22px, 0); }
    75% { clip: rect(62px, 9999px, 46px, 0); }
    80% { clip: rect(5px, 9999px, 33px, 0); }
    85% { clip: rect(29px, 9999px, 48px, 0); }
    90% { clip: rect(26px, 9999px, 47px, 0); }
    95% { clip: rect(3px, 9999px, 5px, 0); }
    100% { clip: rect(42px, 9999px, 41px, 0); }
}

.subtitle {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.separator {
    color: var(--accent);
    margin: 0 10px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
}

.hero-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

/* Color Picker */
.color-picker-container {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    background: rgba(17, 17, 17, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.color-picker-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-family: var(--font-mono);
    cursor: pointer;
    user-select: none;
}

.color-picker-label i {
    color: var(--accent);
    font-size: 1rem;
}

.color-picker {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    background: none;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.color-picker::-webkit-color-swatch-wrapper {
    padding: 0;
    border: none;
}

.color-picker::-webkit-color-swatch {
    border: none;
    border-radius: 50%;
}

.color-picker::-moz-color-swatch {
    border: none;
    border-radius: 50%;
}

.color-picker:hover {
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent);
}

/* Hero Social Buttons */
.hero-socials {
    position: absolute;
    bottom: 12rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    align-items: center;
    z-index: 10;
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 1.6rem;
}

.hero-social-btn:hover {
    color: var(--accent);
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent) 20%, transparent);
}

.hero-social-btn svg {
    width: 32px;
    height: 32px;
}

.circle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--accent);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: pulse 4s infinite ease-in-out;
}

.profile-cutout {
    width: 80%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    filter: grayscale(50%) contrast(1.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: 0.5s;
}

.profile-cutout:hover {
    filter: grayscale(0%) contrast(1);
    border-color: var(--accent);
}

@keyframes pulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    background-color: var(--accent);
    overflow: hidden;
    padding: 10px 0;
    transform: rotate(-2deg) scale(1.05);
    margin: -50px 0 100px 0;
    position: relative;
    z-index: 10;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

.ticker {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.ticker__item {
    display: inline-block;
    padding: 0 2rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: #000;
    font-family: var(--font-mono);
}

@keyframes ticker {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* Section General */
.section {
    padding: 6rem 10%;
    max-width: 1920px;
    margin: 0 auto;
}

/* Spotify Embed */
.podcast-title {
    margin-bottom: 2rem;
}

.spotify-embed-container {
    margin-bottom: 4rem;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--card-bg);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.spotify-embed-container iframe {
    width: 100%;
    min-height: 352px;
    border-radius: 12px;
    display: block;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 50px;
    height: 4px;
    background: var(--accent);
}

.accent {
    color: var(--accent);
    font-style: italic;
}

/* Timeline */
.timeline {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.6rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--bg-color);
    border: 2px solid var(--accent);
    border-radius: 50%;
}

.timeline-date {
    font-family: var(--font-mono);
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 255, 157, 0.1);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.company-logo {
    max-height: 40px;
    opacity: 0.8;
}

.tech-stack span {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
}

.card-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

/* Golf Section */
.golf-section {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.golf-content {
    flex: 1;
}

.golf-image {
    flex: 0.33;
    position: relative;
    max-width: 33%;
}

.golf-image img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--border-radius);
    filter: grayscale(50%);
    transition: 0.5s;
}

.golf-image:hover img {
    filter: grayscale(0%);
}

.golf-stats {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-big {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.achievements {
    list-style: none;
    margin-top: 2rem;
}

.achievements li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.achievements i {
    color: var(--accent);
    margin-right: 0.8rem;
}

/* Running Section */
.running-section {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.running-content {
    flex: 1;
}

.running-image {
    flex: 0.33;
    position: relative;
    max-width: 33%;
}

.running-image img {
    width: 100%;
    max-width: 100%;
    border-radius: var(--border-radius);
    filter: grayscale(50%);
    transition: 0.5s;
}

.running-image:hover img {
    filter: grayscale(0%);
}

.running-stats {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat-big {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
}

.achievements {
    list-style: none;
    margin-top: 2rem;
}

.achievements li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.achievements i {
    color: var(--accent);
    margin-right: 0.8rem;
}


/* Footer / Connect */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: 0.3s;
}

.social-card span {
    font-family: var(--font-mono);
    font-weight: bold;
}

.social-card:hover {
    background: #fff;
    color: #000;
}

.social-card.twitter:hover { background: #000000; color: #fff; }

.social-card.twitter svg {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    transition: 0.3s;
}
.social-card.facebook:hover { background: #1877F2; color: #fff; }
.social-card.youtube:hover { background: #FF0000; color: #fff; }
.social-card.ivt:hover { background: #00ff9d; color: #000; }
.social-card.spotify:hover { background: #1DB954; color: #fff; }

footer {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-section {
        padding: 0 5%;
    }
    
    .section {
        padding: 5rem 5%;
    }
    
    .glitch {
        font-size: 4rem;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 0 5%;
    }
    
    .section {
        padding: 4rem 5%;
    }
    
    .hero-visual {
        width: 300px;
        height: 300px;
    }
    
    .circle-glow {
        width: 250px;
        height: 250px;
    }
    
    .glitch {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .grid-3 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 1rem 5%;
        min-height: 60px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .navbar-container {
        padding: 1rem 5%;
    }
    
    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 99;
        -webkit-overflow-scrolling: touch;
        max-width: 100%;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 0.75rem 0;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    .nav-socials {
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 0;
        margin: 1rem 0;
        justify-content: center;
        gap: 2rem;
    }
    
    .nav-socials a {
        font-size: 1.4rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .x-logo-icon {
        width: 24px;
        height: 24px;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        cursor: pointer;
        z-index: 101;
    }
    
    .mobile-toggle i {
        font-size: 1.5rem;
    }
    
    /* Hero Section */
    .hero-section {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 80px 5% 40px;
        min-height: 100vh;
        height: auto;
    }

    .hero-content {
        margin-bottom: 2.5rem;
        max-width: 100%;
    }
    
    .glitch-wrapper {
        margin-bottom: 1rem;
    }

    .glitch {
        font-size: 2.5rem;
        line-height: 1.1;
        word-break: keep-all;
    }
    
    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .separator {
        margin: 0 8px;
    }

    .hero-stats {
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .stat-value {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.7rem;
        margin-top: 0.25rem;
    }

    .hero-visual {
        width: 250px;
        height: 250px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .circle-glow {
        width: 200px;
        height: 200px;
    }
    
    .hero-chart {
        opacity: 0.08;
    }
    
    .color-picker-container {
        bottom: 1rem;
        left: 1rem;
        padding: 0.625rem 1rem;
        gap: 0.625rem;
    }
    
    .color-picker-label {
        font-size: 0.75rem;
    }
    
    .color-picker {
        width: 40px;
        height: 40px;
    }
    
    .hero-socials {
        bottom: 7rem;
        gap: 1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .hero-social-btn {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
    
    .hero-social-btn svg {
        width: 28px;
        height: 28px;
    }
    
    /* Ticker */
    .ticker-wrap {
        margin: -20px 0 50px 0;
        transform: rotate(-1deg) scale(1.01);
        overflow: hidden;
    }
    
    .ticker__item {
        font-size: 1.1rem;
        padding: 0 1.25rem;
        white-space: nowrap;
    }
    
    /* Sections */
    .section {
        padding: 4rem 5%;
    }
    
    .podcast-title {
        margin-bottom: 1.5rem;
    }
    
    .spotify-embed-container {
        margin-bottom: 3rem;
        padding: 0.75rem;
    }
    
    .spotify-embed-container iframe {
        min-height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        line-height: 1.2;
        word-break: keep-all;
    }
    
    /* Timeline */
    .timeline {
        padding-left: 1.5rem;
        margin-left: 0.5rem;
    }
    
    .timeline-item {
        margin-bottom: 2.5rem;
    }
    
    .timeline-item::before {
        left: -1.9rem;
        width: 0.8rem;
        height: 0.8rem;
    }
    
    .timeline-date {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .card {
        padding: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .card h3 {
        font-size: 1.3rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .card p {
        line-height: 1.7;
        font-size: 0.95rem;
    }
    
    /* Grid */
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-icon {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    /* Golf Section */
    .golf-section {
        flex-direction: column;
        gap: 2rem;
    }
    
    .golf-content {
        width: 100%;
    }
    
    .golf-image {
        width: 100%;
        max-width: 25%;
        margin: 0 auto;
    }
    
    .golf-image img {
        width: 100%;
        max-width: 100%;
    }
    
    .golf-stats {
        flex-direction: row;
        align-items: baseline;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-big {
        font-size: 3rem;
        line-height: 1;
    }
    
    .stat-desc {
        font-size: 0.9rem;
    }
    
    .achievements {
        margin-top: 1.5rem;
    }
    
    .achievements li {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    /* Social Grid */
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
        min-height: 120px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .social-card i,
    .social-card svg {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .social-card.twitter svg {
        width: 2rem;
        height: 2rem;
    }
    
    .social-card span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0.875rem 4%;
    }
    
    .navbar {
        min-height: 56px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .nav-links {
        top: 56px;
        max-height: calc(100vh - 56px);
        padding: 1.5rem;
    }
    
    .hero-section {
        padding: 70px 4% 30px;
    }
    
    .glitch {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .separator {
        margin: 0 6px;
    }
    
    .hero-stats {
        gap: 1.25rem;
        margin-top: 0.75rem;
    }
    
    .stat-item {
        min-width: 70px;
    }
    
    .stat-value {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 3rem 4%;
    }
    
    .podcast-title {
        margin-bottom: 1.25rem;
    }
    
    .spotify-embed-container {
        margin-bottom: 2.5rem;
        padding: 0.5rem;
    }
    
    .spotify-embed-container iframe {
        min-height: 280px;
    }
    
    .hero-visual {
        width: 200px;
        height: 200px;
    }
    
    .circle-glow {
        width: 150px;
        height: 150px;
    }
    
    .color-picker-container {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.5rem 0.875rem;
        gap: 0.5rem;
    }
    
    .color-picker-label span {
        display: none;
    }
    
    .color-picker {
        width: 35px;
        height: 35px;
    }
    
    .hero-socials {
        bottom: 6rem;
        gap: 0.8rem;
        padding: 0.7rem 1.2rem;
    }
    
    .hero-social-btn {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .hero-social-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .ticker-wrap {
        margin: -15px 0 40px 0;
    }
    
    .ticker__item {
        font-size: 0.95rem;
        padding: 0 0.875rem;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .social-card {
        padding: 1.75rem 1.25rem;
        min-height: 100px;
    }
    
    .social-card i,
    .social-card svg {
        font-size: 1.75rem;
    }
    
    .social-card.twitter svg {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .social-card span {
        font-size: 0.85rem;
    }
    
    .card {
        padding: 1.25rem;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .timeline {
        padding-left: 1.25rem;
        margin-left: 0.25rem;
    }
    
    .timeline-item::before {
        left: -1.65rem;
        width: 0.7rem;
        height: 0.7rem;
    }
    
    .timeline-date {
        font-size: 0.8rem;
    }
    
    .stat-big {
        font-size: 2.5rem;
    }
    
    .golf-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .company-logo {
        max-height: 30px;
        width: auto;
    }
    
    .tech-stack {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .tech-stack span {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
        margin-right: 0;
    }
    
    .achievements li {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .card-icon {
        font-size: 1.5rem;
    }
    
    footer {
        font-size: 0.75rem;
        padding-top: 1.5rem;
    }
}

/* Touch improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-links a,
    .cta-btn,
    .social-card,
    .mobile-toggle {
        -webkit-tap-highlight-color: rgba(0, 255, 157, 0.2);
        tap-highlight-color: rgba(0, 255, 157, 0.2);
    }
    
    .card:hover {
        transform: none;
    }
    
    .profile-cutout:hover {
        filter: grayscale(100%) contrast(1.2);
        border-color: rgba(255, 255, 255, 0.1);
    }
}

/* Prevent text selection on mobile for better UX */
@media (max-width: 768px) {
    .logo,
    .mobile-toggle {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure canvas doesn't cause overflow */
#hero-particles {
    max-width: 100%;
    height: auto;
}
