
/* Global Variables */
:root {
    --navy: #1e3a5f;
    --gold: #d4af37;
    --cream: #f5f2e8;
    --dark-navy: #0f1923;
    --light-gold: #f4e79d;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --kkpoker-green: #00C851;
    --kkpoker-dark: #007E33;
    --kkpoker-bright-green: #00ff43;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-navy);
    background-color: var(--cream);
}

/* Prevent background scroll when mobile menu is open */
body.no-scroll {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    transition: color 0.3s ease;
}

.header.scrolled .logo {
    color: var(--navy);
}

.logo-img {
    height: 30px;
}

.tela-game-img {
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 5%;
    display: block;
}

.logo-img-rod {
    height: 160px;
}

.desktop-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header.scrolled .nav-link {
    color: var(--navy);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 2100;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.header.scrolled .mobile-menu-btn span {
    background: var(--navy);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    backdrop-filter: blur(15px);
    display: none;
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav .nav-link {
    padding: 1rem 1.5rem;
    transition: background-color 0.3s ease;
    color: var(--navy);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav .nav-link:hover {
    background-color: rgba(212, 175, 55, 0.1);
}

.mobile-cta {
    margin: 1rem 1.5rem;
    width: calc(100% - 3rem);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Selector Styles */
.language-selector {
    position: relative;
}

.language-dropdown {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header.scrolled .lang-current {
    background: white;
    color: var(--navy);
    border-color: #e5e7eb;
}

.lang-current:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header.scrolled .lang-current:hover {
    background: #f9fafb;
}

/* Mobile menu language selector contrast fix */
.mobile-menu .lang-current {
    background: #f9fafb;
    color: var(--navy);
    border-color: #e5e7eb;
}
.mobile-menu .lang-current:hover {
    background: #eef2f7;
}
.mobile-menu .lang-dropdown {
    border-color: #e2e8f0;
}
.mobile-menu .lang-option {
    color: #374151;
}

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

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    min-width: 150px;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.lang-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.lang-option:hover {
    background-color: #f3f4f6;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: 1;
}

.card-symbol {
    position: absolute;
    font-size: 8rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.card-symbol:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-symbol:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.card-symbol:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

.card-symbol:nth-child(4) {
    top: 30%;
    right: 30%;
    animation-delay: 4.5s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-wrap: balance;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat span:first-child {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat span:last-child {
    font-weight: 600;
    color: var(--gold);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    min-height: 44px;
    -webkit-tap-highlight-color: transparent;
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--navy);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

.btn-kkpoker {
    background: linear-gradient(135deg, var(--kkpoker-green), var(--kkpoker-dark));
    color: white;
    border: none;
    font-size: 1.1rem;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-kkpoker:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 200, 81, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.full-width {
    width: 100%;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.bg-white {
    background: white;
}

.bg-cream {
    background: var(--cream);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
    color: white;
}

.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--navy);
}

.bg-gradient .section-title {
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.bg-gradient .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.feature-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.benefit-icon.yellow {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.benefit-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.benefit-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.benefit-icon.indigo {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}

.benefit-icon.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.game-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tela-game-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.tela-game-img:hover {
    transform: scale(1.05);
}

.game-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.game-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray);
}

.game-features {
    list-style: none;
    margin-bottom: 2rem;
}

.game-features li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    font-weight: 500;
}

.free-play-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--kkpoker-green);
    text-align: center;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-btn {
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.store-badge {
    height: 60px;
    width: 180px;
    object-fit: contain;
}

/* KKPoker CTA Section */
.kkpoker-cta {
    padding: 30px 0;
    background: #000000;
    color: var(--kkpoker-bright-green);
}

.kkpoker-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.kkpoker-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--kkpoker-bright-green);
}

.kkpoker-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--kkpoker-bright-green);
    line-height: 1.6;
}

.kkpoker-benefits {
    margin-bottom: 1.5rem;
}

.kkpoker-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.kkpoker-img {
    max-width: 100%;
    max-height: 150px;
    width: auto;
    height: auto;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--navy);
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0.5rem 1.5rem 1.5rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

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

.contact-form-container .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr;
    margin-bottom: 2rem;
}

.footer-content .footer-section:first-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-section h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

/* Social Media Section */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--gold);
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transform: translateY(-2px);
}

/* South Poker Links Section */
.south-poker-section {
    /*
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    */
    margin-bottom: 2rem;
    text-align: center;
}

.south-poker-section h4 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.south-poker-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.south-poker-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.south-poker-link:hover {
    color: var(--gold);
}

.south-poker-link i {
    font-size: 1.1rem;
}

.footer-bottom {
    /*
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    */
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

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

@keyframes scroll {
    0% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(8px);
    }
    100% {
        transform: translateX(-50%) translateY(0);
    }
}

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

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

@keyframes rainbow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav,
    .desktop-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .header {
        background: rgba(30, 58, 95, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    }
    
    .header-content {
        padding: 0.75rem 0;
    }
    
    .language-selector {
        margin-bottom: 1rem;
        justify-content: center;
    }
    
    .lang-dropdown {
        right: auto;
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .game-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .game-preview {
        order: 2;
    }
    
    .game-info {
        order: 1;
    }
    
    .tela-game-img {
        max-width: 100%;
        height: auto;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-badge {
        height: 50px;
        width: 150px;
    }
    
    .kkpoker-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .kkpoker-logo {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .south-poker-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .header-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .logo-img-rod {
        height: 80px;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.6rem;
    }
    
    .tela-game-img {
        max-width: 300px;
    }

    .kkpoker-info h2 {
        font-size: 1.8rem;
    }

    .store-badge {
        height: 45px;
        width: 135px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .tela-game-img {
        max-width: 250px;
    }

    .kkpoker-info h2 {
        font-size: 1.6rem;
    }

    .south-poker-link {
        font-size: 0.8rem;
    }
}
