/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0d131c;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(13, 19, 28, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 36, 0, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ff2400;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff2400;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn img {
    width: 24px;
    height: 24px;
    filter: invert(1);
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 36, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 36, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #04cfaa;
    border: 2px solid #04cfaa;
}

.btn-secondary:hover {
    background: #04cfaa;
    color: #0d131c;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;
    color: #0d131c;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d131c 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 36, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #ff2400;
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #04cfaa;
    font-weight: 500;
}

.feature img {
    width: 24px;
    height: 24px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-girl {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 36, 0, 0.3));
}

/* Games Section */
.games {
    padding: 80px 0;
    background: #0d131c;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.game-card {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 36, 0, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 36, 0, 0.2);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-content {
    padding: 25px;
}

.game-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.game-content p {
    color: #cccccc;
    margin-bottom: 20px;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bonus-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bonus-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.bonus-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bonus-number {
    font-size: 32px;
    font-weight: 800;
    color: #ff2400;
    margin-bottom: 5px;
}

.bonus-text {
    font-size: 14px;
    color: #cccccc;
}

.bonus-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bonus-image img {
    max-width: 100%;
    height: auto;
}

/* Mobile App Section */
.mobile-app {
    padding: 80px 0;
    background: #0d131c;
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mobile-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 20px;
}

.download-btn {
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: scale(1.05);
}

.download-btn img {
    height: 60px;
    width: auto;
}

.mobile-image img {
    max-width: 100%;
    height: auto;
}

/* Payment Section */
.payment {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-methods img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods img:hover {
    opacity: 1;
}

/* Footer */
.footer {
    background: #0a0f16;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 36, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ff2400;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff2400;
}

.footer-description {
    color: #cccccc;
    line-height: 1.6;
    margin-top: 15px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff2400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-content,
    .mobile-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .bonus-features {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .payment-methods {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.games-grid,
.bonus-content,
.mobile-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Login Section Styles */
.login-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d131c 0%, #1a2332 100%);
    min-height: 100vh;
}

.login-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.login-form-container {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 36, 0, 0.1);
}

.login-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.login-description {
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff2400;
}

.form-group input::placeholder {
    color: #999999;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #cccccc;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ff2400;
    border-color: #ff2400;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: #04cfaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #ff2400;
}

.btn-full {
    width: 100%;
}

.login-alternatives {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.login-alternatives p {
    color: #cccccc;
    margin-bottom: 15px;
}

.login-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 36, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 36, 0, 0.1);
}

.info-item img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.info-item p {
    color: #cccccc;
    font-size: 14px;
}

/* Responsive Design for Login */
@media (max-width: 768px) {
    .login-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .login-form-container {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 28px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* Download Page Styles */
.download-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d131c 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.download-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(4, 207, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.download-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #1a2332, #2a3441);
    border: 1px solid rgba(255, 36, 0, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #ffffff;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 36, 0, 0.2);
    border-color: #ff2400;
}

.download-btn img {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.download-label {
    display: block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.download-subtitle {
    display: block;
    font-size: 14px;
    color: #04cfaa;
}

.mobile-app-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(4, 207, 170, 0.3));
}

/* Download Steps */
.download-steps {
    padding: 80px 0;
    background: #0d131c;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.step-card {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(4, 207, 170, 0.1);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* App Features */
.app-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 36, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 36, 0, 0.2);
}

.feature-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* System Requirements */
.system-requirements {
    padding: 80px 0;
    background: #0d131c;
}

.requirements-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.requirement-item {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(4, 207, 170, 0.1);
}

.requirement-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #04cfaa;
    margin-bottom: 15px;
}

.requirement-item ul {
    list-style: none;
}

.requirement-item li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.requirement-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #04cfaa;
    font-weight: bold;
}

.requirements-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 36, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 36, 0, 0.05);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: #ff2400;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 200px;
}

.faq-answer p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Download Page */
@media (max-width: 768px) {
    .download-content,
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .download-title {
        font-size: 32px;
    }
    
    .download-buttons {
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* APK Page Styles */
.apk-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0d131c 0%, #1a2332 100%);
    position: relative;
    overflow: hidden;
}

.apk-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 36, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.apk-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.apk-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.apk-description {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

.apk-download {
    margin-bottom: 40px;
}

.apk-download .btn {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
}

.download-info {
    display: flex;
    gap: 20px;
    color: #04cfaa;
    font-size: 14px;
    font-weight: 500;
}

.apk-mobile-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(255, 36, 0, 0.3));
}

/* Installation Guide */
.installation-guide {
    padding: 80px 0;
    background: #0d131c;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.guide-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #1a2332, #2a3441);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(4, 207, 170, 0.1);
    transition: transform 0.3s ease;
}

.guide-step:hover {
    transform: translateY(-2px);
}

.guide-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.step-content p {
    color: #cccccc;
    line-height: 1.6;
}

/* APK Features Section */
.apk-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

/* APK Requirements */
.apk-requirements {
    padding: 80px 0;
    background: #0d131c;
}

/* Security Info */
.security-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332, #0d131c);
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.security-item {
    background: linear-gradient(135deg, #1a2332, #2a3441);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(4, 207, 170, 0.1);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(4, 207, 170, 0.2);
}

.security-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.security-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #04cfaa;
    margin-bottom: 15px;
}

.security-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Responsive Design for APK Page */
@media (max-width: 768px) {
    .apk-content,
    .requirements-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .apk-title {
        font-size: 32px;
    }
    
    .guide-step {
        flex-direction: column;
        text-align: center;
    }
    
    .download-info {
        flex-direction: column;
        gap: 10px;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
}

/* Information Content Section */
.info-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0d131c, #1a2332);
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-section {
    margin-bottom: 50px;
    background: linear-gradient(135deg, #1a2332, #2a3441);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 36, 0, 0.1);
}

.content-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ff2400;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 36, 0, 0.2);
    padding-bottom: 10px;
}

.content-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #04cfaa;
    margin-bottom: 15px;
}

.content-section p {
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Games Table */
.games-table {
    overflow-x: auto;
    margin: 20px 0;
}

.games-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.games-table th,
.games-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.games-table th {
    background: linear-gradient(135deg, #ff2400, #ff4d33);
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.games-table td {
    color: #cccccc;
    font-size: 14px;
}

.games-table tr:hover {
    background: rgba(255, 36, 0, 0.05);
}

/* Bonus List */
.bonus-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.bonus-item {
    background: rgba(4, 207, 170, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(4, 207, 170, 0.2);
}

.bonus-item h4 {
    color: #04cfaa;
    margin-bottom: 15px;
    font-size: 18px;
}

.bonus-item ul {
    list-style: none;
    padding: 0;
}

.bonus-item li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.bonus-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #04cfaa;
    font-weight: bold;
}

/* Payment Methods Detailed */
.payment-methods-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.payment-category {
    background: rgba(255, 36, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 36, 0, 0.2);
}

.payment-category h4 {
    color: #ff2400;
    margin-bottom: 15px;
}

.payment-category ul {
    list-style: none;
    padding: 0;
}

.payment-category li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.payment-category li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ff2400;
    font-weight: bold;
}

/* Mobile Features */
.mobile-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.feature-column {
    background: rgba(4, 207, 170, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(4, 207, 170, 0.2);
}

.feature-column h4 {
    color: #04cfaa;
    margin-bottom: 15px;
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column li {
    color: #cccccc;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
}

.feature-column li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #04cfaa;
    font-weight: bold;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.security-item {
    background: rgba(255, 36, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 36, 0, 0.2);
    text-align: center;
}

.security-item h4 {
    color: #ff2400;
    margin-bottom: 10px;
}

.security-item p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
}

/* Support Methods */
.support-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 20px 0;
}

.support-item {
    background: rgba(4, 207, 170, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(4, 207, 170, 0.2);
    text-align: center;
}

.support-item h4 {
    color: #04cfaa;
    margin-bottom: 10px;
}

.support-item p {
    color: #cccccc;
    font-size: 14px;
    margin: 5px 0;
}

/* FAQ Content */
.faq-content {
    margin: 20px 0;
}

.faq-content .faq-item {
    background: rgba(255, 36, 0, 0.05);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 36, 0, 0.2);
    margin-bottom: 15px;
}

.faq-content .faq-item h4 {
    color: #ff2400;
    margin-bottom: 10px;
    font-size: 16px;
}

.faq-content .faq-item p {
    color: #cccccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Responsive Design for Info Content */
@media (max-width: 768px) {
    .content-title {
        font-size: 28px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
    .games-table {
        font-size: 12px;
    }
    
    .games-table th,
    .games-table td {
        padding: 10px 8px;
    }
    
    .bonus-list,
    .payment-methods-detailed,
    .mobile-features,
    .security-features,
    .support-methods {
        grid-template-columns: 1fr;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d131c;
}

::-webkit-scrollbar-thumb {
    background: #ff2400;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4d33;
}
