/* ================================
   GLOBAL STYLES & VARIABLES
   ================================ */

:root {
    --primary-color: #ff2b2b;
    --secondary-color: #cc1f1f;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #151515;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --glow-blue: 0 0 20px rgba(255, 43, 43, 0.5);
    --glow-blue-strong: 0 0 30px rgba(255, 43, 43, 0.8);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   NAVIGATION BAR
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 43, 43, 0.2);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-logo .logo-text {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.highlight {
    color: var(--primary-color);
    text-shadow: var(--glow-blue);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-start; /* bring content down from vertical center */
    justify-content: center;
    padding-top: 500px; /* increased spacing to move hero content further down */
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Image replacement for hero video */
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 43, 43, 0.08), rgba(10, 10, 10, 0.9));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    animation: fadeInUp 1s ease;
    will-change: transform, opacity;
}

.logo-container {
    margin-bottom: 30px;
}

.server-logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(var(--glow-blue));
    animation: pulse 3s infinite;
    will-change: transform;
}

.hero-title {
    font-size: 80px;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 8px;
    text-shadow: 0 0 40px rgba(255, 43, 43, 0.85);
}

.hero-tagline {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--glow-blue);
}

.btn-primary:hover {
    background: var(--secondary-color);
    box-shadow: var(--glow-blue-strong);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

/* WhatsApp button styling for store/community widget */
.store-placeholder .btn {
    display: block;
    margin: 18px auto;
}

.store-placeholder .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #25D366 0%, #1DA851 100%);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.store-placeholder .btn-whatsapp svg,
.store-placeholder .btn-whatsapp .icon-whatsapp {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    fill: currentColor;
}

.store-placeholder .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.18);
}

/* Ensure the WhatsApp button doesn't inherit link color from other rules */
.store-placeholder .btn-whatsapp,
.store-placeholder .btn-whatsapp:visited {
    color: #ffffff;
}

@media (max-width: 480px) {
    .store-placeholder .btn,
    .store-placeholder .btn-whatsapp {
        width: 90%;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 120px; /* reduce top spacing on smaller screens */
        align-items: center; /* re-center vertically on narrow viewports */
    }
    .hero-title {
        font-size: 48px;
        margin-bottom: 6px;
    }
    .hero-tagline {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
    will-change: transform;
}

.scroll-indicator i {
    font-size: 30px;
    color: var(--primary-color);
}

/* ================================
   STATUS BAR
   ================================ */

.status-bar {
    background: var(--card-bg);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.status-items {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.status-value {
    color: var(--text-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
    will-change: transform;
}

.status-dot.online {
    background: #00ff00;
    box-shadow: 0 0 10px #00ff00;
}

.player-number {
    color: var(--primary-color);
    font-size: 18px;
}

/* ================================
   SECTION HEADERS
   ================================ */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
    box-shadow: var(--glow-blue);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
}

/* ================================
   ABOUT SECTION
   ================================ */

.about {
    background: var(--darker-bg);
}

.about-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-secondary);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-feature {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--card-bg);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-blue);
    transform: translateY(-5px);
}

.about-feature i {
    font-size: 40px;
    color: var(--primary-color);
    min-width: 40px;
}

.about-feature h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-feature p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ================================
   FEATURES SECTION
   ================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: var(--transition);
    cursor: pointer;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-blue);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    box-shadow: var(--glow-blue-strong);
}

.feature-icon i {
    font-size: 35px;
    color: var(--primary-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon i {
    color: var(--dark-bg);
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ================================
   APPLICATION FORM
   ================================ */

.application {
    background: var(--darker-bg);
}

.application-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.application-form {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 16px;
}

.form-group label i {
    margin-right: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 0, 0, 0.2);
    border-radius: 5px;
    color: var(--text-primary);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--glow-blue);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-size: 18px;
}

.form-success {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.form-success i {
    font-size: 60px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ================================
   RULES SECTION
   ================================ */

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.rules-category {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: var(--transition);
}

.rules-category:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-blue);
    transform: translateY(-5px);
}

.rules-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.rules-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.rules-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.rules-list {
    list-style: none;
}

.rules-list li {
    padding: 12px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 12px;
}

/* ================================
   GALLERY SECTION
   ================================ */

.gallery {
    background: var(--darker-bg);
}

/* Media grid for videos and reels */
.media-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.row-title {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 16px;
    grid-column: 1 / -1;
}

.embed-wrapper {
    background: var(--card-bg);
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,0,0,0.06);
    margin-bottom: 20px;
}

.embed-wrapper iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 6px;
}

.instagram-embed {
    padding: 8px;
}

@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: 1fr;
    }
    .embed-wrapper iframe {
        height: 240px;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 16/10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 40px;
    color: white;
}

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 2001;
}

.modal-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
}

.modal-prev,
.modal-next {
    background: var(--primary-color);
    border: none;
    padding: 15px 20px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
    font-size: 20px;
    transition: var(--transition);
}

.modal-prev:hover,
.modal-next:hover {
    background: var(--secondary-color);
    box-shadow: var(--glow-blue);
}

/* ================================
   COMMUNITY SECTION
   ================================ */

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.discord-widget,
.store-widget {
    width: 100%;
}

.discord-placeholder,
.store-placeholder {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.discord-placeholder:hover,
.store-placeholder:hover {
    border-color: var(--primary-color);
    box-shadow: var(--glow-blue);
}

.discord-placeholder i,
.store-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.discord-placeholder h3,
.store-placeholder h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.discord-placeholder p,
.store-placeholder p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-discord,
.btn-store {
    background: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 40px;
    font-size: 16px;
    box-shadow: var(--glow-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-discord:hover,
.btn-store:hover {
    background: var(--secondary-color);
    box-shadow: var(--glow-blue-strong);
    transform: translateY(-3px);
}

.discord-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: linear-gradient(180deg, var(--darker-bg) 0%, #000000 100%);
    border-top: 2px solid rgba(255, 0, 0, 0.3);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-tagline {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    font-size: 18px;
    text-decoration: none;
    outline: none;
    line-height: 1;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg);
    border-color: var(--primary-color);
    box-shadow: var(--glow-blue);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-primary);
    /* remove default link underline */
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.footer-links a i {
    color: var(--primary-color);
    font-size: 12px;
    width: 16px;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 13px;
}

.powered-by {
    font-size: 14px;
}

.developer-link {
    text-decoration: none;
    transition: var(--transition);
}

.developer-link:hover .highlight {
    text-shadow: 0 0 15px var(--primary-color);
    letter-spacing: 1px;
}

/* ================================
   ANIMATIONS
   ================================ */

/* Scroll animations */
.fade-in-hidden {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translate3d(-50%, 0, 0);
    }
    50% {
        transform: translate3d(-50%, -10px, 0);
    }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 90%;
    }

    .status-items {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid,
    .rules-grid {
        grid-template-columns: 1fr;
    }

    .application-form {
        padding: 30px 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
    }

    .footer {
        padding: 50px 0 0;
    }

    .footer-content {
        gap: 30px;
    }
}
