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

:root {
    --bg-dark: #05070a;
    --bg-card: #0d121a;
    --text-light: #f5f5f7;
    --text-gray: #a1a1a6;
    --accent: #ffffff;
    --blueprint-line: rgba(255, 255, 255, 0.04);
    --blueprint-grid: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.08);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Holographic / Dichroic Colors */
    --holo-cyan: #00f2ff;
    --holo-magenta: #ff00e6;
    --holo-violet: #7000ff;
    --holo-gradient: linear-gradient(
        135deg, 
        var(--holo-cyan) 0%, 
        var(--holo-magenta) 50%, 
        var(--holo-violet) 100%
    );
    --holo-gradient-soft: linear-gradient(
        135deg, 
        rgba(0, 242, 255, 0.15) 0%, 
        rgba(255, 0, 230, 0.15) 50%, 
        rgba(112, 0, 255, 0.15) 100%
    );
}

@keyframes holo-shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        /* Dichroic Glow */
        radial-gradient(circle at 20% 20%, rgba(0, 242, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 230, 0.05) 0%, transparent 40%),
        /* Technical Crosshairs / Dots at Grid Intersections */
        radial-gradient(var(--blueprint-line) 1px, transparent 1px),
        /* Main Grid Lines */
        linear-gradient(var(--blueprint-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--blueprint-grid) 1px, transparent 1px);
    background-size: 
        100% 100%,
        100% 100%,
        100px 100px,
        25px 25px, 25px 25px;
    background-attachment: fixed;
    color: var(--text-light);
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s var(--transition);
}

/* Header and Navigation (Nav Pill) */
.site-header {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 95vw;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 10px; /* Reduced padding */
    transition: all 0.3s var(--transition);
    perspective: 1000px;
    overflow: visible !important;
}

.menu-toggle svg {
    width: 140px; /* Even bigger */
    height: 140px;
    overflow: visible !important;
    filter: 
        drop-shadow(0 0 15px rgba(0, 242, 255, 0.7))
        drop-shadow(0 0 30px rgba(255, 0, 230, 0.5));
    animation: holo-3d-pulse 10s infinite ease-in-out;
    transform-style: preserve-3d;
}

/* Entry animation only on Works page */
.is-home .menu-toggle svg {
    animation: 
        holo-entry 5s ease-out forwards,
        holo-3d-pulse 10s infinite ease-in-out 5s;
}

@keyframes holo-entry {
    0% { 
        opacity: 0; 
        filter: brightness(0) blur(10px); 
        transform: rotateY(-10deg) rotateX(5deg) scale(1);
    }
    /* Sudden RGB Split & Tearing */
    1% { 
        opacity: 1; 
        filter: brightness(15) drop-shadow(5px 0 0 #ff00ff) drop-shadow(-5px 0 0 #00ffff);
        transform: skewX(20deg) translateX(-10px);
    }
    2% { opacity: 0; }
    
    /* Vertical Tearing & Noise */
    4% { 
        opacity: 1; 
        filter: brightness(8) contrast(2) blur(1px);
        transform: skewY(10deg) translateY(5px);
    }
    5% { opacity: 0.1; }
    
    /* Bad Sync Effect */
    8% { 
        opacity: 1; 
        filter: brightness(12) hue-rotate(-45deg);
        transform: translateX(20px) scaleX(1.5);
    }
    10% { opacity: 0; }
    
    /* Ghosting / RGB Artifacts */
    15% { 
        opacity: 1; 
        filter: drop-shadow(10px 0 0 rgba(255,0,230,0.5)) drop-shadow(-10px 0 0 rgba(0,242,255,0.5));
        transform: scale(0.9) skewX(-15deg);
    }
    17% { opacity: 0.2; transform: translateY(-10px); }
    
    /* Rapid Flicker & Displacement */
    19% { 
        opacity: 1; 
        filter: brightness(15);
        transform: translateX(-30px) skewX(30deg);
    }
    21% { opacity: 0; }
    
    /* Digital "Crash" / Noise block */
    30% { 
        opacity: 1; 
        filter: brightness(5) saturate(5); 
        transform: scaleY(0.1) skewX(-45deg);
    }
    32% { opacity: 0.1; transform: scaleY(1) skewX(0); }
    
    /* Horizontal scanline jump */
    45% { 
        opacity: 1; 
        filter: brightness(20) hue-rotate(180deg);
        transform: translateY(15px) skewX(10deg);
    }
    47% { opacity: 0.3; }
    
    /* Stabilizing with artifacts */
    55% { 
        opacity: 1; 
        filter: drop-shadow(3px 0 0 #ff00ff);
        transform: translateX(-5px);
    }
    57% { opacity: 0.1; }
    
    /* Quick "Static" burst */
    65% { 
        opacity: 1; 
        filter: brightness(4) contrast(4); 
        transform: skewY(-5deg) scale(1.1);
    }
    68% { opacity: 0.4; }
    
    /* Last sync error */
    75% { 
        opacity: 1; 
        filter: brightness(1) drop-shadow(-5px 0 0 #00ffff);
        transform: translateX(10px);
    }
    77% { opacity: 0.2; transform: skewX(15deg); }
    
    /* Final settle with minor glitch */
    85% { opacity: 1; filter: brightness(3); transform: scale(0.98); }
    88% { opacity: 0.6; transform: skewX(-2deg); }
    
    95% { opacity: 1; filter: brightness(1.2); }
    97% { opacity: 0.8; }
    
    100% { 
        opacity: 1; 
        filter: brightness(1);
        transform: rotateY(-10deg) rotateX(5deg) scale(1);
    }
}

@keyframes holo-3d-pulse {
    0%, 100% {
        transform: rotateY(-10deg) rotateX(5deg) scale(1) translate3d(0, 0, 0);
        filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.6));
        color: var(--holo-cyan);
        opacity: 1;
    }
    50% {
        transform: rotateY(10deg) rotateX(-5deg) scale(1.05) translate3d(0, 0, 25px);
        filter: 
            drop-shadow(0 0 35px rgba(0, 242, 255, 0.8))
            drop-shadow(0 0 55px rgba(255, 0, 230, 0.5));
        color: var(--holo-magenta);
        opacity: 0.95;
    }
}

.menu-toggle:hover {
    color: var(--text-light);
    transform: scale(1.1);
}

.menu-toggle:active svg {
    transform: scale(0.9) translateZ(-50px);
}

.menu-toggle.active {
    color: var(--holo-magenta);
}

.main-nav {
    background: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 242, 255, 0.05);
    opacity: 1;
    visibility: visible;
    position: static;
    height: auto;
    width: auto;
    transition: all 0.4s var(--transition);
}

.nav-list {
    display: flex;
    gap: 4px;
    list-style: none;
    align-items: center;
}

.nav-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 10px;
}

.nav-item-main a {
    font-weight: 700 !important;
    color: var(--text-light) !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem !important;
    padding: 10px 20px !important;
}

.nav-item-main a:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.nav-item-main a.active {
    background: var(--holo-gradient) !important;
    background-size: 200% auto !important;
    color: #000 !important;
    animation: holo-shimmer 3s linear infinite;
    font-weight: 800 !important;
}

.nav-list li {
    margin-bottom: 0;
    overflow: visible;
}

.nav-list a {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 100px;
    color: var(--text-gray);
    letter-spacing: -0.01em;
    transform: none;
    transition: all 0.3s var(--transition);
}

.nav-list a:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
    padding-left: 18px; /* Reset the padding from previous style */
}

.nav-list a.active {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Remove old hamburger styles */
.menu-toggle { display: none; }


/* Main Content */
.main-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 120px 40px;
}

.page-container {
    width: 100%;
}

/* Home Banner */
.home-banner {
    margin-bottom: 120px;
    max-width: 1200px;
}

.banner-title-wrapper {
    position: relative;
    display: block; /* No longer flex */
    margin-bottom: 20px;
}

.desktop-vr-icon {
    position: absolute;
    top: 45%;
    right: 50px;
    left: auto;
    transform: translateY(-50%) rotateZ(30deg);
    display: block;
    width: clamp(250px, 30vw, 550px); /* Slightly larger to account for blur spreading */
    color: var(--holo-cyan);
    
    /* No border, no background - just blurred icon */
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    
    /* Strong blurring of the element itself */
    filter: 
        blur(12px) 
        drop-shadow(0 0 30px rgba(0, 242, 255, 0.6))
        drop-shadow(0 0 60px rgba(255, 0, 230, 0.5));
    
    animation: holo-calm-pulse 8s infinite ease-in-out;
    transform-style: preserve-3d;
    perspective: 1500px;
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
}

@keyframes holo-calm-pulse {
    0%, 100% {
        transform: translateY(-50%) rotateZ(30deg) rotateY(-15deg) rotateX(10deg) scale(1);
        opacity: 0.6;
        color: var(--holo-cyan);
        filter: blur(15px) drop-shadow(0 0 30px rgba(0, 242, 255, 0.4));
    }
    50% {
        transform: translateY(-50%) rotateZ(30deg) rotateY(15deg) rotateX(-5deg) scale(1.1);
        opacity: 0.9;
        color: var(--holo-magenta);
        filter: blur(8px)
            drop-shadow(0 0 60px rgba(0, 242, 255, 0.7))
            drop-shadow(0 0 100px rgba(255, 0, 230, 0.6));
    }
}

.home-banner h1 {
    position: relative;
    z-index: 1; /* Place ABOVE icon */
    font-size: clamp(4.5rem, 18vw, 14rem);
    font-weight: 900;
    line-height: 0.8;
    margin-bottom: 0;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    pointer-events: none; /* Make text non-blocking for clicks if needed, though it has links */
}

.home-banner h1 a {
    pointer-events: auto; /* Re-enable for the link */
}

@media (max-width: 768px) {
    .banner-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .desktop-vr-icon {
        display: none; /* Hide decorative icon on mobile, menu-toggle takes over */
    }
}

.home-banner h1 a {
    display: inline-block;
    background: var(--holo-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holo-shimmer 5s linear infinite;
    color: var(--holo-cyan); /* Fallback */
}

/* Reveal Animations */
.reveal-text {
    opacity: 1 !important; /* Force visible for now to ensure rendering */
    transform: none !important;
}

.reveal-text-delayed {
    opacity: 1 !important;
    transform: none !important;
}

.home-banner .subtitle {
    font-size: clamp(1rem, 2.5vw, 1.8rem);
    font-weight: 500;
    color: var(--text-gray);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 0;
}

/* Works Section */
.works-section h2 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.portfolio-item {
    grid-column: span 4;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-card);
    border: 1px solid var(--border);
    transition: all 0.6s var(--transition);
}

.portfolio-item:nth-child(4n+1),
.portfolio-item:nth-child(4n+4) {
    grid-column: span 6;
}

.portfolio-item a {
    display: block;
}

.portfolio-image-wrapper {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.portfolio-info {
    padding: 24px;
    background: var(--bg-card);
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-light);
}

.portfolio-category {
    font-size: 0.875rem;
    color: var(--text-gray);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 242, 255, 0.4);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(0, 242, 255, 0.15);
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

/* Detail Page */
.portfolio-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.portfolio-detail h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.meta-item label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.meta-item span {
    font-size: 1.125rem;
    font-weight: 500;
}

.detail-content {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 80px;
}

.detail-content p {
    margin-bottom: 30px;
}

.detail-content h2 {
    font-size: 2rem;
    color: var(--text-light);
    margin: 60px 0 30px;
}

/* Images Grid */
.detail-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 80px 0;
}

.detail-image-item {
    border-radius: 12px;
    overflow: hidden;
}

.detail-image-item.full-width {
    grid-column: 1 / -1;
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Sidebar & Footer Redesign */
.sidebar {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    background: none;
    padding: 0;
    width: auto;
}

.social-links {
    flex-direction: column;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--bg-dark);
}

.sidebar-info {
    display: none; /* Hide in new layout */
}

.site-footer {
    position: static;
    margin-top: 100px;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.site-footer a {
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-item, 
    .portfolio-item:nth-child(4n+1), 
    .portfolio-item:nth-child(4n+4) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 5px 20px;
        display: flex !important;
        flex-direction: column !important;
    }

    .page-container {
        display: contents !important;
    }

    /* VR Toggle styles */
    .menu-toggle {
        display: block !important;
        margin: 0 auto 0;
        z-index: 1001;
    }

    .main-nav {
        display: none !important; /* Hide by default on mobile */
        width: 100%;
        background: rgba(10, 15, 25, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid var(--border) !important;
        border-radius: 20px !important;
        padding: 20px !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
        margin-bottom: 10px !important;
    }

    .main-nav.active {
        display: block !important;
        animation: nav-reveal 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes nav-reveal {
        from {
            opacity: 0;
            transform: translateY(-10px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Default for all pages: Menu at the top */
    .site-header { 
        order: 1 !important;
        position: static !important;
        transform: none !important;
        width: 100% !important;
        max-width: none !important;
        margin-bottom: 5px !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-content {
        order: 2 !important;
    }

    /* Specific override for Home page: Logo first, then Toggle/Menu */
    .is-home .home-banner {
        order: 1 !important;
        margin-bottom: 0 !important;
    }

    .is-home .site-header { 
        order: 2 !important;
        margin-bottom: 10px !important;
    }

    .is-home .works-section {
        order: 3 !important;
    }

    .nav-list {
        flex-direction: column !important;
        align-items: center !important; /* Center links in the unfolded menu */
        gap: 15px !important;
    }

    .nav-list a {
        padding: 12px 0 !important;
        font-size: 1.2rem !important;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        background: none !important;
        box-shadow: none !important;
        color: var(--text-gray);
        display: block;
        width: 100%;
    }

    .nav-list a.active {
        color: var(--holo-cyan);
        font-weight: 800;
    }

    /* Hide "Works" link on home page on mobile */
    .is-home .nav-item-main {
        display: none !important;
    }

    .nav-divider {
        display: none;
    }

    .sidebar { display: none; }
    
    .portfolio-item {
        grid-column: span 12 !important;
    }
    
    .detail-images-grid {
        grid-template-columns: 1fr;
    }
}

/* Standard Page Content */
.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.03em;
}

.page-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
}

.page-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--text-gray);
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
}

.page-content td {
    padding: 20px 0;
    vertical-align: top;
    border-bottom: 1px solid var(--border);
    font-size: 1.125rem;
}

.page-content td:first-child {
    width: 120px;
    font-weight: 600;
    color: var(--text-light);
    padding-right: 40px;
}

.page-content td:last-child {
    color: var(--text-gray);
}

.back-link {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.back-link a {
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Bio (Markdown table) – gleiches Erscheinungsbild wie ehemalige Timeline */
.is-bio .page-content table {
    margin-top: 60px;
    max-width: 800px;
}

.is-bio .page-content thead {
    display: none;
}

.is-bio .page-content tbody tr {
    transition: all 0.4s var(--transition);
    border-bottom: 1px solid var(--border);
}

.is-bio .page-content tbody tr:last-child {
    border-bottom: none;
}

.is-bio .page-content tbody tr:hover td {
    background: var(--holo-gradient-soft);
}

.is-bio .page-content tbody tr:hover td:first-child {
    padding-left: 20px;
    border-radius: 12px 0 0 12px;
}

.is-bio .page-content tbody tr:hover td:last-child {
    padding-left: 20px;
    border-radius: 0 12px 12px 0;
}

.is-bio .page-content tbody td {
    padding: 40px 0;
    vertical-align: top;
    border: none;
}

.is-bio .page-content tbody td:first-child {
    width: 160px;
    padding-right: 40px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--holo-cyan);
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.3);
}

.is-bio .page-content tbody td:last-child {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .is-bio .page-content tbody td {
        padding: 30px 0;
    }

    .is-bio .page-content tbody td:first-child {
        width: 100%;
        padding-right: 0;
        padding-bottom: 15px;
    }

    .is-bio .page-content tbody tr:hover {
        padding-left: 0;
        margin-left: 0;
        background: none;
    }
}

/* PDF Download Button */
.pdf-download-link {
    display: inline-flex;
    align-items: center;
    background: var(--text-light);
    color: var(--bg-dark);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 20px 0;
    transition: all 0.3s var(--transition);
}

.pdf-download-link:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    color: var(--bg-dark);
}

/* Press & Media Styles */
.press-container {
    margin-top: 40px;
}

.press-year-section {
    margin-bottom: 60px;
}

.press-year-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.press-item {
    display: block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 20px 25px;
    border-radius: 12px;
    transition: all 0.3s var(--transition);
    text-decoration: none !important;
}

.press-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.press-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.press-item-source {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
    font-weight: 600;
}

.press-item-title {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.4;
}

.press-item-date {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 5px;
}

@media (max-width: 768px) {
    .press-item {
        padding: 15px 20px;
    }
}

.press-item.no-link {
    cursor: default;
    background: rgba(255, 255, 255, 0.02);
}

.press-item.no-link:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--border);
}

/* Donate Button */
.btn-donate {
    display: inline-flex;
    align-items: center;
    background: var(--holo-gradient);
    background-size: 200% auto;
    color: #000;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 30px 0;
    transition: all 0.3s var(--transition);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 242, 255, 0.2);
    animation: holo-shimmer 3s linear infinite;
}

.btn-donate:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(0, 242, 255, 0.4),
        0 0 30px rgba(255, 0, 230, 0.2);
    color: #000;
}

/* Contact Page Styles */
.contact-container {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.contact-hero {
    max-width: 600px;
}

.contact-hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-method {
    margin-top: 30px;
}

.contact-email {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
    transition: all 0.3s var(--transition);
}

.contact-email:hover {
    color: var(--accent);
    text-decoration-color: var(--accent);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-section h2 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-gray);
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-list li {
    font-size: 1.125rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list li::before {
    content: "→";
    color: var(--text-gray);
    font-weight: 400;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s var(--transition);
}

.social-card:hover {
    background: var(--holo-gradient-soft);
    border-color: rgba(0, 242, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-card .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.social-card .name {
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-email {
        font-size: 1.5rem;
    }
}

/* Social Card Icons */
.social-card .icon {
    display: block;
    margin: 0 auto 15px;
    color: var(--text-light);
    transition: all 0.3s var(--transition);
}

.social-card:hover .icon {
    color: var(--holo-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.4));
    transform: scale(1.1);
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* Stringi! Grid Styles */
.stringi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stringi-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    text-decoration: none !important;
}

.stringi-tile:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stringi-tile-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 15px;
}

.stringi-tile-subtitle {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .stringi-grid {
        grid-template-columns: 1fr;
    }
    .stringi-tile {
        min-height: 200px;
        padding: 40px 20px;
    }
}
