/* Galaxy Legends - Responsive Stylesheet (Desktop & Mobile Optimized) */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* Galaxy Theme Colors */
    --primary-purple: #6B46C1;
    --secondary-purple: #8B5CF6;
    --dark-purple: #4C1D95;
    --accent-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-pink: #EC4899;
    --gold: #F59E0B;
    
    /* Dark Theme */
    --bg-primary: #0F0F23;
    --bg-secondary: #1A1A2E;
    --bg-tertiary: #16213E;
    --text-primary: #FFFFFF;
    --text-secondary: #B8BCC8;
    --text-muted: #6B7280;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-purple), var(--accent-blue));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-purple), var(--accent-cyan));
    --gradient-accent: linear-gradient(135deg, var(--accent-pink), var(--gold));
    
    /* Fonts */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Shadows */
    --shadow-glow: 0 0 20px rgba(107, 70, 193, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-text: 0 2px 4px rgba(0, 0, 0, 0.5);
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   NAVIGATION - RESPONSIVE
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(107, 70, 193, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: var(--shadow-glow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-purple);
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(107, 70, 193, 0.1);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link.active::before,
.nav-link:hover::before {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(107, 70, 193, 0.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* ===========================
   HERO SECTION - RESPONSIVE
   =========================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, var(--dark-purple), var(--bg-primary));
}

/* Optimized Stars Animation */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent),
        radial-gradient(1px 1px at 200px 50px, rgba(255,255,255,0.7), transparent),
        radial-gradient(2px 2px at 60px 120px, #fff, transparent);
    background-repeat: repeat;
    background-size: 250px 120px;
    animation: hero-sparkle 25s linear infinite;
    opacity: 0.4;
    z-index: 1;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 50px 20px, rgba(255,255,255,0.9), transparent),
        radial-gradient(2px 2px at 180px 60px, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 300px 40px, #fff, transparent),
        radial-gradient(2px 2px at 100px 100px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 250px 80px, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 350px 150px;
    animation: hero-sparkle-secondary 30s linear infinite;
    opacity: 0.3;
    z-index: 1;
}

@keyframes hero-sparkle {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.4; 
    }
    25% { 
        transform: translateY(-8px) rotate(90deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-15px) rotate(180deg); 
        opacity: 1; 
    }
    75% { 
        transform: translateY(-8px) rotate(270deg); 
        opacity: 0.7; 
    }
}

@keyframes hero-sparkle-secondary {
    0%, 100% { 
        transform: translateX(0) rotate(0deg); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateX(5px) rotate(-45deg); 
        opacity: 0.5; 
    }
    50% { 
        transform: translateX(10px) rotate(-90deg); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateX(5px) rotate(-135deg); 
        opacity: 0.5; 
    }
}

.galaxy-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(107, 70, 193, 0.3), transparent 70%),
                radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.2), transparent 70%);
    z-index: 2;
}

.hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
    width: 100%;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 2rem;
}

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

.logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
    padding: 8px;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.logo-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
}

.galaxy-text,
.legends-text {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    min-height: 50px;
    white-space: nowrap;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-purple);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.4);
}

.cta-button:active {
    transform: translateY(0px) scale(0.98);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-arrow 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(107, 70, 193, 0.2);
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

/* ===========================
   SECTION STYLES
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* ===========================
   ABOUT SECTION - RESPONSIVE
   =========================== */
.about {
    padding: 8rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

/* Desktop layout: Description full width, then features and showcase side by side */
@media (min-width: 769px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        width: 100%;
    }
    
    .about-description {
        text-align: justify;
        text-justify: inter-word;
        margin-bottom: 3rem;
    }
    
    /* Features and showcase side by side */
    .features-showcase-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: start;
    }
}

.about-text {
    padding: 0 20px;
}

.about-description {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Desktop only: Justify text alignment for better coverage */
@media (min-width: 769px) {
    .about-description {
        text-align: justify;
        text-justify: inter-word;
    }
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.feature-item:active {
    transform: scale(0.98);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

.about-visual {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.team-showcase {
    position: relative;
    width: 100%;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(107, 70, 193, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--primary-purple), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(107, 70, 193, 0.1), transparent);
    z-index: 1;
}

.showcase-card i {
    font-size: clamp(3rem, 8vw, 4rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.showcase-card h3 {
    font-family: var(--font-primary);
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.showcase-card p {
    color: var(--text-secondary);
    position: relative;
    z-index: 2;
    font-size: clamp(0.95rem, 2.5vw, 1rem);
}

/* ===========================
   FOOTER - RESPONSIVE
   =========================== */
.footer {
    background: var(--bg-secondary);
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(107, 70, 193, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
    justify-items: center;
}

.footer-section {
    padding: 0;
    width: 100%;
    max-width: 250px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0.8rem;
}

.footer-logo i {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.footer-logo span {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Hide line break on desktop */
.footer-section p br {
    display: none;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-purple);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(107, 70, 193, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-3px);
}

.social-link:active {
    transform: translateY(0px) scale(0.95);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===========================
   RESPONSIVE BREAKPOINTS
   =========================== */

/* Tablet Landscape */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about {
        padding: 6rem 0;
    }
}

/* Tablet Portrait & Mobile Landscape */
@media (max-width: 768px) {
    /* Hide desktop nav and show mobile components */
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: none;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 80px 15px 50px;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .cta-buttons {
        gap: 0.8rem;
    }

    .cta-button {
        padding: 0.9rem 1.5rem;
        min-width: 200px;
    }

    /* About Section Mobile */
    .about {
        padding: 4rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .about-features {
        gap: 1.5rem;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    /* Footer Extra Mobile Optimizations */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section {
        padding: 0 0.5rem;
    }

    .footer-section:first-child {
        padding-bottom: 1rem;
        margin-bottom: 1.5rem;
    }

    .footer-logo i {
        font-size: 1.6rem;
    }

    .footer-logo span {
        font-size: 1.2rem;
    }

    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 0.4rem;
    }

    .footer-links a {
        font-size: 0.85rem;
        padding: 0.4rem;
    }

    .social-links {
        gap: 1rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2.5rem 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.2rem;
        max-width: 100%;
    }

    .footer-section {
        padding: 0 1rem;
        margin-bottom: 0.1rem;
    }

    .footer-section:first-child {
        border-bottom: 1px solid rgba(107, 70, 193, 0.2);
        padding-bottom: 0.4rem;
        margin-bottom: 0.3rem;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 0.3rem;
        display: flex;
        align-items: center;
        gap: 0px;
    }

    .footer-logo i {
        font-size: 1.8rem;
        margin: 0;
    }

    .footer-logo span {
        font-size: 1.3rem;
        margin: 0;
    }

    .footer-section p {
        white-space: normal;
        font-size: 0.9rem;
        margin-bottom: 0;
        margin-top: 0;
    }

    /* Show line break on mobile */
    .footer-section p br {
        display: inline;
    }

    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
        color: var(--primary-purple);
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem;
        margin-bottom: 0.2rem;
    }

    /* Both Quick Links and Support sections use 2x2 grid */
    .footer-section:nth-child(2) .footer-links,
    .footer-section:nth-child(3) .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.2rem;
    }

    .footer-links li {
        margin-bottom: 0.2rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        padding: 0.5rem;
        border-radius: 8px;
        background: rgba(107, 70, 193, 0.1);
        display: block;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .footer-links a:hover {
        background: rgba(107, 70, 193, 0.2);
        border-color: rgba(107, 70, 193, 0.3);
        padding-left: 0.5rem;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(107, 70, 193, 0.2);
    }

    .social-links {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 0.8rem;
    }

    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Mobile Portrait */
@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding: 70px 10px 40px;
    }

    .logo-circle {
        width: 85px;
        height: 85px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cta-button {
        width: 100%;
        padding: 1rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .about {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .about-description {
        margin-bottom: 2rem;
    }

    .feature-item {
        padding: 1rem;
        gap: 0.8rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .showcase-card {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-content {
        gap: 0.2rem;
    }

    .social-link {
        width: 42px;
        height: 42px;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .nav-container {
        padding: 0.8rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .cta-button {
        font-size: 0.85rem;
        padding: 0.9rem;
    }

    .feature-content h3 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.85rem;
    }
}

/* Landscape Mode on Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 90px 20px 40px;
    }

    .logo-circle {
        width: 70px;
        height: 70px;
    }

    .hero-title {
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        margin-bottom: 1.5rem;
        font-size: 0.9rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .cta-button:hover,
    .nav-link:hover,
    .feature-item:hover {
        transform: none;
    }
    
    .scroll-arrow:hover {
        background: transparent;
    }
}

