/* Import base styles from index.css */
@import url('index.css');

/* App-specific styles */
.app-hero-section {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.app-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-hero-title {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.app-hero-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.app-download-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: #ffd700;
    color: #000;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-download:hover {
    background: #ffed4a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.btn-download.android {
    background: linear-gradient(135deg, #32d74b 0%, #28c940 100%);
}

.btn-download.ios {
    background: linear-gradient(135deg, #007aff 0%, #005ce6 100%);
}

.btn-download.android:hover {
    background: linear-gradient(135deg, #4ae65c 0%, #32d74b 100%);
}

.btn-download.ios:hover {
    background: linear-gradient(135deg, #1a8cff 0%, #007aff 100%);
}

.btn-download span {
    color: #fff;
    font-weight: 600;
}

/* Phone Mockup */
.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(135deg, #333 0%, #000 100%);
    border-radius: 30px;
    padding: 20px;
    position: relative;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
}

.app-interface {
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.app-header {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px solid #ffd700;
}

.app-games {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.app-game {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* App Features Section */
.app-features-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.app-features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.app-feature-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.app-feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.app-feature-title {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.app-feature-description {
    color: #ccc;
    line-height: 1.6;
}

/* Download Guide Section */
.download-guide-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.download-guide-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.download-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.download-tab-button {
    padding: 12px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #ffd700;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.download-tab-button.active,
.download-tab-button:hover {
    background: #ffd700;
    color: #000;
}

.download-content {
    position: relative;
}

.download-tab-content {
    display: none;
}

.download-tab-content.active {
    display: block;
}

.download-steps h3 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.step-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.download-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.step-number {
    background: #ffd700;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-text h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-text p {
    color: #ccc;
    line-height: 1.6;
}

/* App Requirements Section */
.app-requirements-section {
    padding: 80px 0;
    background: rgba(255, 215, 0, 0.05);
}

.app-requirements-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.requirement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.requirement-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.requirement-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.requirement-list {
    list-style: none;
    color: #ccc;
    text-align: left;
}

.requirement-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.requirement-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* App Benefits Section */
.app-benefits-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.app-benefits-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(255, 215, 0, 0.2);
    padding: 20px;
    font-weight: bold;
    color: #ffd700;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    color: #ccc;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-feature {
    font-weight: 600;
}

.comparison-web,
.comparison-app {
    text-align: center;
}

/* FAQ Section */
.app-faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.app-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 10px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.faq-question {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.faq-answer {
    color: #ccc;
    line-height: 1.6;
}

/* App CTA Section */
.app-cta-section {
    padding: 80px 0;
    background: rgba(255, 215, 0, 0.1);
}

.app-cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 10px;
}

.app-cta-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.app-cta-description {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.app-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 220px;
    justify-content: center;
}

.btn-cta-download.android {
    background: linear-gradient(135deg, #32d74b 0%, #28c940 100%);
}

.btn-cta-download.ios {
    background: linear-gradient(135deg, #007aff 0%, #005ce6 100%);
}

.btn-cta-download.android:hover {
    background: linear-gradient(135deg, #4ae65c 0%, #32d74b 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(50, 215, 75, 0.3);
}

.btn-cta-download.ios:hover {
    background: linear-gradient(135deg, #1a8cff 0%, #007aff 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 122, 255, 0.3);
}

.btn-cta-download span {
    color: #fff;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1080px) {
    .app-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .app-hero-title {
        font-size: 2.5rem;
    }
    
    .app-hero-description {
        font-size: 1rem;
    }
    
    .app-download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-download {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .app-features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .download-step {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .app-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-download {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .app-hero-section {
        padding: 80px 0 60px;
    }
    
    .app-hero-title {
        font-size: 2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .app-interface {
        padding: 20px 15px;
    }
    
    .app-header {
        font-size: 1.2rem;
    }
    
    .app-game {
        padding: 15px;
        font-size: 1rem;
    }
    
    .app-features-section,
    .download-guide-section,
    .app-requirements-section,
    .app-benefits-section,
    .app-faq-section,
    .app-cta-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .app-cta-title {
        font-size: 2rem;
    }
}
