/* ===========================
   3Patti Boss Website Styles
   Modern, Responsive Design
   =========================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-color: #d4af37;
    --primary-dark: #b8960e;
    --secondary-color: #1a1a2e;
    --accent-color: #16213e;
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===========================
   Header & Navigation
   =========================== */
header {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
    background: rgba(212, 175, 55, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23d4af37" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,96C1248,75,1344,53,1392,42.7L1440,32L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    opacity: 0.3;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.hero-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.highlight-item .icon {
    font-size: 24px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.download-info {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    font-family: inherit;
    line-height: normal;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.btn-download {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--text-light);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.4);
}

.btn-download-large {
    padding: 20px 50px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: auto;
}

.download-icon {
    font-size: 28px;
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: var(--section-padding);
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

/* ===========================
   Features Section
   =========================== */
.features {
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* ===========================
   Games Section
   =========================== */
.games {
    background: white;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.game-card:hover .game-icon {
    transform: scale(1.2) rotate(10deg);
}

.game-card:hover h3,
.game-card:hover p {
    color: white;
}

.game-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.game-card.featured .game-icon {
    font-size: 80px;
}

.game-card.featured h3 {
    font-size: 26px;
    color: white;
}

.game-card.featured p {
    color: rgba(255,255,255,0.9);
}

.game-icon {
    font-size: 60px;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.game-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.game-card p {
    color: #666;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ===========================
   How It Works Section
   =========================== */
.how-it-works {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-card {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* ===========================
   Withdrawal Methods
   =========================== */
.withdrawal-methods {
    background: var(--background-light);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.payment-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.payment-card img {
    height: 80px;
    margin-bottom: 20px;
}

.payment-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.withdrawal-info {
    text-align: center;
    font-size: 16px;
    color: #666;
}

/* ===========================
   Download Section
   =========================== */
.download-section {
    background: white;
}

.download-box {
    display: flex;
    align-items: center;
    gap: 50px;
    background: var(--background-light);
    padding: 50px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.app-icon-large {
    text-align: center;
}

.app-icon-large img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    max-width: 100%;
}

.download-details h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.app-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.app-stats span {
    font-size: 14px;
    color: #666;
}

.download-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

/* ===========================
   Screenshots Section
   =========================== */
.screenshots {
    background: var(--background-light);
}

.screenshots-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.screenshot-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   Contact Section
   =========================== */
.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 40px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-form {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===========================
   FAQ Section
   =========================== */
.faq {
    background: var(--background-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

/* ===========================
   Footer
   =========================== */
footer {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.disclaimer {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}

/* ===========================
   Download Page Specific
   =========================== */
.download-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--text-light);
    padding: 80px 0;
}

.download-hero-content h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.app-showcase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}

.app-icon-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

.rating {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: var(--primary-color);
    font-size: 20px;
}

.app-meta {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.download-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.version-info {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
    flex-wrap: wrap;
}

.screenshots-gallery {
    background: var(--background-light);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.screenshot-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.screenshot-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.screenshot-card p {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: var(--secondary-color);
}

.app-features-detail {
    background: white;
}

.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-detail {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
}

.feature-icon-large {
    font-size: 70px;
    margin-bottom: 20px;
}

.feature-detail h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-detail p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.feature-detail ul {
    list-style: none;
}

.feature-detail ul li {
    padding: 8px 0;
    color: #666;
}

.installation-guide {
    background: var(--background-light);
}

.steps-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.step-detailed {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number-large {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.step-content p {
    color: #666;
    line-height: 1.8;
}

.system-requirements {
    background: white;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.requirement-card {
    background: var(--background-light);
    padding: 40px;
    border-radius: 15px;
}

.requirement-card.featured {
    border: 3px solid var(--primary-color);
}

.requirement-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.requirement-card ul {
    list-style: none;
}

.requirement-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.version-history {
    background: var(--background-light);
}

.version-list {
    max-width: 800px;
    margin: 0 auto;
}

.version-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #ddd;
}

.version-item.current {
    border-left-color: var(--primary-color);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.version-header h3 {
    font-size: 20px;
    color: var(--secondary-color);
}

.badge-current {
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.version-date {
    color: #666;
    font-size: 14px;
}

.version-item ul {
    list-style: none;
    color: #666;
}

.version-item ul li {
    padding: 5px 0;
}

.faq-download {
    background: white;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-detailed {
    background: var(--background-light);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.faq-item-detailed h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.faq-item-detailed p {
    color: #666;
    line-height: 1.8;
}

.download-cta-final {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    text-align: center;
    padding: 80px 0;
}

.download-cta-final h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.download-cta-final p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-benefits {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 600;
}

/* ===========================
   Legal Pages
   =========================== */
.legal-page {
    background: var(--background-light);
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.legal-content h1 {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.last-updated {
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 15px;
    margin-top: 20px;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: #666;
    line-height: 1.8;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 10px;
}

.legal-section ul ul {
    margin-top: 10px;
}

.contact-box {
    background: var(--background-light);
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.legal-section.acceptance,
.legal-section.important {
    background: #fff3cd;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--warning-color);
}

.legal-navigation {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.legal-navigation a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.legal-navigation a:hover {
    color: var(--primary-dark);
}

.note {
    background: #e7f3ff;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #2196F3;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .app-showcase {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .app-icon-section {
        flex-direction: column;
        justify-content: center;
    }
    
    .app-icon-large img {
        width: 70px;
        height: 70px;
    }
    
    .download-box {
        flex-direction: column;
        text-align: center;
    }
    
    .game-card.featured {
        grid-column: span 1;
    }
    
    .legal-content {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-color);
        flex-direction: column;
        padding: 30px;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: center;
    }
    
    .step-detailed {
        flex-direction: column;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 20px;
    }
    
    .game-card.featured {
        grid-column: span 1;
    }
    
    .game-icon {
        font-size: 50px;
    }
    
    .game-card.featured .game-icon {
        font-size: 60px;
    }
    
    .download-hero-content h1 {
        font-size: 32px;
    }
    
    .download-cta-final h2 {
        font-size: 28px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-content {
        padding: 30px 20px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .feature-card,
    .game-card,
    .step-card {
        padding: 20px 15px;
    }
    
    .app-showcase {
        padding: 25px;
    }
    
    .app-icon-large img {
        width: 60px;
        height: 60px;
    }
    
    .screenshot-card img {
        height: 400px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 15px;
    }
    
    .game-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }
    
    .game-card.featured .game-icon {
        font-size: 50px;
    }
    
    .game-card h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .game-card p {
        font-size: 11px;
    }
    
    .game-badge {
        font-size: 9px;
        padding: 4px 8px;
    }
}

/* ===========================
   Utility Classes
   =========================== */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

