/*
Project: Astral
File: styles.css
Description: styles for Astrals home page.
Author: Zyonshyper
Created on: 2025-05-03
*/

:root {
    --primary-color: #9d4edd;
    --secondary-color: #6a0dad;
    --accent-color: #b14aed;
    --dark-color: #120024;
    --darker-color: #0a0014;
    --light-color: #f5f5f5;
    --text-color: #e0e0e0;
    --gradient: linear-gradient(90deg, #9d4edd, #c77dff);
    --card-bg: rgba(18, 0, 36, 0.7);
    --card-border: rgba(157, 78, 221, 0.2);
    --header-height: 80px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

section {
    padding: 100px 0;
    position: relative;
}
s
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.cosmic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    overflow: hidden;
}

.stars, .twinkling, .clouds, .nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stars {
    background: transparent url('https://i.imgur.com/YKY28eT.png') repeat top center;
    z-index: -9;
}

/* what is with this fuck ass shit */
.cursor-trail {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.6) 0%, rgba(157, 78, 221, 0) 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    animation: cursor-fade 1s forwards;
}

@keyframes cursor-fade {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.feature-card, .compatibility-card, .download-card, .community-card {
    position: relative;
    overflow: hidden;
}

.compatibility-card::after, .download-card::after, .community-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 14px;
    z-index: -1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: var(--pri);
    border-radius: 14px;
    z-index: -1;
}

.starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -11;
    perspective: 500px;
    overflow: hidden;
}

.star-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform-style: preserve-3d;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 50%;
    animation: star-parallax linear infinite;
}

.star-layer-1 .star {
    animation-duration: 60s;
}

.star-layer-2 .star {
    animation-duration: 40s;
}

.star-layer-3 .star {
    animation-duration: 20s;
}

@keyframes star-parallax {
    from {
        transform: translateZ(0) translateX(100vw);
    }
    to {
        transform: translateZ(-500px) translateX(-100vw);
    }
}

.glow-text {
    text-shadow: 0 0 10px var(--primary-color), 
                 0 0 20px var(--primary-color), 
                 0 0 30px var(--primary-color);
    animation: text-pulse 3s ease-in-out infinite alternate;
}

@keyframes text-pulse {
    0% {
        text-shadow: 0 0 10px var(--primary-color), 
                     0 0 20px var(--primary-color);
    }
    100% {
        text-shadow: 0 0 15px var(--primary-color), 
                     0 0 25px var(--primary-color), 
                     0 0 35px var(--primary-color);
    }
}

.cosmic-dust {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -4;
    background-image: 
        radial-gradient(1px 1px at 25% 25%, rgba(255, 255, 255, 0.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.2) 50%, transparent 100%),
        radial-gradient(1px 1px at 75% 75%, rgba(255, 255, 255, 0.2) 50%, transparent 100%),
        radial-gradient(2px 2px at 10% 90%, rgba(157, 78, 221, 0.2) 50%, transparent 100%),
        radial-gradient(2px 2px at 90% 10%, rgba(157, 78, 221, 0.2) 50%, transparent 100%);
    background-repeat: repeat;
    background-size: 200px 200px, 150px 150px, 100px 100px, 250px 250px, 300px 300px;
    animation: cosmic-dust 100s linear infinite;
}

@keyframes cosmic-dust {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 1000px 1000px, -1000px 1000px, 1000px -1000px, -1000px -1000px, 1000px 1000px;
    }
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

@keyframes move-clouds-back {
    from {background-position: 0 0;}
    to {background-position: 10000px 0;}
}

@keyframes pulse {
    0% {opacity: 0.1;}
    100% {opacity: 0.3;}
}

.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: float-particle 15s linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.cosmic-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, rgba(157, 78, 221, 0) 70%);
    filter: blur(30px);
    animation: glow 8s ease-in-out infinite alternate;
    pointer-events: none;
}

.glow-1 {
    top: 20%;
    left: 10%;
}

.glow-2 {
    bottom: 10%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(199, 125, 255, 0.15) 0%, rgba(199, 125, 255, 0) 70%);
}

@keyframes glow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.btn-primary, .btn-secondary, .btn-discord {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before, .btn-discord::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before, .btn-discord:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(157, 78, 221, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-discord {
    background: #5865F2;
    color: #fff;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.6);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo .tagline {
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(157, 78, 221, 0.5));
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.8;
    transition: var(--transition);
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translate(-50%, -5px);
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.8);
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    box-shadow: 0 0 15px rgba(157, 78, 221, 0.5);
}

.scroll-indicator .mouse::before {
    content: '';
    width: 6px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 3px;
    animation: scrollAnim 2s infinite;
    margin-top: 8px;
}

@keyframes scrollAnim {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: transparent;
    border-radius: 15px;
    padding: 2rem 2rem 3.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.compatibility {
    position: relative;
    overflow: hidden;
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.compatibility-card {
    background: transparent;
    /*border: 1px solid var(--card-border);*/
    border-radius: 15px;
    padding: 2rem 2rem 3.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
    overflow: visible;
}

.compatibility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.3);
    border-color: var(--primary-color);
    background: rgba(157, 78, 221, 0.05);
}

.compatibility-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(157, 78, 221, 0.3));
}

.compatibility-card:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.5));
}

.compatibility-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.compatibility-card.special {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(106, 13, 173, 0.1));
    border: 1px dashed var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.compatibility-card.special .plus-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tag-container {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 1;
}

.tag {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag.free {
    background: #4CAF50;
    color: white;
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
}

.tag.paid {
    background: #F44336;
    color: white;
    box-shadow: 0 4px 10px rgba(244, 67, 54, 0.3);
}


.tag.suggested {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 10px rgba(157, 78, 221, 0.3);
}

.compatibility-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(157, 78, 221, 0.1);
    border: 1px solid rgba(157, 78, 221, 0.2);
    border-radius: 10px;
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.compatibility-note i {
    font-size: 2rem;
    color: var(--primary-color);
}


.compatibility-card::after {
    display: none;
}

.performance .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
}

.performance-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.performance-stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .performance-stats {
        gap: 1.5rem;
    }
    
    .stat-value {
        font-size: 2.5rem;
    }
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.download-card {
    background: transparent;
    /*border: 1px solid var(--card-border);*/
    border-radius: 15px;
    padding: 2rem 2rem 3.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.download-card p {
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.community-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.community-card {
    border: 1px solid var(--card-border);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.community-card:hover {
    transform: translateY(-10px);
}

.community-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.community-card p {
    opacity: 0.8;
}

.community-card.discord {
    border-color: #5865F2;
}

.community-card.discord i {
    color: #5865F2;
}

.community-card.discord:hover {
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.community-card.youtube {
    border-color: #FF0000;
}

.community-card.youtube i {
    color: #FF0000;
}

.community-card.youtube:hover {
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.community-card.github {
    border-color: #6e5494;
}

.community-card.github i {
    color: #6e5494;
}

.community-card.github:hover {
    box-shadow: 0 10px 30px rgba(110, 84, 148, 0.3);
}

.cta {
    text-align: center;
    padding: 80px 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

footer {
    background: var(--darker-color);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 0;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.footer-logo span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    opacity: 0.7;
}

.footer-col p {
    margin: 1rem 0;
    opacity: 0.7;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: var(--dark-color);
        transition: var(--transition);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    nav ul li {
        margin: 1.5rem 0;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .performance .container {
        flex-direction: column;
    }
    
    .performance-stats {
        justify-content: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .performance-stats {
        flex-direction: column;
        gap: 2rem;
    }
}
