/* 0RESMON / TEBEX STORE INSPIRED PREMIUM CSS */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@400;500;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg-dark: #000000; /* Real pav-web Black */
    --bg-darker: #020202;
    --panel-bg: #0a0a0a;
    --nav-bg: rgba(0, 0, 0, 0.4);
    --panel-border: rgba(255, 255, 255, 0.05);
    
    --primary-color: #3b82f6; /* Real pav-web Blue Theme */
    --primary-glow: rgba(59, 130, 246, 0.2);
    
    --secondary-color: #60a5fa;
    --secondary-glow: rgba(96, 165, 250, 0.1);

    --text-main: #f8fafc;
    --text-muted: #8b949e;

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Ambient Glows (Animated) */
@keyframes ambientGlow {
    0% { transform: scale(1) translate(0px, 0px); opacity: 0.8; }
    33% { transform: scale(1.1) translate(30px, -30px); opacity: 1; }
    66% { transform: scale(0.9) translate(-20px, 20px); opacity: 0.6; }
    100% { transform: scale(1) translate(0px, 0px); opacity: 0.8; }
}

@keyframes float {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

body::before {
    content: '';
    position: fixed;
    top: 10%;
    left: -10vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(43, 130, 255, 0.15) 0%, transparent 60%);
    z-index: -1;
    filter: blur(120px);
    animation: ambientGlow 15s ease-in-out infinite alternate;
    pointer-events: none;
}
body::after {
    content: '';
    position: fixed;
    bottom: -10vh;
    right: -10vw;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.1) 0%, transparent 60%);
    z-index: -1;
    filter: blur(120px);
    animation: ambientGlow 20s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* Navbar Pill Style */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2.5rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 1rem;
    z-index: 100;
    margin: 0 auto;
    max-width: 1400px;
    border-radius: 9999px; /* Pill Shape */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
}
.nav-brand img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-muted);
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { 
    background: linear-gradient(135deg, #a855f7, #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-btn {
    background: transparent;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
}
.hero-content {
    max-width: 800px;
    z-index: 2;
}
.hero-badge {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
    text-transform: uppercase;
}
.hero h1 {
    font-size: 4.5rem;
    background: linear-gradient(to right, #ffffff, #8E9BAE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.hero h1 span {
    background: #fff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.btn-solid {
    background: #ffffff;
    color: #000000 !important;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-image img {
    max-width: 100%;
    border-radius: 16px;
    pointer-events: none;
}
.btn-solid:hover {
    
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}
.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 2.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    
}

/* Custom Glass Panels (Cards) */
.glass-panel {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px; /* pav-web characteristic huge curve */
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.glass-panel:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

/* Sections */
section {
    padding: 6rem 5%;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.section-title span {
    color: #fff;
    font-weight: inherit;
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.game-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}
.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.game-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 8, 11, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: background 0.3s ease;
}
.game-card:hover img {
    transform: scale(1.05);
}
.game-card:hover .game-overlay {
    background: linear-gradient(to top, rgba(0, 255, 136, 0.4) 0%, transparent 80%);
}
.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.game-btn {
    align-self: flex-start;
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
}
.game-card:hover .game-btn {
    background: var(--primary-color);
    color: var(--bg-darker);
}

/* Footer */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--panel-border);
    padding: 4rem 5% 2rem;
    text-align: center;
}
.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.footer-socials a {
    color: var(--text-muted);
    font-size: 1.5rem;
}
.footer-socials a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}
.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-text span {
    color: var(--primary-color);
}
.contact-mail {
    display: inline-block;
    margin-top: 1rem;
    color: var(--text-main);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border: 1px solid var(--panel-border);
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .nav-links { display: none; }
}

/* Alert System */
.alert {
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-weight: 500;
}
.alert-error { background: rgba(255, 50, 50, 0.1); border: 1px solid rgba(255, 50, 50, 0.3); color: #ff6b6b; }
.alert-success { background: rgba(0, 255, 136, 0.1); border: 1px solid rgba(0, 255, 136, 0.3); color: var(--primary-color); }

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    color: var(--text-main);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}
.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0,255,136,0.1);
}
select option {
    background-color: var(--panel-bg);
    color: var(--text-main);
}

/* Scroll Reveal Features (pav-web Style) */
.reveal {
    opacity: 0;
    
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.reveal.left { transform: translateX(-50px); }
.reveal.right { transform: translateX(50px); }
.reveal.left.active, .reveal.right.active { transform: translateX(0); }

.feature-box {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 0 auto 10rem auto; /* Dramatically increased vertical spacing */
    max-width: 1200px;
}
.feature-box.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #3b82f6, #2dd4bf);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    letter-spacing: -1px;
}
.feature-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.feature-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}
.feature-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
}
@media (max-width: 768px) {
    .feature-box, .feature-box.reverse {
        flex-direction: column;
        text-align: center;
    }
}

/* Bento Grid (pav-web Style) */
.bento-section {
    padding: 4rem 5%;
}
.bento-header {
    text-align: center;
    margin-bottom: 4rem;
}
.bento-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.bento-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.bento-item {
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    border-radius: 16px;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    cursor: default;
}
.bento-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(43, 130, 255, 0.4);
    
}
.bento-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
}
.bento-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #fff;
}
.bento-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* FAQ Section */
.faq-container { max-width: 900px; margin: 0 auto; }
details {
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
summary {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    list-style: none; /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}
details[open] summary::after {
    transform: rotate(180deg);
    color: var(--primary-color);
}
.faq-content {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-right: 2rem;
}

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.testimonial-card {
    background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 16px; padding: 2rem; transition: transform 0.3s ease;
    backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%); box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}
.testimonial-card:hover {  border-color: rgba(43, 130, 255, 0.4); }
.test-user { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.test-user-icon { width: 45px; height: 45px; border-radius: 50%; font-size:1.5rem; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,0.1); color:#fff; }
.test-user h4 { margin: 0; font-size: 1.1rem; color: #fff; }
.test-user span { font-size: 0.8rem; color: var(--text-muted); }
.test-quote { color: #aab; font-size: 0.95rem; line-height: 1.6; }

/* Call To Action Banner */
.cta-banner {
    position: relative; text-align: center; padding: 6rem 5%; background: var(--bg-darker);
    border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border); overflow: hidden;
}
.cta-banner h2 { font-size: 3rem; margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-banner p { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 2rem; position: relative; z-index: 2; }
.cta-3d-left { position: absolute; left: 10%; top: 50%; transform: translateY(-50%); font-size: 10rem; color: var(--primary-color); opacity: 0.1; z-index: 1; filter: blur(5px); }
.cta-3d-right { position: absolute; right: 10%; top: 50%; transform: translateY(-50%); font-size: 10rem; color: var(--secondary-color); opacity: 0.1; z-index: 1; filter: blur(5px); }

/* Detailed Footer */
.footer-detailed {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; text-align: left; max-width: 1200px; margin: 0 auto;
    padding-bottom: 3rem; border-bottom: 1px solid var(--panel-border); margin-bottom: 2rem;
}
.footer-brand img { width: 150px; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; }
.footer-col h3 { color: #fff; margin-bottom: 1.5rem; font-size: 1rem; text-transform: uppercase; }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 0.8rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--primary-color); }
@media (max-width: 900px) { .footer-detailed { grid-template-columns: 1fr; text-align: center; } }

/* Pricing Grid */
.pricing-section { padding: 4rem 5%; text-align: center; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; max-width: 1000px; margin: 3rem auto; }

/* Games / Courses VIP Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
}
.pricing-card { background: var(--panel-bg); border: 1px solid var(--panel-border); border-radius: 16px; padding: 3rem 2rem; text-align: left; transition: transform 0.3s ease; backdrop-filter: blur(12px) saturate(180%); -webkit-backdrop-filter: blur(12px) saturate(180%); box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3); }
.pricing-card:hover { border-color: rgba(255, 255, 255, 0.08); }
.pricing-card.popular { border-color: rgba(43, 130, 255, 0.4); background: rgba(43, 130, 255, 0.05); }
.pricing-card.popular .btn-solid { background: var(--primary-color); color: #fff; width: 100%; display:block; text-align:center; padding:12px; border-radius: 8px; font-weight:600; transition:all 0.3s;}
.pricing-card.popular .btn-solid:hover { background: var(--secondary-color); }
.pricing-card .btn-outline { width: 100%; display:block; text-align: center; padding:12px; border-radius: 8px; font-weight:600; border:1px solid var(--panel-border);}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #fff; }
.pricing-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-card .price { font-size: 2.5rem; font-weight: bold; margin-bottom: 2rem; color: #fff; }
.pricing-card .price span { font-size: 1rem; color: var(--text-muted); }
.pricing-features { list-style: none; padding: 0; margin-bottom: 2rem; }
.pricing-features li { margin-bottom: 1rem; color: var(--text-muted); font-size:0.95rem; display:flex; gap:10px; align-items:center; border-bottom: 1px solid rgba(255,255,255,0.02); padding-bottom: 0.5rem; }
.pricing-features li i { color: #555; width: 20px; }
.pricing-features li i.check { color: var(--primary-color); }

/* Theme Marketplace Grid */
.theme-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; max-width: 1200px; margin: 3rem auto; }
.theme-card { background: transparent; padding: 0; outline: none; transition: transform 0.3s; }
.theme-card:hover { opacity: 0.9; }
.theme-img-container { border-radius: 12px; overflow: hidden; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.05); }
.theme-img-container img { width: 100%; display: block; transition: transform 0.5s; }
.theme-card:hover .theme-img-container img { transform: scale(1.03); }
.theme-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }
.theme-title h3 { font-size: 1.3rem; margin: 0 0 5px 0; color: #fff; }
.theme-title span { font-size: 0.85rem; color: var(--text-muted); }
.theme-price { font-size: 1.3rem; font-weight: bold; color: #fff; }
.theme-actions { display: flex; gap: 10px; }
.theme-actions .btn-solid { flex:1; background: #fff; color: #000; text-align: center; }
.theme-actions .btn-solid:hover { background: #eee; }
.theme-actions .btn-outline { flex:1; text-align: center; }
/* ================================= */
/* PAV-WEB DASHBOARD STYLES */
/* ================================= */
.dashboard-layout {
    display: flex;
    min-height: 100vh;
    background: var(--bg-dark);
}

.sidebar {
    width: 280px;
    background: rgba(8, 8, 8, 0.95);
    border-right: 1px solid var(--panel-border);
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: sticky;
    top: 0;
    height: 100vh;
    z-index: 50;
    backdrop-filter: blur(20px);
}

.sidebar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem 2rem 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--panel-border);
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.sidebar-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
}

.sidebar-link.active {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

.main-panel {
    flex: 1;
    padding: 3rem 4rem;
    overflow-y: auto;
}

.dashboard-header {
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.dashboard-header p {
    color: var(--text-muted);
}

.settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.setting-card {
    background: #0a0a0a;
    border: 1px solid var(--panel-border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.setting-card:hover {
    
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #111111;
}

.setting-icon {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 14px;
    font-size: 1.5rem;
    color: var(--text-muted);
}

.setting-card:hover .setting-icon {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
}

.setting-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.setting-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.games-grid h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 55px;
}
