/* CSS Variables */
:root {
    --primary: #1A1A1A;
    --primary-hover: #333;
    --background: #0A0A0A;
    --text: #fff;
}

/* Desktop styles */
body {
    margin: 0;
    padding: 0;
    background-color: #0A0A0A;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

.navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 40px;
    background-color: #0A0A0A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo {
    height: 40px;
    margin-right: 40px;
}

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

.nav-links a {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    opacity: 0.7;
    transition: opacity 0.3s ease, border-bottom 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.nav-links a:hover {
    opacity: 1;
    border-bottom: 2px #fff;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.hero {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #0A0A0A;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 50%
    );
    animation: glowShift 5s ease-in-out infinite alternate;
}

@keyframes glowShift {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero h1 {
    font-size: 150px;
    font-weight: 700;
    color: #fff;
    margin: 20px 0 50px 0;
    letter-spacing: 5px;
    opacity: 0.1;
    font-family: 'Helvetica', Arial, sans-serif;
    transition: opacity 0.3s ease;
}

.hero h1:hover {
    opacity: 1;
}

.hero-content {
    margin-top: 20px;
    text-align: center;
    z-index: 10;
    padding: 0 15px;
}

.hero-content h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0.8;
}

.hero-content .buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: auto;
    max-width: 280px;
    margin: 0 auto;
}

.hero-content .buttons a {
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 14px;
    opacity: 0.7;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.hero-content .buttons a:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff;
    opacity: 1;
    transform: scale(1.05);
}

.hero-content .buttons a:last-child {
    background-color: transparent;
    border-color: #fff;
    position: relative;
}

.hero-content .buttons a:last-child:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.05);
}

.hero-content .buttons a:last-child::after {
    content: '→';
    margin-left: 8px;
    font-size: 16px;
    transition: margin-left 0.3s ease;
}

.hero-content .buttons a:last-child:hover::after {
    margin-left: 12px;
}

.copyright {
    text-align: center;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.copyright p {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.copyright:hover {
    opacity: 1;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #0A0A0A;
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.footer-social {
    display: flex;
    justify-content: flex-start;
    gap: 17px;
    margin-top: -17px;
    padding-left: 40px;
}

.footer-social a {
    color: #fff;
    font-size: 17px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social i {
    display: inline-block;
}

.blog {
    padding: 60px 40px 60px 0px;
    background-color: #0A0A0A;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.blog h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.8;
    text-align: center;
    text-transform: uppercase;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    gap: 30px;
    animation: slide 20s linear infinite;
}

.card {
    min-width: 360px;
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.card:hover {
    transform: scale(1.03);
    opacity: 1;
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #fff;
    opacity: 0.9;
}

.card p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 15px;
}

.card a.read-more {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.7;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: opacity 0.3s ease, border-color 0.3s ease;
}

.card a.read-more:hover {
    opacity: 1;
    border-bottom: 1px solid #fff;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.documentation {
    padding: 60px 40px;
    background-color: #0A0A0A;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.documentation h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.8;
    text-align: center;
    text-transform: uppercase;
}

.documentation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.doc-intro {
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-intro h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.9;
}

.doc-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.7;
}

.doc-sections {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.doc-section {
    max-width: 360px;
    background-color: #1A1A1A;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.9;
}

.doc-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 15px;
}

.doc-section ul, .doc-section ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.doc-section ul li, .doc-section ol li {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 10px;
}

.doc-section a {
    color: #87CEEB;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.doc-section a:hover {
    opacity: 0.8;
}

.chat-api {
    padding: 60px 10px;
    background-color: #0A0A0A;
    width: 100%;
    box-sizing: border-box;
}

.chat-api h2 {
    font-size: 24px;
    margin-bottom: -10px;
    color: #fff;
    opacity: 0.8;
    text-align: center;
    text-transform: uppercase;
}

.chat-api-content {
    max-width: 990px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.code-block {
    position: relative;
    background: #1A1A1A;
    padding: 20px;
    border-radius: 25px;
    border: 1px solid #333;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #fff;
    white-space: pre-wrap;
    overflow-x: auto;
}

.code-block .keyword { color: #90EE90; }
.code-block .string { color: #87CEEB; }
.copy-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 5px 10px;
    background: #4CAF50;
    border: 1px solid #333;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    transition: background-color 0.3s;
}
.copy-btn:hover {
    background: #45a049;
}
.about {
    padding: 100px 40px;
    background-color: #0A0A0A;
    width: 100%;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.about h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: #fff;
    opacity: 0.9;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
    opacity: 0.7;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
}

.about-text {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.about-text:hover {
    transform: translateY(-5px);
}

.about-text h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
    opacity: 0.95;
    position: relative;
    padding-bottom: 15px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
    opacity: 0.7;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 25px;
    max-width: 100%;
    word-wrap: break-word;
}

.about-stats {
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.about-stats:hover {
    transform: translateY(-5px);
}

.about-stats h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.95;
    position: relative;
    padding-bottom: 15px;
}

.about-stats h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #fff;
    opacity: 0.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.8;
    margin: 0;
}

.stat-item strong {
    color: #fff;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .about {
        padding: 60px 20px;
    }

    .about-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .about-text {
        padding: 30px;
    }
}
.installation-guide {
    padding: 60px 40px;
    background-color: #0A0A0A;
    width: 100%;
    box-sizing: border-box;
}
.installation-guide h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.8;
    text-align: center;
    text-transform: uppercase;
}
.guide-content {
    max-width: 990px;
    margin: 0 auto;
    color: #fff;
}
.readme-section {
    margin-bottom: 40px;
}
.readme-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.9;
}
.readme-section h4 {
    font-size: 16px;
    margin: 20px 0 10px;
    color: #fff;
    opacity: 0.8;
}
.readme-section p {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 15px;
}
.readme-section ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}
.readme-section ul li {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    opacity: 0.7;
    margin-bottom: 10px;
}
.readme-section ul li a {
    color: #87CEEB;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.readme-section ul li a:hover {
    opacity: 1;
}
.readme-section code {
    background: #1A1A1A;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #90EE90;
}
.installation-guide .code-block {
    position: relative;
    margin: 10px 0;
}
.installation-guide .copy-btn {
    top: 5px;
    right: 5px;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background-color: #1A1A1A;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 90%;
    position: relative;
    color: #fff;
    text-align: left;
}
.popup-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
    opacity: 0.9;
}
.popup-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    opacity: 0.7;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    opacity: 0.7;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.close-btn:hover {
    opacity: 1;
}
.founder-section {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.founder-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
    width: 100%;
}

.founder-details {
    display: grid;
    gap: 20px;
    width: 100%;
}

.founder-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.company-section,
.mission-section,
.vision-section,
.impact-section {
    margin-bottom: 40px;
    display: grid;
    gap: 20px;
    width: 100%;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .founder-info {
        grid-template-columns: 1fr;
    }

    .founder-stats,
    .company-stats,
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.company-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expertise-text {
    width: 100%;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Add the rainbow animation keyframes */
@keyframes rainbow-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.rainbow-text {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #4f4f4f 50%,
        #1a1a1a 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.rainbow-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: radial-gradient(
        circle at center,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    filter: blur(10px);
    opacity: 0.3;
    pointer-events: none;
}

/* Remove hover states since effect is now permanent */
.rainbow-text:hover {
    transform: none;
    background: linear-gradient(
        to right,
        #ffffff 0%,
        #4f4f4f 50%,
        #1a1a1a 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rainbow-text:hover::after {
    opacity: 0.3;
}

/* Hide mobile elements by default */
.sidebar-toggle {
    display: none;
}

.sidebar {
    display: none;
}

.overlay {
    display: none;
}

/* Mobile styles - only apply below 768px */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        justify-content: space-between;
    }

    .logo {
        margin-right: 0;
    }

    .nav-links {
        display: none;
    }

    .sidebar-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 8px;
        font-size: 20px;
        background-color: #1A1A1A;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        cursor: pointer;
        color: #fff;
        transition: background-color 0.3s ease;
        z-index: 1002;
    }

    .sidebar-toggle:hover {
        background-color: #333;
    }

    .sidebar {
        display: block;
        position: fixed;
        top: 0;
        right: -50%;
        width: 50%;
        height: 100vh;
        background-color: #1A1A1A;
        padding: 80px 20px 20px;
        transition: all 0.3s ease;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }

    .sidebar.active {
        right: 0;
    }

    .sidebar-links {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .sidebar-links a {
        color: #fff;
        text-decoration: none;
        font-size: 20px;
        padding: 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        opacity: 0.7;
        text-align: center;
        font-weight: 500;
        letter-spacing: 1px;
    }

    .sidebar-links a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 1;
        transform: translateX(5px);
    }

    .overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* When sidebar is active, blur the main content */
    body.sidebar-active {
        overflow: hidden;
    }

    body.sidebar-active > *:not(.sidebar):not(.sidebar-toggle):not(.overlay) {
        filter: blur(5px);
        transition: filter 0.3s ease;
    }

    /* Mobile hero section */
    .hero {
        height: auto;
        min-height: 60vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 72px;
        margin: 10px 0 20px 0;
        opacity: 1;
        background: linear-gradient(
            to right,
            #ffffff 0%,
            #4f4f4f 50%,
            #1a1a1a 100%
        );
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shine 3s linear infinite;
    }

    @keyframes shine {
        0% {
            background-position: 0% 50%;
        }
        100% {
            background-position: 200% 50%;
        }
    }

    .hero-content h2 {
        font-size: 20px;
        margin-bottom: 25px;
        color: #fff;
        opacity: 0.9;
        letter-spacing: 1px;
    }

    .hero-content .buttons {
        display: flex;
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-content .buttons a {
        color: #fff;
        text-decoration: none;
        padding: 12px 30px;
        border: 2px solid #fff;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0.5px;
        opacity: 0.9;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    .hero-content .buttons a:hover {
        background: #fff;
        color: #000;
        opacity: 1;
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    }

    .hero-content .buttons a::after {
        content: '→';
        margin-left: 8px;
        font-size: 18px;
        transition: transform 0.3s ease;
        display: inline-block;
    }

    .hero-content .buttons a:hover::after {
        transform: translateX(5px);
    }

    /* Fix content overflow */
    .about-content,
    .documentation-content,
    .chat-api-content,
    .guide-content {
        width: 100%;
        max-width: calc(100vw - 30px);
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    /* Fix stats blocks */
    .founder-stats,
    .company-stats,
    .impact-stats {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .stat-item {
        width: 100%;
        padding: 15px;
        margin: 0;
        box-sizing: border-box;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        background: rgba(26, 26, 26, 0.95);
    }

    /* Documentation Section Mobile Styles */
    .documentation {
        padding: 40px 15px;
        margin-top: 60px;
    }

    .documentation h2 {
        margin-bottom: 30px;
        padding-top: 20px;
    }

    .doc-sections {
        flex-direction: column;
        gap: 20px;
    }

    .doc-section {
        width: 100%;
        max-width: calc(100vw - 30px);
        padding: 15px;
    }

    /* Chat API Section Mobile Styles */
    .chat-api {
        padding: 40px 15px;
    }

    .code-block {
        width: 100%;
        max-width: calc(100vw - 30px);
        padding: 15px;
        font-size: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* About Section Mobile Styles */
    .about {
        padding: 40px 15px;
    }

    .about-content {
        padding: 0 10px;
    }

    .about-text {
        width: 100%;
        max-width: calc(100vw - 30px);
        padding: 15px;
    }

    /* Footer Mobile Styles */
    .footer {
        padding: 15px 20px;
    }

    .footer-social {
        justify-content: center;
        padding-left: 0;
        margin-top: 10px;
    }
}

/* Small mobile devices */
@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 56px;
    }

    .hero-content h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero-content .buttons a {
        padding: 10px 25px;
        font-size: 15px;
    }

    .stat-item {
        padding: 12px;
    }

    .hero-content .buttons {
        max-width: 240px;
    }

    .hero-content .buttons a {
        padding: 6px 12px;
        font-size: 13px;
    }
}

.download-section {
    padding: 20px 20px 40px;
    text-align: center;
    background-color: transparent;
    margin-top: -10px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-size: 18px;
    color: #fff;
    background-color: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin: 0;
}

.download-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-button i {
    font-size: 20px;
}

.download-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.download-popup.active {
    display: flex;
}

.download-popup-content {
    position: relative;
    background-color: #1A1A1A;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.download-option {
    background-color: #0A0A0A;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.download-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.download-option h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.download-option p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    font-size: 16px;
}

.download-option img {
    width: 280px;
    height: 210px;
    margin-bottom: 25px;
    border-radius: 12px;
    object-fit: cover;
}

.download-option-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: #1A1A1A;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.download-option-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.download-option-button i {
    font-size: 18px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .download-popup-content {
        grid-template-columns: 1fr;
        padding: 30px;
        margin: 20px;
        width: auto;
    }

    .download-option {
        padding: 25px;
    }

    .download-option img {
        width: 220px;
        height: 165px;
    }

    .download-option h3 {
        font-size: 20px;
    }

    .download-option p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .download-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}

.popup-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1002;
}

.popup-close-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.popup-close-btn i {
    font-size: 18px;
}