       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #e63946;
            --primary-dark: #d90429;
            --secondary-color: #1d3557;
            --light-color: #f1faee;
            --dark-color: #1d3557;
            --text-color: #333;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --gray: #6c757d;
            --accent: #00d4ff;
            --border-radius: 12px;
            --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --header-height: 64px;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            background: linear-gradient(135deg, #f1faee 0%, #ffffff 100%);
            overflow-x: hidden;
        }
        /* Mobilde taşmayı engelle: medya ve tablolar sığsın */
        img, video, canvas, iframe { max-width: 100%; height: auto; }
        table { width: 100%; max-width: 100%; }
        .table-container { overflow-x: auto; }
        /* Uzun kelimeleri kırarak yatay kaymayı azalt */
        body, p, li, h1, h2, h3, h4, h5, h6 { overflow-wrap: anywhere; word-break: break-word; }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(230, 57, 70, 0.1);
            animation: slideDown 0.6s ease-out;
        }

        header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav ul {
            display: flex;
            gap: 25px;
            list-style: none;
            align-items: center;
        }

        nav a {
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            color: var(--text-color);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .btn-login {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white) !important;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 5px 20px rgba(230, 57, 70, 0.3);
            display: inline-block;
        }

        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(230, 57, 70, 0.4);
        }

        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-color);
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            right: 20px;
            bottom: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(230,57,70,0.35);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: opacity .25s ease, transform .25s ease, visibility .25s;
            z-index: 1000;
        }
        .back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .back-to-top:hover { transform: translateY(-2px); }

        /* Ad slots - shared */
        .ad { margin: 24px 0; }
        .ad-display   { min-height: 100px; }
        .ad-infeed    { min-height: 180px; }
        .ad-inarticle { min-height: 180px; }
        .ad-multiplex { min-height: 200px; }
        @media (max-width: 768px) {
            .ad { margin: 16px 0; }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1d3557 0%, #e63946 80%);
            color: var(--white);
            padding: 90px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            animation: float 6s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
            animation: float 8s ease-in-out infinite reverse;
        }

        /* Bench Press Playground */
        .benchpress {
                    padding: 80px 0;
                    background: radial-gradient(1200px 600px at 50% -10%, #ffffff 0%, #f7f9ff 60%, #eef1f8 100%);
                }
        .benchpress h2 {
            text-align:center; font-size:2.2rem; margin-bottom:8px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
            font-weight:800;
        }
        .benchpress .subtitle { text-align:center; color:#6c757d; margin-bottom:24px; }
        .bench-stage {
            position: relative; width:100%; max-width:920px; margin:0 auto; border-radius:18px; overflow:hidden;
            background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
            box-shadow: 0 12px 40px rgba(0,0,0,.08);
            border: 1px solid rgba(0,0,0,.04);
            cursor: pointer;
        }
        .bench-stage::after { content:''; position:absolute; inset:0; pointer-events:none; background: radial-gradient(600px 160px at 50% 80%, rgba(0,0,0,.06), transparent 60%); }
        .bench-stage:focus { outline: 3px solid rgba(0,212,255,.35); outline-offset: 4px; }
        .bench-canvas { width:100%; height:auto; display:block; }
        .rep-overlay {
            position:absolute; inset:0; display:flex; align-items:center; justify-content:center; pointer-events:none;
            font-weight:900; color:#ffffff; font-size:48px; opacity:0; transform: translateY(10px) scale(.9);
            transition: opacity .25s ease, transform .25s ease;
            text-shadow: 0 8px 24px rgba(230,57,70,.35);
        }
    .rep-overlay.show { opacity:1; transform: translateY(0) scale(1); }
    .rep-overlay.bass { font-size:72px; letter-spacing:2px; color:#fdfdfd; }
    .rep-overlay.bass-big { font-size:96px; letter-spacing:3px; color:#fdfdfd; }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: slideInLeft 0.8s ease-out;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 800;
            animation: fadeInUp 0.8s ease-out 0.2s backwards;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeInUp 0.8s ease-out 0.4s backwards;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 0.8s ease-out 0.6s backwards;
        }

        .btn-primary, .btn-secondary {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            display: inline-block;
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(230, 57, 70, 0.5);
        }

        .btn-secondary {
            background: transparent;
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .hero-image {
            animation: slideInRight 0.8s ease-out;
            position: relative;
            z-index: 1;
        }

        .hero-image-content {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(0, 212, 255, 0.2));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(0, 212, 255, 0.3);
            animation: zoomIn 0.8s ease-out;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(230, 57, 70, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .features h2 {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
            z-index: 1;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .feature-card {
            background: var(--white);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: var(--transition);
            border: 1px solid rgba(230, 57, 70, 0.1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.8s ease-out backwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.1), transparent);
            transition: left 0.6s;
        }

        .feature-card:hover::before {
            left: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(230, 57, 70, 0.15);
            border-color: var(--primary-color);
        }

        .feature-icon-emoji {
            font-size: 3rem;
            display: block;
            margin-bottom: 10px;
            animation: bounce 2s ease-in-out infinite;
        }

        .feature-card:nth-child(2) .feature-icon-emoji { animation-delay: 0.2s; }
        .feature-card:nth-child(3) .feature-icon-emoji { animation-delay: 0.4s; }
        .feature-card:nth-child(4) .feature-icon-emoji { animation-delay: 0.1s; }
        .feature-card:nth-child(5) .feature-icon-emoji { animation-delay: 0.3s; }
        .feature-card:nth-child(6) .feature-icon-emoji { animation-delay: 0.5s; }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            font-weight: 700;
        }

        .feature-card p {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .btn-link {
            color: var(--primary-color);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: var(--transition);
            position: relative;
        }

        .btn-link::after {
            content: '→';
            transition: margin-left 0.3s ease;
            margin-left: 5px;
        }

        .btn-link:hover {
            color: var(--accent);
            transform: translateX(5px);
        }

        /* Motivation Section */
        .motivation {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 60px 0;
        }

        .motivation h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-style: italic;
            font-weight: 800;
            position: relative;
            z-index: 1;
            animation: slideInUp 0.8s ease-out;
        }

        .motivation p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.95;
            position: relative;
            z-index: 1;
            animation: slideInUp 0.8s ease-out 0.2s backwards;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
            color: var(--white);
            padding: 60px 0 30px;
            position: relative;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--accent), var(--white));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-links h4 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent));
            transition: width 0.3s ease;
        }

        .footer-links:hover h4::after {
            width: 100%;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
            list-style: none;
        }

        .footer-links a {
            opacity: 0.8;
            transition: var(--transition);
            display: inline-block;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--accent);
            transform: translateX(5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(30px);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            header .container { position: relative; }
            nav ul {
                display: none;
                position: absolute;
                top: 64px;
                right: 16px;
                left: 16px;
                background: #ffffff;
                box-shadow: 0 8px 24px rgba(0,0,0,0.12);
                border-radius: 12px;
                padding: 12px;
                flex-direction: column;
                gap: 8px;
                z-index: 1000;
            }
            nav ul.show { display: flex; }
            nav ul li { margin: 0; }

            .mobile-menu {
                display: block;
                cursor: pointer;
            }

            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-image {
                display: none;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
                text-align: center;
            }

            .features h2 {
                font-size: 2rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .motivation h2 {
                font-size: 1.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        /* Bench Press (CSS-only) Section — minimal clean design */
        .bench-section {
            background: linear-gradient(180deg, #f5f5f7 0%, #e8e9ed 100%);
            display: grid;
            place-items: center;
            padding: 60px 16px;
            overflow: hidden;
            position: relative;
        }

        .bench-section .bench-scene {
            position: relative;
            width: min(1100px, 96vw);
            aspect-ratio: 2.4 / 1;
            border-radius: 24px;
            background: linear-gradient(180deg, #f0f1f5 0%, #e4e6ec 100%);
            box-shadow: 0 20px 60px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.7);
            isolation: isolate;
            cursor: pointer;
        }

        /* Barbell (click target) */
        .bench-section .barbell {
            position: absolute;
            left: 50%; top: 30%;
            transform: translate(-50%, 0);
            width: 84%; height: 14px;
            border: 0; padding: 0; background: transparent;
            cursor: pointer;
            z-index: 10;
        }

        .bench-section .bar-inner {
            position: absolute; inset: 0;
            border-radius: 7px;
            background: linear-gradient(180deg, #d4d8de 0%, #9fa7b3 50%, #b8bec7 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,.15), inset 0 2px 0 rgba(255,255,255,.6), inset 0 -1px 3px rgba(0,0,0,.12);
            z-index: 1; /* Bar is behind plates */
        }

        /* Blue clamp detail on plates (vertical rounded rectangles) - BEHIND plates */
        .bench-section .bar-inner::before,
        .bench-section .bar-inner::after {
            content: '';
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 14px; height: 34px; border-radius: 8px;
            background: linear-gradient(180deg, #4a6bff, #2947c6);
            box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 3px 8px rgba(0,0,0,.2);
            z-index: -1; /* Behind the bar, so plates will cover them */
        }
        .bench-section .bar-inner::before { left: -6px; }
        .bench-section .bar-inner::after { right: -6px; }

        /* Plates: dark gray rectangular bumpers - IN FRONT */
        .bench-section .barbell::before,
        .bench-section .barbell::after {
            content: '';
            position: absolute; top: 50%; transform: translateY(-50%);
            width: 66px; height: 42px; border-radius: 12px;
            background: linear-gradient(180deg, #434a57, #2b303a);
            box-shadow: 0 8px 20px rgba(0,0,0,.3), inset 0 2px 0 rgba(255,255,255,.08), inset 0 -3px 8px rgba(0,0,0,.15);
            z-index: 2; /* Plates are in front */
        }
        .bench-section .barbell::before { left: -36px; }
        .bench-section .barbell::after { right: -36px; }

        /* Bench - main pad (slightly higher, closer to torso) */
        .bench-section .bench {
            position: absolute; left: 50%; top: 52%; transform: translateX(-50%);
            width: 62%; height: 58px; border-radius: 32px;
            background: linear-gradient(180deg, #d8dce3 0%, #c2c8d2 50%, #adb5c2 100%);
            box-shadow: 0 10px 24px rgba(0,0,0,.16), inset 0 2px 0 rgba(255,255,255,.5), inset 0 -4px 12px rgba(0,0,0,.1);
            border: 1px solid rgba(0,0,0,.08);
            z-index: 1;
        }
        /* Head support pad */
        .bench-section .bench::before{
            content:''; position:absolute; left: 10%; width: 26%; top:-20px; height: 50px; border-radius: 25px;
            background: linear-gradient(180deg, #d0d5de, #b4bcc9);
            box-shadow: 0 6px 16px rgba(0,0,0,.14), inset 0 2px 0 rgba(255,255,255,.4);
        }
        /* Black shorts area */
        .bench-section .bench::after{
            content:''; position:absolute; right: 14%; width: 20%; top: 4px; height: 50px; border-radius: 22px;
            background: linear-gradient(180deg, #c5d0dc, #a8b6c6);
            box-shadow: inset 0 2px 6px rgba(0,0,0,.12);
        }

        /* Bench base frame (follow pad upward a bit) */
        .bench-section .bench-frame{
            position: absolute; left: 50%; top: 71%; transform: translateX(-50%);
            width: 68%; height: 14px; pointer-events: none; border-radius: 7px;
            background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
            box-shadow: 0 6px 16px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.15);
            z-index: 1;
        }
        
        /* Rack hooks/supports for barbell (extended downward) */
        .bench-section .rack-hook {
            position: absolute; top: 22%; width: 14px; height: 110px; pointer-events: none;
            background: linear-gradient(180deg, #3a3a3a, #242424);
            border-radius: 7px;
            box-shadow: 0 6px 14px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.12);
            z-index: 1;
        }
        .bench-section .rack-hook.left { left: 6%; }
        .bench-section .rack-hook.right { right: 6%; }
        /* inward lip to hold bar */
        .bench-section .rack-hook::after{
            content:''; position: absolute; top: 8px; width: 18px; height: 8px; 
            background: linear-gradient(180deg, #4b4b4b, #2e2e2e); border-radius: 4px;
            box-shadow: 0 2px 4px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.08);
        }
        .bench-section .rack-hook.left::after{ right: -14px; }
        .bench-section .rack-hook.right::after{ left: -14px; }
        .bench-section .rack-hook::before {
            content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
            background: linear-gradient(180deg, #3a3f4a, #2a2f3a);
            border-radius: 4px 4px 0 0;
        }

        /* Soft floor shadow */
        .bench-section .shadow {
            position: absolute; left: 50%; bottom: 8%; transform: translateX(-50%);
            width: 70%; height: 20px; border-radius: 50%;
            background: radial-gradient(ellipse at center, rgba(0,0,0,.12), rgba(0,0,0,0) 70%);
            filter: blur(4px);
        }

        /* Athlete head - clean and simple */
        .bench-section .athlete-head { 
            position: absolute; width: 56px; height: 56px; 
            background: linear-gradient(135deg, #ffd7b5 0%, #ffb88c 50%, #ff9d6e 100%); 
            border-radius: 50%; 
            left: 50%; top: 25%; transform: translateX(-50%); 
            box-shadow: 0 6px 16px rgba(0,0,0,.22), inset -3px -3px 8px rgba(0,0,0,.08), inset 3px 3px 8px rgba(255,255,255,.5);
            z-index: 5;
        }

        /* Eyes on face - simple white dots */
        .bench-section .eyes {
            position: absolute;
            top: 45%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 28px;
            height: 10px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 2;
        }
        .bench-section .eye {
            width: 7px;
            height: 7px;
            background: #2a2a2a;
            border-radius: 50%;
            box-shadow: 0 1px 3px rgba(0,0,0,.2);
            transition: all 0.3s ease;
        }
        
        /* Mouth - normal smile */
        .bench-section .mouth {
            position: absolute;
            top: 65%;
            left: 50%;
            transform: translateX(-50%);
            width: 18px;
            height: 3px;
            border-radius: 0 0 10px 10px;
            background: #2a2a2a;
            transition: all 0.3s ease;
        }
        
        /* ANGRY FACE STATES - More aggressive expressions */
        /* Level 1: Determined (10 reps) - narrowed eyes, gritting teeth */
        .bench-section .athlete-head.angry-1 .eye {
            width: 9px;
            height: 3px;
            border-radius: 0;
            background: #1a1a1a;
        }
        .bench-section .athlete-head.angry-1 .eye.left {
            transform: rotate(-8deg) translateY(1px);
        }
        .bench-section .athlete-head.angry-1 .eye.right {
            transform: rotate(8deg) translateY(1px);
        }
        .bench-section .athlete-head.angry-1 .mouth {
            width: 14px;
            height: 2px;
            border-radius: 0;
            top: 68%;
            background: #2a2a2a;
        }
        /* Gritted teeth line */
        .bench-section .athlete-head.angry-1 .mouth::after {
            content: '';
            position: absolute;
            top: -3px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 2px;
            background: #2a2a2a;
        }
        
        /* Level 2: Very Angry (15 reps) - intense stare, open mouth yelling */
        .bench-section .athlete-head.angry-2 .eye {
            width: 8px;
            height: 2px;
            border-radius: 0;
            background: #000000;
            box-shadow: 0 1px 0 rgba(0,0,0,.3);
        }
        .bench-section .athlete-head.angry-2 .eye.left {
            transform: rotate(-12deg) translateY(2px);
        }
        .bench-section .athlete-head.angry-2 .eye.right {
            transform: rotate(12deg) translateY(2px);
        }
        /* Angry eyebrows */
        .bench-section .athlete-head.angry-2 .eye::before {
            content: '';
            position: absolute;
            top: -4px;
            left: -2px;
            width: 12px;
            height: 2px;
            background: #1a1a1a;
            border-radius: 1px;
        }
        .bench-section .athlete-head.angry-2 .eye.left::before {
            transform: rotate(-15deg);
        }
        .bench-section .athlete-head.angry-2 .eye.right::before {
            transform: rotate(15deg);
        }
        .bench-section .athlete-head.angry-2 .mouth {
            width: 12px;
            height: 10px;
            border-radius: 50%;
            top: 70%;
            background: #1a1a1a;
        }
        
        /* Level 3: FURIOUS (20 reps) - extreme rage */
        .bench-section .athlete-head.angry-3 .eye {
            width: 7px;
            height: 1px;
            border-radius: 0;
            background: #000000;
            box-shadow: 0 2px 4px rgba(255,0,0,.4);
        }
        .bench-section .athlete-head.angry-3 .eye.left {
            transform: rotate(-15deg) translateY(3px);
        }
        .bench-section .athlete-head.angry-3 .eye.right {
            transform: rotate(15deg) translateY(3px);
        }
        /* Very angry eyebrows */
        .bench-section .athlete-head.angry-3 .eye::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -3px;
            width: 14px;
            height: 3px;
            background: #000000;
            border-radius: 1px;
        }
        .bench-section .athlete-head.angry-3 .eye.left::before {
            transform: rotate(-20deg);
        }
        .bench-section .athlete-head.angry-3 .eye.right::before {
            transform: rotate(20deg);
        }
        .bench-section .athlete-head.angry-3 .mouth {
            width: 16px;
            height: 14px;
            border-radius: 50%;
            top: 72%;
            background: #1a1a1a;
        }
        /* Teeth gritting effect */
        .bench-section .athlete-head.angry-3 .mouth::before {
            content: '';
            position: absolute;
            top: 3px;
            left: 50%;
            transform: translateX(-50%);
            width: 10px;
            height: 2px;
            background: #ffffff;
        }
        /* Face redness from effort */
        .bench-section .athlete-head.angry-3::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at center, rgba(255,80,80,.2), transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        
        /* Torso - BLACK Batman shirt */
        .bench-section .athlete-torso { 
            position: absolute; width: 14%; min-width: 90px; height: 80px; 
            background: linear-gradient(180deg, #2c3e50 0%, #1a252f 50%, #0d1419 100%); 
            border-radius: 18px 18px 12px 12px; 
            left: 50%; top: 40%; transform: translateX(-50%); 
            box-shadow: 0 6px 18px rgba(0,0,0,.35), inset 0 3px 0 rgba(255,255,255,.08), inset 0 -6px 12px rgba(0,0,0,.25);
            z-index: 3;
            border: 2px solid rgba(0,0,0,.3);
        }
        
        /* Spider-Man Logo - WHITE version (SVG) */
        .bench-section .spider-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 64px;
            z-index: 4;
        }
        .bench-section .spider-logo svg { width: 100%; height: 100%; display: block; }
        
        /* Remove legacy pseudo-based logo parts (kept for reference) */
        .bench-section .batman-logo::before { content: none; }
        
        .bench-section .batman-logo::after { content: none; }
        
        /* Neutralize old gradient-based logo */
        .bench-section .batman-logo { background: none; }
        
        /* Chest definition */
        .bench-section .athlete-torso::before {
            content: '';
            position: absolute;
            top: 15%;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 50%;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,.12));
            border-radius: 50%;
        }
        /* Abs line removed for Batman shirt */

        /* Arms - more anatomical with muscle definition */
        .bench-section .arm { 
            position: absolute; 
            width: 22px; height: 115px; 
            background: linear-gradient(180deg, #ffb88c 0%, #ff9d6e 30%, #ffb88c 60%, #ffd7b5 100%); 
            border-radius: 12px 12px 10px 10px; 
            top: 30%; 
            transform-origin: top center;
            box-shadow: 0 4px 14px rgba(0,0,0,.18), inset -2px 0 6px rgba(0,0,0,.12), inset 2px 0 6px rgba(255,255,255,.4);
            z-index: 6;
            transition: transform .28s cubic-bezier(.22,.61,.36,1);
        }
        /* Bicep bulge */
        .bench-section .arm::before {
            content: '';
            position: absolute;
            top: 25%;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 35px;
            background: radial-gradient(ellipse at center, rgba(0,0,0,.08), transparent 70%);
            border-radius: 50%;
        }
        .bench-section .arm.left { 
            left: calc(50% - 11%); 
            transform: rotate(-18deg); 
        }
        .bench-section .arm.right { 
            left: calc(50% + 11% - 22px); 
            transform: rotate(18deg); 
        }
        
        /* Hands - more detailed and realistic */
        .bench-section .hand { 
            position: absolute; width: 26px; height: 28px; 
            background: radial-gradient(ellipse at 35% 35%, #ffd7b5, #ffb88c 60%, #ff9d6e); 
            border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%; 
            left: -2px; top: -8px; 
            box-shadow: 0 3px 8px rgba(0,0,0,.2), inset 1px 1px 3px rgba(255,255,255,.4), inset -1px -1px 3px rgba(0,0,0,.1);
        }
        /* Fingers detail */
        .bench-section .hand::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,.1) 30%, rgba(0,0,0,.1) 70%, transparent);
            border-radius: 2px;
        }
        
        /* Arms extend during press - more natural movement */
        .bench-section .barbell.pressing ~ .arm.left { 
            transform: rotate(-26deg) translateY(14px); 
        }
        .bench-section .barbell.pressing ~ .arm.right { 
            transform: rotate(26deg) translateY(14px); 
        }

        /* Legs - more defined with black shorts */
        .bench-section .leg { 
            position: absolute; width: 28px; height: 85px; 
            background: linear-gradient(180deg, #2c3e50 0%, #34495e 25%, #ffb88c 25%, #ff9d6e 100%); 
            border-radius: 14px; 
            box-shadow: 0 4px 12px rgba(0,0,0,.16), inset -2px 0 4px rgba(0,0,0,.1), inset 2px 0 4px rgba(255,255,255,.3);
            z-index: 2;
        }
        /* Knee definition */
        .bench-section .leg::before {
            content: '';
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translateX(-50%);
            width: 32px;
            height: 20px;
            background: radial-gradient(ellipse at center, rgba(0,0,0,.08), transparent 70%);
            border-radius: 50%;
        }
        .bench-section .leg.left { left: calc(50% - 75px); top: 62%; transform: rotate(14deg); }
        .bench-section .leg.right { left: calc(50% + 47px); top: 62%; transform: rotate(-14deg); }
        
        /* Shoes - more realistic sneakers */
        .bench-section .shoe { 
            position: absolute; width: 42px; height: 22px; 
            background: linear-gradient(180deg, #e74c3c 0%, #c0392b 50%, #922b21 100%); 
            border-radius: 14px 14px 8px 8px; 
            bottom: -10px; left: -7px; 
            box-shadow: 0 4px 10px rgba(0,0,0,.25), inset 0 2px 0 rgba(255,255,255,.25), inset 0 -2px 4px rgba(0,0,0,.15);
            border: 1px solid rgba(0,0,0,.2); 
        }
        /* Shoe laces detail */
        .bench-section .shoe::before {
            content: '';
            position: absolute;
            top: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,.4) 20%, rgba(255,255,255,.4) 80%, transparent);
            border-radius: 1px;
        }
        /* Shoe sole */
        .bench-section .shoe::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(180deg, #2c3e50, #1a252f);
            border-radius: 0 0 6px 6px;
            box-shadow: 0 2px 4px rgba(0,0,0,.3);
        }

        /* Rep counter (centered top) */
        .bench-section .rep-counter {
            position: absolute; left: 50%; top: 1%; transform: translate(-50%, 0);
            font-weight: 800; letter-spacing: 2px;
            font-size: clamp(32px, 7vw, 88px);
            color: #1f2937;
            text-shadow: 0 2px 0 rgba(255,255,255,.7), 0 4px 12px rgba(0,0,0,.15);
            user-select: none;
            z-index: 20; /* above bar */
        }
        .bench-section .rep-counter.bump { animation: counterBump .25s ease; }

        /* BAASSS text */
        .bench-section .bass-text {
            position: absolute; left: 50%; top: 16%; transform: translate(-50%, 0) scale(.8);
            font-weight: 900; letter-spacing: 2px;
            font-size: clamp(36px, 7.5vw, 96px);
            background: linear-gradient(135deg, #ff3b30, #ff8a00);
            -webkit-background-clip: text; background-clip: text; color: transparent;
            text-shadow: 0 10px 28px rgba(255,59,48,.35);
            opacity: 0; pointer-events: none; z-index: 25; /* bring to front */
        }
        .bench-section .bass-text.show { opacity: 1; animation: popUp .55s ease; }
        .bench-section .bass-text.big { font-size: clamp(46px, 9vw, 128px); }

    /* Sweat drops (position near the head) - more realistic and abundant */
    .bench-section .sweat { position: absolute; left: 50%; top: 26%; width: 0; height: 0; z-index: 8; }
        .bench-section .drop {
            position: absolute; left: 0; top: 0; 
            width: 6px; 
            height: 10px; 
            border-radius: 50% 50% 50% 50% / 35% 35% 65% 65%;
            background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.9), rgba(173,216,230,.8) 30%, rgba(135,206,250,.7) 60%, rgba(100,149,237,.6));
            opacity: 0.9; 
            box-shadow: 
                inset 1px 1px 2px rgba(255,255,255,.8), 
                inset -1px -1px 2px rgba(0,0,0,.08), 
                0 2px 4px rgba(0,0,0,.15),
                0 0 3px rgba(173,216,230,.4);
            animation: fallDrop var(--drop-duration, 1.2s) ease-in forwards;
        }
        /* Highlight on sweat drop - more prominent */
        .bench-section .drop::before {
            content: '';
            position: absolute;
            top: 12%;
            left: 22%;
            width: 2.5px;
            height: 2.5px;
            background: rgba(255,255,255,1);
            border-radius: 50%;
            filter: blur(0.3px);
            box-shadow: 0 0 2px rgba(255,255,255,.8);
        }
        /* Secondary highlight */
        .bench-section .drop::after {
            content: '';
            position: absolute;
            bottom: 20%;
            right: 25%;
            width: 1.5px;
            height: 1.5px;
            background: rgba(255,255,255,.7);
            border-radius: 50%;
        }

        /* States */
        .bench-section .barbell.pressing { animation: pressUpDown .28s cubic-bezier(.2,.7,.2,1); }
        .bench-section .barbell.finished { animation: barShake .9s ease-in-out infinite; }
        .bench-section.finished .barbell { pointer-events: none; cursor: not-allowed; }

        /* Keyframes */
        @keyframes pressUpDown {
            0% { transform: translate(-50%, 0); }
            45% { transform: translate(-50%, 12px); } /* bar goes down on press */
            100% { transform: translate(-50%, 0); }
        }
        @keyframes barShake {
            0%,100% { transform: translate(-50%, 0) rotate(0deg); }
            20% { transform: translate(-50%, 0) rotate(.3deg); }
            40% { transform: translate(-50%, 0) rotate(-.3deg); }
            60% { transform: translate(-50%, 0) rotate(.3deg); }
            80% { transform: translate(-50%, 0) rotate(-.3deg); }
        }
        @keyframes popUp {
            0% { transform: translate(-50%,0) scale(.75); opacity:.0; }
            60% { transform: translate(-50%,0) scale(1.08); opacity:1; }
            100% { transform: translate(-50%,0) scale(1); }
        }
        @keyframes counterBump {
            0% { transform: translate(-50%,0) scale(1); }
            50% { transform: translate(-50%,0) scale(1.15); }
            100% { transform: translate(-50%,0) scale(1); }
        }
        @keyframes fallDrop {
            0% { transform: translate(0, 0); opacity: .95; }
            80% { opacity: .9; }
            100% { transform: translate(20px, 100px); opacity: 0; }
        }

        /* Responsive scaling keeps scene centered */
        @media (max-width: 768px) {
            .bench-section { 
                padding: 30px 12px; 
            }
            .bench-section .bench-scene { 
                border-radius: 10px;
                width: 95vw;
                max-width: 100%;
            }
            /* Smaller elements on mobile */
            .bench-section .rep-counter {
                font-size: clamp(24px, 8vw, 48px);
            }
            .bench-section .bass-text {
                font-size: clamp(28px, 8vw, 64px);
            }
            .bench-section .bass-text.big {
                font-size: clamp(36px, 10vw, 80px);
            }
            /* Adjust athlete head size */
            .bench-section .athlete-head {
                width: 48px;
                height: 48px;
            }
            /* Adjust eyes and mouth */
            .bench-section .eyes {
                width: 24px;
            }
            .bench-section .eye {
                width: 6px;
                height: 6px;
            }
        }
        
        @media (max-width: 480px) {
            .bench-section { 
                padding: 20px 8px; 
            }
            .bench-section .bench-scene { 
                border-radius: 10px;
                width: 98vw;
                aspect-ratio: 2.2 / 1; /* Slightly taller for mobile */
            }
            /* Even smaller on very small screens */
            .bench-section .rep-counter {
                font-size: clamp(18px, 10vw, 36px);
                top: 2%;
            }
            .bench-section .bass-text {
                font-size: clamp(24px, 9vw, 50px);
            }
            .bench-section .bass-text.big {
                font-size: clamp(30px, 11vw, 64px);
            }
            .bench-section .athlete-head {
                width: 38px;
                height: 38px;
                top: 26%;
            }
            .bench-section .eyes {
                width: 20px;
            }
            .bench-section .eye {
                width: 5px;
                height: 5px;
            }
            .bench-section .mouth {
                width: 14px;
            }
            /* Smaller barbell and plates */
            .bench-section .barbell {
                height: 10px;
                top: 32%;
            }
            .bench-section .bar-inner {
                border-radius: 5px;
            }
            .bench-section .barbell::before,
            .bench-section .barbell::after {
                width: 50px;
                height: 32px;
                border-radius: 8px;
            }
            .bench-section .barbell::before { left: -28px; }
            .bench-section .barbell::after { right: -28px; }
            /* Smaller clamps */
            .bench-section .bar-inner::before,
            .bench-section .bar-inner::after {
                width: 10px;
                height: 26px;
            }
            /* Smaller torso */
            .bench-section .athlete-torso {
                min-width: 70px;
                height: 65px;
                top: 42%;
            }
            .bench-section .spider-logo {
                width: 40px;
                height: 46px;
            }
            /* Smaller arms */
            .bench-section .arm {
                width: 18px;
                height: 95px;
                top: 32%;
            }
            .bench-section .hand {
                width: 22px;
                height: 24px;
            }
            /* Smaller legs */
            .bench-section .leg {
                width: 24px;
                height: 70px;
            }
            .bench-section .shoe {
                width: 36px;
                height: 18px;
            }
            /* Bench adjustments */
            .bench-section .bench {
                height: 48px;
                top: 54%;
            }
        }
    