:root {
    --hot-pink: #FF1493;
    --electric-blue: #00D4FF;
    --bright-yellow: #FFE500;
    --neon-green: #39FF14;
    --pure-black: #000000;
    --pure-white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --light-gray: #f0f0f0;
    
    --font-impact: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif;
    --font-pixel: 'Press Start 2P', monospace;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    --shadow-neon-pink: 0 0 20px rgba(255, 20, 147, 0.5);
    --shadow-neon-blue: 0 0 20px rgba(0, 212, 255, 0.5);
    --shadow-neon-yellow: 0 0 20px rgba(255, 229, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-gray);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
}

.crt-flicker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.2) 80%,
        rgba(0, 0, 0, 0.4) 100%
    );
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0% { opacity: 0.97; }
    50% { opacity: 1; }
    100% { opacity: 0.98; }
}

.memphis-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--hot-pink) 3px, transparent 3px),
        radial-gradient(circle, var(--electric-blue) 2px, transparent 2px),
        radial-gradient(circle, var(--bright-yellow) 4px, transparent 4px),
        radial-gradient(circle, var(--neon-green) 2px, transparent 2px);
    background-size: 
        150px 150px,
        100px 100px,
        200px 200px,
        180px 180px;
    background-position: 
        0 0,
        40px 60px,
        80px 30px,
        120px 90px;
    opacity: 0.3;
    animation: confettiFloat 20s linear infinite;
}

@keyframes confettiFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-50px) rotate(5deg); }
}

.squiggles {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 50 Q 25 30, 40 50 T 70 50 T 100 50' stroke='%23FF1493' stroke-width='3' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='40,5 75,65 5,65' stroke='%2300D4FF' stroke-width='2' fill='none'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 L15 0 L30 30 L45 0 L60 30' stroke='%23FFE500' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-size: 200px 200px, 250px 250px, 180px 180px;
    background-position: 0 0, 100px 50px, 50px 100px;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        var(--dark-gray) 0%,
        #2a0a1a 25%,
        #0a1a2a 50%,
        #1a1a0a 75%,
        var(--dark-gray) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(255, 20, 147, 0.03) 50px,
            rgba(255, 20, 147, 0.03) 51px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 50px,
            rgba(0, 212, 255, 0.03) 50px,
            rgba(0, 212, 255, 0.03) 51px
        );
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.hero-title span {
    display: block;
    font-family: var(--font-impact);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.title-the {
    font-size: 2rem;
    color: var(--electric-blue);
    text-shadow: var(--shadow-neon-blue);
}

.title-class {
    font-size: 5rem;
    color: var(--hot-pink);
    text-shadow: 
        4px 4px 0 var(--bright-yellow),
        var(--shadow-neon-pink);
    animation: glitch 3s infinite;
}

.title-of {
    font-size: 1.5rem;
    color: var(--bright-yellow);
    text-shadow: var(--shadow-neon-yellow);
}

.title-year {
    font-size: 8rem;
    color: var(--pure-white);
    text-shadow: 
        6px 6px 0 var(--hot-pink),
        12px 12px 0 var(--electric-blue),
        0 0 50px rgba(255, 255, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes glitch {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-2px, 2px); }
    94% { transform: translate(2px, -2px); }
    96% { transform: translate(-2px, -2px); }
    98% { transform: translate(2px, 2px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.hero-tagline {
    font-family: var(--font-pixel);
    font-size: 1rem;
    color: var(--bright-yellow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 15px 30px;
    background: linear-gradient(90deg, transparent, rgba(255, 229, 0, 0.1), transparent);
    border-top: 2px solid var(--hot-pink);
    border-bottom: 2px solid var(--electric-blue);
    animation: typewriter 4s steps(40) 1s forwards;
}

@keyframes typewriter {
    from { width: 0; overflow: hidden; white-space: nowrap; }
    to { width: 100%; }
}

.hero-decorations {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.hero-decorations .triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 40px solid var(--hot-pink);
    animation: bounce 1s ease-in-out infinite;
}

.hero-decorations .zigzag {
    width: 60px;
    height: 30px;
    background: repeating-linear-gradient(
        90deg,
        var(--electric-blue) 0px,
        var(--electric-blue) 10px,
        transparent 10px,
        transparent 20px
    );
    animation: bounce 1s ease-in-out infinite 0.2s;
}

.hero-decorations .circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bright-yellow);
    animation: bounce 1s ease-in-out infinite 0.4s;
}

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

.main-nav {
    position: sticky;
    top: 0;
    background: var(--pure-black);
    border-top: 4px solid var(--hot-pink);
    border-bottom: 4px solid var(--electric-blue);
    z-index: 1000;
    padding: 15px 0;
}

.nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    flex-wrap: wrap;
}

.nav-list a {
    font-family: var(--font-impact);
    font-size: 1.2rem;
    color: var(--pure-white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hot-pink), var(--electric-blue));
    transition: width 0.3s ease;
}

.nav-list a:hover {
    color: var(--bright-yellow);
    text-shadow: var(--shadow-neon-yellow);
}

.nav-list a:hover::before {
    width: 100%;
}

.nav-pillars {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    margin-top: 10px;
    flex-wrap: wrap;
}

.nav-pillars a {
    font-family: var(--font-pixel);
    font-size: 0.6rem;
    color: var(--electric-blue);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 15px;
    border: 1px solid var(--electric-blue);
    transition: all 0.3s ease;
}

.nav-pillars a:hover {
    background: var(--electric-blue);
    color: var(--pure-black);
}

.section {
    padding: 100px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--hot-pink) 0px,
        var(--hot-pink) 20px,
        var(--electric-blue) 20px,
        var(--electric-blue) 40px,
        var(--bright-yellow) 40px,
        var(--bright-yellow) 60px
    );
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-impact);
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-tech .section-title {
    color: var(--electric-blue);
    text-shadow: 4px 4px 0 var(--hot-pink), var(--shadow-neon-blue);
}

.section-look .section-title {
    color: var(--hot-pink);
    text-shadow: 4px 4px 0 var(--bright-yellow), var(--shadow-neon-pink);
}

.section-fun .section-title {
    color: var(--bright-yellow);
    text-shadow: 4px 4px 0 var(--electric-blue), var(--shadow-neon-yellow);
}

.section-culture .section-title {
    color: var(--neon-green);
    text-shadow: 4px 4px 0 var(--hot-pink), 0 0 20px rgba(57, 255, 20, 0.5);
}

.section-subtitle {
    font-family: var(--font-pixel);
    font-size: 0.9rem;
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

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

.section-dive-deeper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px dashed rgba(255, 255, 255, 0.2);
}

.dive-deeper-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-pixel);
    font-size: 0.9rem;
    color: var(--bright-yellow);
    text-decoration: none;
    padding: 15px 30px;
    border: 3px solid var(--electric-blue);
    background: rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dive-deeper-link:hover {
    background: var(--electric-blue);
    color: var(--pure-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.dive-deeper-link .dive-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.dive-deeper-link:hover .dive-arrow {
    transform: translateX(5px);
}

.product-card {
    background: linear-gradient(145deg, #252525, #1a1a1a);
    border: 3px solid var(--hot-pink);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 48%,
        rgba(255, 20, 147, 0.1) 49%,
        rgba(255, 20, 147, 0.1) 51%,
        transparent 52%
    );
    background-size: 10px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--electric-blue);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(0, 212, 255, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
}

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

.product-card.hero-product {
    border-width: 4px;
    border-image: linear-gradient(45deg, var(--hot-pink), var(--electric-blue), var(--bright-yellow)) 1;
}

.product-card.coming-soon {
    opacity: 0.8;
    border-style: dashed;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--hot-pink);
    color: var(--pure-white);
    font-family: var(--font-impact);
    font-size: 0.9rem;
    padding: 8px 40px;
    transform: rotate(45deg);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.coming-soon-badge {
    background: var(--bright-yellow);
    color: var(--pure-black);
}

.product-image {
    height: 250px;
    background: linear-gradient(135deg, #333, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border: 4px dashed currentColor;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nes-placeholder { background: linear-gradient(135deg, #c0392b, #8e44ad); color: var(--pure-white); }
.walkman-placeholder { background: linear-gradient(135deg, #f1c40f, #e67e22); color: var(--pure-black); }
.blazer-placeholder { background: linear-gradient(135deg, #2c3e50, #34495e); color: var(--pure-white); }
.jordan-placeholder { background: linear-gradient(135deg, #e74c3c, #c0392b); color: var(--pure-white); }
.acidwash-placeholder { background: linear-gradient(135deg, #3498db, #9b59b6); color: var(--pure-white); }
.tmnt-placeholder { background: linear-gradient(135deg, #27ae60, #2ecc71); color: var(--pure-white); }
.gameboy-placeholder { background: linear-gradient(135deg, #95a5a6, #7f8c8d); color: var(--pure-black); }
.roger-placeholder { background: linear-gradient(135deg, #e74c3c, #f39c12); color: var(--pure-white); }
.diehard-placeholder { background: linear-gradient(135deg, #2c3e50, #e74c3c); color: var(--pure-white); }

.pixel-text {
    font-family: var(--font-pixel);
    font-size: 1.5rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.product-info {
    padding: 25px;
}

.product-title {
    font-family: var(--font-impact);
    font-size: 1.6rem;
    color: var(--bright-yellow);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.product-description {
    color: var(--light-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.product-meta {
    margin-bottom: 20px;
}

.year-tag {
    display: inline-block;
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    background: var(--electric-blue);
    color: var(--pure-black);
    padding: 5px 12px;
    text-transform: uppercase;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    font-family: var(--font-impact);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 25px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--hot-pink);
    color: var(--pure-white);
    box-shadow: 4px 4px 0 var(--pure-black);
}

.btn-primary:hover {
    background: var(--electric-blue);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--pure-black);
}

.btn-secondary {
    background: transparent;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: var(--pure-black);
}

.btn-teaser {
    background: var(--bright-yellow);
    color: var(--pure-black);
    box-shadow: 4px 4px 0 var(--hot-pink);
    animation: pulse 1.5s ease-in-out infinite;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 50px;
}

.culture-category {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border: 2px solid var(--hot-pink);
    position: relative;
}

.culture-category::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--hot-pink), var(--electric-blue), var(--bright-yellow), var(--hot-pink));
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientShift 5s ease infinite;
    opacity: 0.5;
}

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

.category-title {
    font-family: var(--font-impact);
    font-size: 2rem;
    color: var(--bright-yellow);
    text-transform: uppercase;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-title .icon {
    font-size: 2.5rem;
}

.culture-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.culture-card {
    display: flex;
    gap: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-left: 4px solid var(--electric-blue);
    transition: all 0.3s ease;
}

.culture-card:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateX(10px);
}

.culture-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.culture-image .placeholder-image {
    border-radius: 0;
}

.culture-info h4 {
    font-family: var(--font-impact);
    font-size: 1.3rem;
    color: var(--hot-pink);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.culture-info p {
    color: var(--light-gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.culture-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.music-feature {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.smiley-container {
    flex-shrink: 0;
}

.acid-smiley {
    width: 150px;
    height: 150px;
    background: var(--bright-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 0 30px rgba(255, 229, 0, 0.5),
        inset 0 -5px 20px rgba(0, 0, 0, 0.1);
    animation: smileyPulse 2s ease-in-out infinite;
}

@keyframes smileyPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.05) rotate(5deg); }
}

.smiley-face {
    position: relative;
    width: 100px;
    height: 100px;
}

.smiley-face .eye {
    position: absolute;
    width: 15px;
    height: 15px;
    background: var(--pure-black);
    border-radius: 50%;
    top: 25px;
}

.smiley-face .eye.left { left: 20px; }
.smiley-face .eye.right { right: 20px; }

.smiley-face .smile {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 30px;
    border-bottom: 8px solid var(--pure-black);
    border-radius: 0 0 60px 60px;
}

.music-info h4 {
    font-family: var(--font-impact);
    font-size: 1.8rem;
    color: var(--bright-yellow);
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 2px 2px 0 var(--hot-pink);
}

.music-description {
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.music-tracks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.track-tag {
    font-family: var(--font-pixel);
    font-size: 0.65rem;
    background: rgba(255, 20, 147, 0.2);
    border: 1px solid var(--hot-pink);
    color: var(--hot-pink);
    padding: 8px 12px;
}

.main-footer {
    background: var(--pure-black);
    padding: 60px 0 30px;
    border-top: 4px solid var(--hot-pink);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-family: var(--font-impact);
    font-size: 2rem;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0 var(--electric-blue);
    display: block;
    margin-bottom: 10px;
}

.footer-tagline {
    font-family: var(--font-pixel);
    font-size: 0.7rem;
    color: var(--bright-yellow);
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    font-family: var(--font-impact);
    color: var(--pure-white);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--electric-blue);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #666;
}

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

.footer-decoration {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-decoration .triangle {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 25px solid var(--hot-pink);
}

.footer-decoration .circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--electric-blue);
}

.footer-decoration .zigzag {
    width: 40px;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        var(--bright-yellow) 0px,
        var(--bright-yellow) 8px,
        transparent 8px,
        transparent 16px
    );
}

@media (max-width: 768px) {
    .title-class {
        font-size: 3rem;
    }
    
    .title-year {
        font-size: 5rem;
    }
    
    .hero-tagline {
        font-size: 0.7rem;
        padding: 10px 15px;
    }
    
    .nav-list {
        gap: 15px;
    }
    
    .nav-list a {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 0.7rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .culture-card {
        flex-direction: column;
    }
    
    .culture-image {
        width: 100%;
        height: 150px;
    }
    
    .music-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .acid-smiley {
        width: 120px;
        height: 120px;
    }
    
    .smiley-face {
        width: 80px;
        height: 80px;
    }
    
    .smiley-face .eye {
        width: 12px;
        height: 12px;
        top: 20px;
    }
    
    .smiley-face .eye.left { left: 15px; }
    .smiley-face .eye.right { right: 15px; }
    
    .smiley-face .smile {
        width: 45px;
        height: 22px;
        bottom: 15px;
        border-bottom-width: 6px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .title-the {
        font-size: 1.5rem;
    }
    
    .title-class {
        font-size: 2.5rem;
    }
    
    .title-of {
        font-size: 1rem;
    }
    
    .title-year {
        font-size: 3.5rem;
    }
    
    .hero-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
    }
    
    .hero-decorations {
        gap: 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .product-badge {
        font-size: 0.7rem;
        padding: 5px 30px;
        right: -35px;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .music-info h4 {
        font-size: 1.4rem;
    }
    
    .track-tag {
        font-size: 0.55rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .crt-flicker {
        animation: none;
    }
}
