/* Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    background-color: #f5f5f5;
    color: #333;
}

.page-wrapper {
    position: relative;
}

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

h1, h2, p {
    color: #333;
}

button {
    background-color: #ff4000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

button:hover {
    background-color: #ff3300;
}

/* Header Styles */
.header {
    background-color: #fff;
    padding: 15px 10px;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

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

.header-title {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #663399, #ff4000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.github-button {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    background-color: #f0f0f0;
    padding: 10px 20px;
    border-radius: 5px;
}

.github-button:hover {
    background-color: #e0e0e0;
}

.github-logo {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Global button styles */
.cta-button {
    background-color: #ff4000;
    color: #fff !important;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff3300;
}

/* Main Banner */
.combined-section {
    background: #f8f8f8;
    padding: 50px 20px;
    text-align: left;
    background-image: url('/gplay.png');
    background-size: 200px 200px;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


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

.supercharge {
    background: linear-gradient(90deg, #ff4000, #ff7300, #ff00d0, #bb01ff, #0073ff);
    background-size: 600%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient 5s ease infinite;
}

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

.banner-image {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
}

.text-content {
    flex: 1;
    padding-right: 40px;
}

.text-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}
.text-content p {
    font-size: 1.2rem;
    color: #555;
    margin: 20px 0;
    line-height: 1.6;
    max-width: 600px;
}


/* Video Section */
.video-section {
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;

}

.video-frame-wrapper {
    max-width: 60%;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 2;
    position: relative;
}

.video-content {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Feature Section */
.feature-section {
    padding: 20px;
    text-align: center;
    background: #f9f9f9;
    background-image: url('/gplay.png');
    background-size: 200px 200px; 
    opacity: 1; 
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.05);
}

.features-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 30%;
    min-width: 200px;
    transition: transform 0.3s ease;
}

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

.feature-header {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-item i {
    font-size: 2rem;
    color: #fff;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #333;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    margin: 10px 0 20px;
}

/* Footer Styles */
.footer {
    background: #e0e0e0;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    position: relative;
}

.footer a {
    color: #333;
    text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-container {
        flex-direction: column;
    }

    .features-row {
        flex-direction: column;
        align-items: center;
    }

    .banner-image {
        max-width: 70%;
    }

    .video-frame-wrapper {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    .banner-image {
        max-width: 90%;
    }

    .feature-item {
        width: 80%;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }

    .video-frame-wrapper {
        max-width: 90%;
    }
}

/* Open Source Section */
.open-source-section {
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 30px;
}

.open-source-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.open-source-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.open-source-section .cta-button,
.bmc-button {
    background-color: #ff4000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.open-source-section .cta-button:hover,
.bmc-button:hover {
    background-color: #ff3300;
}

.bmc-button {
    display: inline-block;
    color: #fff !important;
    border-radius: 30px !important;
    padding: 15px 30px !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    background-color: #ff4000 !important;
}

@media (max-width: 768px) {
    .open-source-section h2 {
        font-size: 1.8rem;
    }

    .open-source-section p {
        font-size: 1rem;
    }

    .button-group {
        flex-direction: column;
    }

    .open-source-section .cta-button,
    .bmc-button {
        width: 100%;
        max-width: 300px;
        margin: 10px 0;
    }
}
