@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-body: #080816;
    --bg-primary: #0c0c1d;
    --bg-secondary: #111127;
    --bg-card: #13132b;
    --bg-card-alt: #171735;
    --bg-card-hover: #1b1b3d;
    --bg-input: #15152f;
    --bg-input-focus: #1a1a38;
    --border-default: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.04);
    --border-accent: rgba(124,92,252,0.3);
    --text-white: #f0f0f8;
    --text-primary: #d4d4e8;
    --text-secondary: #8888aa;
    --text-muted: #555577;
    --accent: #7c5cfc;
    --accent-light: #9b82fd;
    --accent-dark: #6344e0;
    --accent-bg: rgba(124,92,252,0.08);
    --accent-bg-hover: rgba(124,92,252,0.14);
    --gradient-accent: linear-gradient(135deg, #7c5cfc 0%, #5b8def 100%);
    --gradient-accent-hover: linear-gradient(135deg, #6a4aee 0%, #4a7cde 100%);
    --green: #22c55e;
    --green-bg: rgba(34,197,94,0.1);
    --red: #ef4444;
    --red-bg: rgba(239,68,68,0.1);
    --yellow: #eab308;
    --yellow-bg: rgba(234,179,8,0.1);
    --blue: #3b82f6;
    --blue-bg: rgba(59,130,246,0.1);
    --radius-xs: 6px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(124,92,252,0.08);
    --transition: 0.2s cubic-bezier(0.4,0,0.2,1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

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

/* ==================== HEADER ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8,8,22,0.85);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid var(--border-default);
}

.header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo {
    width: 34px;
    height: 34px;
    background: var(--gradient-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(124,92,252,0.25);
}

.header-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.3px;
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-spacer { height: 28px; }

/* ==================== HERO ==================== */
.hero-section {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-bg);
    color: var(--green);
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.2px;
}

.hero-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.hero-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    max-width: 640px;
}

/* ==================== PLATFORM GRID ==================== */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: 12px 14px;
    transition: all var(--transition);
    cursor: pointer;
}

.platform-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-1px);
    box-shadow: var(--shadow-glow);
}

.platform-icon-box {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xs);
    font-size: 14px;
    flex-shrink: 0;
}

.platform-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== CHEAT SECTIONS ==================== */
.cheat-section {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cheat-section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-light);
}

.cheat-section-icon-box {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cheat-section-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cheat-section-info span {
    font-size: 11px;
    color: var(--text-muted);
}

.cheat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.cheat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition);
}

.cheat-item:hover {
    background: var(--bg-card-hover);
}

.cheat-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cheat-item-left i {
    font-size: 14px;
    color: var(--text-muted);
    width: 20px;
    text-align: center;
}

.cheat-item-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
}

.cheat-item:hover .cheat-item-name { color: var(--text-white); }

.cheat-item-arrow {
    font-size: 12px;
    color: var(--text-muted);
    transition: all var(--transition);
}

.cheat-item:hover .cheat-item-arrow {
    transform: translateX(3px);
    color: var(--accent);
}

/* ==================== CHEAT DETAIL ==================== */
.cheat-hero {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
}

.cheat-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.3;
}

.cheat-hero .hero-badge {
    background: var(--accent-bg);
    color: var(--accent-light);
}

/* ==================== CHEAT FORM ==================== */
.cheat-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cheat-form-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-light);
}

.cheat-form-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 2px 12px rgba(124,92,252,0.2);
}

.cheat-form-card-header h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
}

.cheat-form-card-header p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.cheat-form-body {
    padding: 28px;
}

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label i { font-size: 13px; }

.form-input {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all var(--transition);
    outline: none;
}

.form-input::placeholder { color: var(--text-muted); }

.form-input:focus {
    border-color: var(--accent);
    background: var(--bg-input-focus);
    box-shadow: 0 0 0 3px rgba(124,92,252,0.1);
}

/* Radio Buttons */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
}

.radio-option { position: relative; }

.radio-option input[type="radio"] {
    position: absolute; opacity: 0; width: 0; height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    background: var(--bg-input);
    border: 1.5px solid var(--border-default);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all var(--transition);
}

.radio-option label:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}

.radio-option input[type="radio"]:checked + label {
    background: var(--gradient-accent);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 16px rgba(124,92,252,0.25);
}

/* Buttons */
.btn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(124,92,252,0.2);
}

.btn-primary:hover {
    box-shadow: 0 6px 24px rgba(124,92,252,0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--bg-input);
    color: var(--text-primary);
    border: 1px solid var(--border-default);
}

.btn-secondary:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
}

/* ==================== SEO CONTENT ==================== */
.seo-content {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.seo-content h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 14px;
}

.seo-content p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.seo-content strong { color: var(--text-white); }

/* ==================== MODALS ==================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active { display: flex; }

.modal-box {
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 420px;
    width: 92%;
    text-align: center;
    position: relative;
    animation: modalSlideIn 0.25s ease;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.95) translateY(12px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-icon { font-size: 42px; margin-bottom: 14px; }

.modal-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.modal-message {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-xs);
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all var(--transition);
}

.modal-close:hover { background: var(--bg-card-hover); color: var(--text-white); }

/* Progress */
.progress-track {
    height: 3px;
    background: var(--bg-input);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
}

.progress-track .bar {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0% { width: 8%; }
    50% { width: 80%; }
    100% { width: 8%; }
}

/* Verify Steps */
.verify-steps { text-align: left; margin: 18px 0; }

.verify-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 12px;
    color: var(--text-muted);
    transition: all 0.3s;
}

.verify-step.active { color: var(--accent-light); }
.verify-step.done { color: var(--green); }

.verify-step-dot {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    flex-shrink: 0;
}

.verify-step.active .verify-step-dot {
    background: var(--accent-bg);
    border-color: var(--accent);
    color: var(--accent);
}

.verify-step.done .verify-step-dot {
    background: var(--green-bg);
    border-color: var(--green);
    color: var(--green);
}

/* Spinner */
.spinner {
    width: 32px;
    height: 32px;
    border: 2.5px solid var(--border-default);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 14px;
}

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

/* ==================== FAKE DELIVERY ==================== */
.fake-delivery-box {
    background: var(--bg-card-alt);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 14px;
    position: relative;
    overflow: hidden;
}

.fake-delivery-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fake-delivery-code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    padding: 10px 14px;
    background: var(--bg-input);
    border-radius: var(--radius-xs);
    filter: blur(5px);
    user-select: none;
    pointer-events: none;
    letter-spacing: 2px;
}

.fake-delivery-lock {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
}

.fake-delivery-lock span {
    background: var(--gradient-accent);
    color: #fff;
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 12px rgba(124,92,252,0.3);
}

/* ==================== FOOTER ==================== */
.site-footer {
    text-align: center;
    padding: 36px 20px;
    color: var(--text-muted);
    font-size: 12px;
    border-top: 1px solid var(--border-light);
    margin-top: 48px;
}

/* ==================== LANGUAGE SWITCHER ==================== */
.lang-switcher {
    position: relative;
    margin-left: auto;
}

.lang-switcher-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Inter', sans-serif;
}

.lang-switcher-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
}

.lang-flag {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: var(--bg-card);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 200;
    padding: 6px;
    animation: modalSlideIn 0.15s ease;
    max-height: 320px;
    overflow-y: auto;
}

.lang-dropdown.active { display: block; }

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-xs);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all var(--transition);
}

.lang-dropdown-item:hover {
    background: var(--bg-card-hover);
}

.lang-dropdown-item.active {
    background: var(--accent-bg);
    color: var(--accent-light);
}

.lang-dropdown-item .lang-flag {
    width: 22px;
    height: 16px;
}

/* ==================== LANGUAGE MODAL ==================== */
.lang-modal-box {
    max-width: 480px;
    width: 92%;
    text-align: left;
    animation: langModalIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes langModalIn {
    from { opacity: 0; transform: scale(0.92) translateY(30px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.lang-modal-box .modal-title {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    margin-bottom: 0;
}

.lang-modal-search {
    width: 100%;
    padding: 11px 16px;
    padding-left: 38px;
    background: var(--bg-input);
    border: 1px solid var(--border-default);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 13px;
    margin: 16px 0 14px;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    box-sizing: border-box;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555577' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 15px;
}

.lang-modal-search:focus {
    border-color: var(--accent-light);
    background-color: var(--bg-input-focus);
    box-shadow: 0 0 0 3px rgba(124,92,252,0.1);
}

.lang-modal-search::placeholder {
    color: var(--text-muted);
}

.lang-modal-grid {
    display: flex;
    flex-direction: column;
    gap: 3px;
    max-height: 360px;
    overflow-y: auto;
    padding: 4px 2px;
}

.lang-modal-grid::-webkit-scrollbar { width: 5px; }
.lang-modal-grid::-webkit-scrollbar-track { background: transparent; }
.lang-modal-grid::-webkit-scrollbar-thumb { background: rgba(124,92,252,0.25); border-radius: 10px; }
.lang-modal-grid::-webkit-scrollbar-thumb:hover { background: rgba(124,92,252,0.4); }

.lang-modal-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
    color: var(--text-primary);
    cursor: pointer;
    border: 1px solid transparent;
    text-decoration: none;
    animation: langItemFadeIn 0.3s ease both;
}

@keyframes langItemFadeIn {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

.lang-modal-item:nth-child(1) { animation-delay: 0.03s; }
.lang-modal-item:nth-child(2) { animation-delay: 0.06s; }
.lang-modal-item:nth-child(3) { animation-delay: 0.09s; }
.lang-modal-item:nth-child(4) { animation-delay: 0.12s; }
.lang-modal-item:nth-child(5) { animation-delay: 0.15s; }
.lang-modal-item:nth-child(6) { animation-delay: 0.18s; }
.lang-modal-item:nth-child(7) { animation-delay: 0.21s; }
.lang-modal-item:nth-child(8) { animation-delay: 0.24s; }

.lang-modal-item:hover {
    background: var(--accent-bg-hover);
    border-color: var(--border-accent);
    transform: translateX(4px);
}

.lang-modal-item.active {
    background: linear-gradient(135deg, rgba(124,92,252,0.12) 0%, rgba(91,141,239,0.08) 100%);
    border-color: var(--accent);
    box-shadow: 0 0 16px rgba(124,92,252,0.1);
}

.lang-modal-item.active .lang-modal-name {
    color: var(--accent-light);
}

.lang-modal-flag {
    width: 36px;
    min-width: 36px;
    height: 27px;
    border-radius: 4px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.35);
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease;
}

.lang-modal-item:hover .lang-modal-flag {
    transform: scale(1.08);
}

.lang-modal-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.lang-modal-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    transition: color 0.2s ease;
}

.lang-modal-code {
    font-size: 11px;
    color: var(--text-muted);
    font-family: 'SF Mono', 'Fira Code', monospace;
    letter-spacing: 0.5px;
}

.lang-modal-check {
    color: var(--accent);
    font-size: 16px;
    margin-left: auto;
    flex-shrink: 0;
    animation: checkPulse 2s ease infinite;
}

@keyframes checkPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ==================== GAP UTILITY ==================== */
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 28px; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .platforms-grid { grid-template-columns: repeat(3, 1fr); }
    .cheat-list { grid-template-columns: 1fr; }
    .btn-row { grid-template-columns: 1fr; }
    .hero-title { font-size: 22px; }
    .radio-group { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .platforms-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
    .container { padding: 0 16px; }
    .hero-section, .cheat-hero, .cheat-form-card, .seo-content, .cheat-section {
        border-radius: var(--radius-md);
    }
}

/* ==================== CUSTOM SVG ICONS ==================== */
.custom-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.custom-svg-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.platform-icon-box .custom-svg-icon svg,
.cheat-section-icon-box .custom-svg-icon svg {
    width: 100%;
    height: 100%;
    max-width: 20px;
    max-height: 20px;
}

.form-label .custom-svg-icon svg {
    width: 13px;
    height: 13px;
}
