* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

#page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #ffffff;
    text-align: center;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #ffffff;
    font-weight: 600;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #D1B261;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    margin-bottom: 60px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.scroll-section {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
}

.scroll-images {
    display: flex;
    animation: scrollLeft 30s linear infinite;
    min-width: 100%;

}

.scroll-images img {
    width: 15%;
    height: 210px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 8px;
    margin: 0 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Content Sections */
.content-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.program-overview,
.guidelines-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(209, 178, 97, 0.2);
}

.highlight-text {
    font-size: 1.1rem;
    color: #D1B261;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Grid Layouts */
.features-grid,
.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card,
.guideline-card {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(209, 178, 97, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover,
.guideline-card:hover {
    transform: translateY(-5px);
    border-color: rgba(209, 178, 97, 0.3);
}

/* Form Styling */
.partner-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(209, 178, 97, 0.2);
}

.partner-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.partner-form input,
.partner-form select,
.partner-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(209, 178, 97, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus {
    outline: none;
    border-color: #D1B261;
}

.partner-form button {
    width: 100%;
    padding: 15px;
    background: #D1B261;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-form button:hover {
    background: #c4a354;
    transform: translateY(-2px);
}

.form-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

/* Platforms Section */
.platforms-section {
    text-align: center;
    padding: 40px 0;
}

.platforms {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.platform-link {
    text-decoration: none;
}

.platform {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px;
    border-radius: 12px;
    width: 150px;
    transition: all 0.3s ease;
    border: 1px solid rgba(209, 178, 97, 0.1);
}

.platform:hover {
    transform: translateY(-8px);
    border-color: rgba(209, 178, 97, 0.3);
    box-shadow: 0 8px 20px rgba(209, 178, 97, 0.2);
}

.platform i {
    font-size: 2.5rem;
    color: #D1B261;
    margin-bottom: 10px;
}

.platform span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
}

/* Back Button */
#mbcbtns {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
}

.btn-back {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #D1B261;
    color: #D1B261;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: #D1B261;
    color: #000;
    transform: scale(1.1);
}

/* Tab Styles */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(209, 178, 97, 0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: rgba(209, 178, 97, 0.4);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: #D1B261;
    color: #000;
    border-color: #D1B261;
}

.tab-content {
    position: relative;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for tabs */
@media (max-width: 768px) {
    .tab-buttons {
        gap: 10px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    #page {
        padding: 30px 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .scroll-images img {
        height: 180px;
    }

    .features-grid,
    .guidelines-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    h2 {
        font-size: 1.5rem;
    }

    .scroll-images img {
        height: 150px;
    }

    .program-overview,
    .guidelines-section,
    .partner-form-section {
        padding: 25px;
    }

    .platform {
        width: 120px;
        padding: 20px;
    }

    .platform i {
        font-size: 2rem;
    }
}

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

    h2 {
        font-size: 1.25rem;
    }

    .scroll-images img {
        height: 120px;
    }

    .features-grid,
    .guidelines-grid {
        grid-template-columns: 1fr;
    }

    .platform {
        width: 100px;
        padding: 15px;
    }

    .platform i {
        font-size: 1.75rem;
    }

    .platform span {
        font-size: 0.9rem;
    }
}