/* 
   Stumble Guys MOD APK - Main Stylesheet
   Author: Your Name
   Version: 1.0
*/

/* ===== BASE STYLES ===== */
:root {
    --primary-color: #15bdec;
    --secondary-color: #f70000;
    --dark-color: #333333;
    --light-color: #f9f9f9;
    --text-color: #333333;
    --light-text: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #666;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
}

/* ===== HEADER STYLES ===== */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 25px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.nav-list {
    display: flex;
}

.nav-link {
    padding: 10px 15px;
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 70%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 3px 0;
    transition: var(--transition);
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
}

.version-tag-overlay {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #ff6b35;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.security-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.security-badge i {
    color: #4CAF50;
    margin-right: 8px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.download-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    display: inline-flex;
    align-items: center;
}

.download-btn:before {
    content: '\f019';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.download-btn:hover {
    background-color: #ff5a1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.learn-more-btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--dark-color);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
}

.learn-more-btn:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 10px;
    font-size: 0.8rem;
}

.learn-more-btn:hover {
    background-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-container {
    position: relative;
    display: inline-block;
}

.stumble-character {
    max-width: 256px;
    max-height: 256px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    background-color: white;
    text-align: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 203, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.card-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

/* ===== SEO Content Section ===== */
.seo-content {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.seo-content h2 {
    color: var(--dark-color);
    margin-top: 0;
    font-size: 1.8rem;
}

.seo-content h3 {
    margin-top: 30px;
    font-size: 1.4rem;
}

.seo-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===== SCREENSHOTS SECTION ===== */
.screenshots {
    background-color: #f5f5f5;
    padding: 80px 0;
    overflow: hidden;
}

.screenshots-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 10px;
    margin: 0 -10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    justify-content: flex-start;
    padding-bottom: 30px; /* Add extra padding at bottom to avoid shadows being cut off */
}

.screenshots-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.screenshot {
    flex: 0 0 auto;
    width: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.screenshot:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.screenshot img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Add left padding to the first screenshot for better display */
.screenshot:first-child {
    margin-left: 10px;
}

/* Add right padding to the last screenshot for better display */
.screenshot:last-child {
    margin-right: 10px;
}

/* Scroll indicator */
.scroll-indicator {
    text-align: center;
    margin-top: 20px;
    color: #777;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInOut 2s infinite;
}

.scroll-indicator i {
    margin-left: 8px;
    animation: slideRight 1.5s infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes slideRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Hide scroll indicator on smaller screens */
@media (max-width: 768px) {
    .scroll-indicator {
        display: none;
    }
}

/* ===== INSTALLATION SECTION ===== */
.installation {
    background-color: var(--light-color);
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* ===== FAQ SECTION ===== */
.faq {
    background-color: white;
}

.accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.accordion-header {
    background-color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.accordion-icon:before,
.accordion-icon:after {
    content: '';
    position: absolute;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.accordion-icon:before {
    width: 2px;
    height: 20px;
    top: 0;
    left: 9px;
}

.accordion-icon:after {
    width: 20px;
    height: 2px;
    top: 9px;
    left: 0;
}

.accordion-item.active .accordion-icon:before {
    transform: rotate(90deg);
    opacity: 0;
}

.accordion-header:hover {
    background-color: #f9f9f9;
}

.accordion-content {
    background-color: white;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--primary-color);
    text-align: center;
    padding: 60px 0;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 5;
}

.cta-button {
    background-color: white;
    color: var(--dark-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    position: relative;
    z-index: 5;
}

.cta-button:before {
    content: '\f019';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===== DOWNLOAD PAGE STYLES ===== */
.download-hero {
    text-align: center;
    padding: 60px 0;
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.download-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.download-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.version-info {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.1rem;
    position: relative;
    z-index: 5;
}

.download-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.download-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.download-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-icon .version-tag-overlay {
    top: -10px;
    right: -10px;
    font-size: 0.9rem;
    padding: 4px 8px;
}

.app-name {
    font-size: 1.8rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.app-version {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.download-progress-container {
    width: 100%;
    margin-bottom: 30px;
}

.download-progress {
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(to right, #ffcb05, #ff6b35);
    border-radius: 6px;
    transition: width 3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.2) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.2) 75%,
        transparent 75%
    );
    background-size: 20px 20px;
    animation: progress-animation 1s linear infinite;
    z-index: 1;
}

@keyframes progress-animation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 0;
    }
}

.download-timer {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center;
}

.download-timer #countdown {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.4rem;
    display: inline-block;
    min-width: 30px;
    text-align: center;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.download-now-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
    justify-content: center;
}

.download-now-btn:before {
    content: '\f019';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 10px;
}

.download-now-btn:hover {
    background-color: #ff5a1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.download-notice {
    font-size: 0.9rem;
    color: #666;
}

.version-history {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.version-history h2 {
    text-align: center;
    margin-bottom: 50px;
}

.version-list {
    max-width: 800px;
    margin: 0 auto;
}

.version-item {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.version-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.version-header h3 {
    margin: 0;
    color: var(--dark-color);
}

.version-date {
    color: #666;
    font-size: 0.9rem;
}

.version-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}

.version-content li {
    margin-bottom: 8px;
    color: #555;
}

.download-alt-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.download-alt-btn {
    background-color: #f0f0f0;
    color: #555;
    border: none;
    padding: 12px 25px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.download-alt-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

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

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .character-container {
        margin: 0 auto;
    }
    
    .stumble-character {
        max-width: 200px;
    }
    
    .version-tag-overlay {
        font-size: 0.9rem;
        padding: 4px 8px;
        top: -8px;
        right: -8px;
    }
    
    .seo-content {
        padding: 15px;
    }
    
    .seo-content h2 {
        font-size: 1.6rem;
    }
    
    .seo-content h3 {
        font-size: 1.3rem;
    }
    
    .seo-content p {
        font-size: 1rem;
    }
    
    .screenshot {
        width: 240px;
    }
    
    .screenshot img {
        height: 420px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .download-alt-options {
        flex-direction: column;
        gap: 10px;
    }
    
    .screenshot {
        width: 200px;
    }
    
    .screenshot img {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .download-btn, .learn-more-btn {
        width: 100%;
        justify-content: center;
    }
    
    .character-container {
        width: 180px;
        height: 180px;
    }
    
    .stumble-character {
        max-width: 180px;
    }
    
    .version-tag-overlay {
        font-size: 0.8rem;
        padding: 3px 6px;
        top: -6px;
        right: -6px;
        border-radius: 15px;
    }
    
    .cards, .steps {
        grid-template-columns: 1fr;
    }
    
    .download-container {
        padding: 20px;
    }
    
    .download-icon {
        width: 100px;
        height: 100px;
    }
    
    .download-icon .version-tag-overlay {
        font-size: 0.7rem;
        padding: 3px 6px;
        top: -6px;
        right: -6px;
    }
    
    .app-name {
        font-size: 1.5rem;
    }
    
    .screenshot {
        width: auto;
    }
    
    .screenshot img {
        height: 350px;
    }
}

/* ===== REQUIREMENTS SECTION STYLES ===== */
.requirements {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.requirement-item {
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 30px 20px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.requirement-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 203, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.requirement-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.requirement-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.requirement-item p {
    color: #666;
    margin-bottom: 0;
}

/* ===== PAGE HERO STYLES ===== */
.page-hero {
    background-image: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.page-hero h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 5;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* ===== ABOUT PAGE STYLES ===== */
.our-story, .our-mission, .our-team {
    padding: 80px 0;
}

.our-story {
    background-color: white;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.story-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text {
    flex: 1;
}

.story-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

.our-mission {
    background-color: #f9f9f9;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 203, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.mission-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.our-team {
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-member {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.member-image {
    height: 220px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    padding: 15px 15px 5px;
    margin-bottom: 0;
}

.member-role {
    padding: 0 15px;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

.member-desc {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .story-content {
        flex-direction: column;
    }
    
    .story-image, .story-text {
        width: 100%;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.contact-info p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 203, 5, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.method-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.method-details h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.method-details p {
    margin-bottom: 0;
    color: #666;
}

.social-connect h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.2);
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    width: 100%;
}

.submit-btn:hover {
    background-color: #ff5a1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.contact-faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 40px;
}

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

.contact-faq .accordion-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.contact-faq .accordion-header {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.contact-faq .accordion-header:after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-faq .accordion-item.active .accordion-header:after {
    content: '-';
}

.contact-faq .accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.contact-faq .accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
        margin-bottom: 40px;
    }
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */
.privacy-content {
    padding: 80px 0;
    background-color: white;
}

.policy-section {
    max-width: 900px;
    margin: 0 auto 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-section p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-section a {
    color: var(--secondary-color);
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

.policy-list {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-list li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 60px 0;
    }
    
    .policy-section {
        padding: 0 15px;
    }
    
    .policy-section h2 {
        font-size: 1.6rem;
    }
}

.version-download {
    margin-top: 15px;
    text-align: right;
}

.version-download-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.version-download-btn:before {
    content: '\f019';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    font-size: 0.8rem;
}

.version-download-btn:hover {
    background-color: #ff5a1f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
} 