/* Doodstream Play Downloader - Website Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #2C2C2C;
    opacity: 1;
}

.header {
    opacity: 1;
}

.hero {
    opacity: 1;
}

.features, .screenshots, .download, .about {
    opacity: 1;
}

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

/* Header Styles */
.header {
    background: #2C2C2C;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffc107;
}

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

.nav-link {
    text-decoration: none;
    color: #AAAAAA;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffc107;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    background: rgba(255, 193, 7, 0.2);
    border-color: rgba(255, 193, 7, 0.5);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: #ffc107;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -4px);
}

.nav-toggle.active {
    background: rgba(255, 193, 7, 0.3);
    border-color: #ffc107;
}

/* Hero Section */
.hero {
    background: #2C2C2C;
    color: white;
    padding: 60px 0 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.app-icon {
    width: 160px;
    height: 160px;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: #ffffff;
}

.version-badge {
    background: rgba(255,255,255,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 1rem;
    color: #ffffff;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: auto;
    min-width: fit-content;
}

.btn-primary {
    background: #ffc107;
    color: #000000;
}

.btn-primary:hover {
    background: #e0a800;
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-legal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.legal-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #ffc107;
}

.legal-separator {
    color: #666;
    font-size: 0.8rem;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #ffc107;
}

.stat-label {
    font-size: 0.9rem;
    color: #b0b0b0;
}


/* Features Section */
.features {
    padding: 60px 0;
    background: #1A1A1A;
    scroll-margin-top: 80px;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #AAAAAA;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.feature-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000000;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
}

/* Screenshots Section */
.screenshots {
    padding: 80px 0;
    background: #2C2C2C;
    scroll-margin-top: 80px;
}

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

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

.screenshot-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.screenshot-image:hover {
    transform: scale(1.05);
}

/* Download Section */
.download {
    padding: 80px 0;
    background: #2C2C2C;
    color: white;
    scroll-margin-top: 80px;
}

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

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.download-buttons .btn {
    width: auto;
    min-width: fit-content;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
}

.download-info {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

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

.qr-code {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    background: white;
    padding: 1rem;
}

.qr-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #2C2C2C;
    scroll-margin-top: 80px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1A1A1A;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.faq-question {
    background: #ffc107;
    color: #000000;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e0a800;
}

.faq-answer {
    padding: 1.5rem;
    margin: 0;
    color: #AAAAAA;
    line-height: 1.6;
    background: #1A1A1A;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #1A1A1A;
    scroll-margin-top: 80px;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.about-description {
    font-size: 1.1rem;
    color: #AAAAAA;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffc107;
    font-weight: 500;
}

.about-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #2C2C2C;
    border-radius: 8px;
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.about-link:hover {
    background: #ffc107;
    color: #000000;
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #1A1A1A;
    color: white;
    padding: 80px 0 20px;
}

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

.footer-brand {
    display: flex;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-description {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-link {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffc107;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffc107;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 90px 0 50px;
        min-height: 75vh;
    }
    
    .hero-content {
        gap: 2.5rem;
        max-width: 900px;
    }
    
    .app-icon {
        width: 140px;
        height: 140px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .features {
        padding: 50px 0 80px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 250px;
        background: #2C2C2C;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        flex-direction: column;
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        z-index: 1000;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 0.75rem 1.5rem;
        color: #FFFFFF;
        text-decoration: none;
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 193, 7, 0.1);
        color: #ffc107;
        padding-left: 2rem;
    }
    
    .nav-toggle {
        display: flex;
        padding: 8px;
        background: rgba(255, 193, 7, 0.15);
        border: 1px solid rgba(255, 193, 7, 0.4);
    }
    
    .nav-toggle:hover {
        background: rgba(255, 193, 7, 0.25);
        border-color: #ffc107;
    }
    
    .nav-toggle.active {
        background: rgba(255, 193, 7, 0.4);
        border-color: #ffc107;
    }
    
    .navbar {
        position: relative;
    }
    
    .hero {
        padding: 100px 0 40px;
        min-height: 70vh;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        max-width: 100%;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .app-icon {
        width: 120px;
        height: 120px;
        margin-top: 0;
    }
    
    .hero-icon {
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
        border-radius: 8px;
    }
    
    .hero-legal {
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }
    
    .legal-separator {
        display: none;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .screenshots {
        padding: 60px 0;
    }
    
    .screenshots-slider {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1rem;
    }
    
    .download {
        padding: 60px 0;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .download-title {
        font-size: 2rem;
    }
    
    .download-description {
        font-size: 1rem;
    }
    
    .download-buttons {
        gap: 0.8rem;
        align-items: center;
    }
    
    .download-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .about-link {
        padding: 0.8rem;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 30px;
        min-height: 65vh;
    }
    
    .hero-content {
        gap: 1.5rem;
    }
    
    .app-icon {
        width: 100px;
        height: 100px;
        margin-top: 0;
    }
    
    .hero-icon {
        margin-bottom: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        max-width: 280px;
        border-radius: 8px;
    }
    
    .hero-stats {
        gap: 0.8rem;
    }
    
    .stat {
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .features {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 0.9rem;
    }
    
    .screenshots {
        padding: 50px 0;
    }
    
    .screenshots-slider {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.8rem;
    }
    
    .download {
        padding: 50px 0;
    }
    
    .download-title {
        font-size: 1.8rem;
    }
    
    .download-description {
        font-size: 0.9rem;
    }
    
    .download-buttons {
        align-items: center;
    }
    
    .download-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .about {
        padding: 50px 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-description {
        font-size: 0.9rem;
    }
    
    .about-features {
        gap: 0.6rem;
    }
    
    .about-link {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
}

/* Additional Dark Theme Styles */
.header.scrolled {
    background: rgba(44, 44, 44, 0.95);
    backdrop-filter: blur(10px);
}

/* Dark theme scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: #ffc107;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e0a800;
}

/* Dark theme selection */
::selection {
    background: #ffc107;
    color: #000000;
}

::-moz-selection {
    background: #ffc107;
    color: #000000;
}

/* 404 Error Page Styles */
.error-404 {
    padding: 120px 0 80px;
    background: #2C2C2C;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-icon {
    font-size: 4rem;
    color: #ffc107;
    margin-bottom: 2rem;
}

.error-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.error-description {
    font-size: 1.2rem;
    color: #AAAAAA;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.error-suggestions {
    text-align: left;
    background: #1A1A1A;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.error-suggestions h3 {
    color: #ffc107;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
}

.error-suggestions a {
    color: #AAAAAA;
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-suggestions a:hover {
    color: #ffc107;
}

@media (max-width: 768px) {
    .error-404 {
        padding: 100px 0 60px;
    }
    
    .error-title {
        font-size: 2.5rem;
    }
    
    .error-description {
        font-size: 1.1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}



