
        .specs-section {
            max-width: 1000px;
            margin: 2rem auto;
            background: #ffffff;
            border-radius: 32px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.05);
            overflow: hidden;
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
        }
        .specs-header {
            background: #1a2c3e;
            color: white;
            padding: 1.2rem 2rem;
            text-align: center;
        }
        .specs-header h3 {
            margin: 0;
            font-size: 1.7rem;
            font-weight: 600;
            letter-spacing: -0.3px;
        }
        .specs-header p {
            margin: 0.3rem 0 0;
            opacity: 0.8;
            font-size: 0.9rem;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th {
            background: #f7f2ea;
            color: #b13e3e;
            font-weight: 600;
            font-size: 1rem;
            padding: 1rem 1.5rem;
            text-align: left;
            width: 30%;
            border-bottom: 1px solid #eaddd0;
        }
        td {
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #f0ebe4;
            color: #2c3e4e;
            line-height: 1.4;
        }
        tr:last-child td, tr:last-child th {
            border-bottom: none;
        }
        .fun-marker {
            background: #fff6e8;
        }
        .spec-emoji {
            font-size: 1.2rem;
            margin-right: 0.4rem;
        }
        .note {
            background: #fef5e7;
            padding: 0.8rem 2rem;
            text-align: center;
            font-size: 0.8rem;
            color: #8b6b42;
            border-top: 1px solid #f5e5d5;
        }
        @media (max-width: 680px) {
            th, td {
                padding: 0.8rem 1rem;
                display: block;
                width: 100%;
            }
            th {
                border-bottom: none;
                padding-bottom: 0.2rem;
            }
            td {
                padding-top: 0.2rem;
                border-bottom: 1px solid #eaddd0;
            }
            tr {
                display: block;
                margin-bottom: 1rem;
            }
            .specs-header h3 {
                font-size: 1.4rem;
            }
        }
    