.about-section { padding: 20px 12px 0; }
        .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
        .about-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(205,164,41,0.12);
            border-radius: 14px;
            padding: 24px;
            transition: all 0.3s ease;
        }
        .about-card:hover {
            border-color: rgba(205,164,41,0.25);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
        }
        .about-card-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }
        .about-card-title {
            font-size: 1rem;
            font-weight: 700;
            color: #ffd873;
            margin: 0;
        }
        .about-icon {
            width: 28px;
            height: 28px;
            min-width: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(205,164,41,0.2), rgba(205,164,41,0.08));
            border-radius: 8px;
            flex-shrink: 0;
        }
        .about-icon svg {
            width: 16px;
            height: 16px;
            fill: #ffd873;
        }
        .about-item { margin-bottom: 16px; }
        .about-item:last-child { margin-bottom: 0; }
        .about-item h3 {
            font-size: 0.85rem;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            margin: 0 0 4px 0;
        }
        .about-item p {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
            margin: 0;
        }
        .about-step {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 16px;
        }
        .about-step:last-child { margin-bottom: 0; }
        .about-step-num {
            width: 28px;
            height: 28px;
            min-width: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #cda429, #ffd873);
            color: #000;
            font-size: 0.75rem;
            font-weight: 800;
            border-radius: 50%;
        }
        .about-step-text h3 {
            font-size: 0.85rem;
            font-weight: 700;
            color: rgba(255,255,255,0.9);
            margin: 0 0 2px 0;
        }
        .about-step-text p {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.55);
            line-height: 1.5;
            margin: 0;
        }
        .about-games-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
        .about-game-chip {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 8px;
            padding: 10px 12px;
            font-size: 0.78rem;
            color: rgba(255,255,255,0.75);
            transition: all 0.2s ease;
        }
        .about-game-chip:hover {
            border-color: rgba(205,164,41,0.25);
            color: #ffd873;
        }
        a.about-game-chip {
            text-decoration: none;
            display: block;
        }
        .about-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .about-contact-item:last-child { margin-bottom: 0; }
        .about-contact-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(205,164,41,0.12);
            border-radius: 50%;
            color: #ffd873;
            font-size: 0.75rem;
            font-weight: 700;
            flex-shrink: 0;
        }
        .about-contact-text {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.75);
        }
        .about-contact-text strong { color: rgba(255,255,255,0.9); }
        .about-faq { margin-bottom: 24px; }
        .about-faq-item {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.06);
            border-radius: 10px;
            padding: 16px;
            margin-bottom: 10px;
        }
        .about-faq-item:last-child { margin-bottom: 0; }
        .about-faq-q {
            font-size: 0.82rem;
            font-weight: 700;
            color: #ffd873;
            margin: 0 0 6px 0;
        }
        .about-faq-a {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.6;
            margin: 0;
        }
        .about-summary-card {
            background: linear-gradient(135deg, rgba(205,164,41,0.10) 0%, rgba(205,164,41,0.03) 100%);
            border: 1px solid rgba(205,164,41,0.18);
            border-radius: 14px;
            padding: 24px;
            height: 100%;
        }
        .about-summary-card h2 {
            font-size: 1rem;
            font-weight: 800;
            color: #ffd873;
            margin: 0 0 12px 0;
            line-height: 1.5;
        }
        .about-summary-card p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 767px) {
            .about-grid { grid-template-columns: 1fr; }
            .about-games-grid { grid-template-columns: 1fr 1fr; }
        }