/* ============================================
   SOLARVINE - PROFESSIONAL RESPONSIVE STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-primary: #10B981;
    --accent-blue: #3B82F6;
    --accent-orange: #F59E0B;
    --accent-red: #EF4444;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    
    --bg-dark: #050505;
    --bg-grid: linear-gradient(to bottom right, #050505, #0a1a0a, #050505);
    --text-primary: #ffffff;
    --text-secondary: #9CA3AF;
    --text-tertiary: #6B7280;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-card: rgba(10, 10, 10, 0.4);
    
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.25);
    --shadow-lg: 0 12px 36px rgba(0, 0, 0, 0.35);
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-grid);
    color: var(--text-primary);
    background-color: var(--bg-dark);
    background-attachment: fixed;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(90deg, #10b981, #3b82f6, #10b981);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    width: 100%;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: transform var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 36px;
    width: 36px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-normal);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width var(--transition-normal);
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a:focus::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    background: none;
    border: none;
    padding: 0.5rem;
}

/* ==================== BUTTONS ==================== */
.btn-primary,
.btn-download {
    padding: 0.875rem 1.75rem;
    border-radius: 0.5rem;
    border: none;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary::before,
.btn-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-primary:hover,
.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-primary:active,
.btn-download:active {
    transform: translateY(0);
}

.learn-more {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.learn-more:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(16, 185, 129, 0.1);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-left {
    animation: slideInLeft 0.8s ease both;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease 0.2s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.typewriter-container {
    height: 3.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.typewriter-text {
    display: inline;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero .btn-primary {
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
}

/* ==================== MOCKUP CONTAINER ==================== */
.mockup-container {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1;
    perspective: 1200px;
}

.glass-card {
    position: relative;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.5rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    box-shadow: var(--shadow-lg);
}

.glass-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.mockup-content {
    text-align: center;
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    padding: 2rem;
    border-radius: 1rem;
    width: 100%;
}

.launcher-Icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
    font-size: 2rem;
    object-fit: contain;
}

.launcher-Icon.small {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.mockup-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.mockup-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.glow-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: pulse 3s ease-in-out infinite;
}

.glow-1 {
    width: 200px;
    height: 200px;
    background: rgba(16, 185, 129, 0.3);
    top: -50px;
    right: -50px;
}

.glow-2 {
    width: 200px;
    height: 200px;
    background: rgba(59, 130, 246, 0.3);
    bottom: -50px;
    left: -50px;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.cosmetic-overlay {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0;
    transform: translateY(10px) scale(0.8);
    transition: all var(--transition-normal) ease;
    pointer-events: none;
    z-index: 10;
}

.cosmetic-overlay.pet { bottom: 18px; right: 18px; }
.cosmetic-overlay.wings { top: 8px; right: 20px; font-size: 3rem; }
.cosmetic-overlay.cap { top: 10px; left: 20px; }

.cosmetic-overlay.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ==================== FEATURES SECTION ==================== */
.features {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideInUp 0.8s ease both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    grid-auto-rows: minmax(280px, auto);
}

.feature-card {
    backdrop-filter: blur(10px);
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1.25rem;
    padding: 1.75rem;
    cursor: pointer;
    transition: all var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s ease both;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:nth-child(1) { animation-delay: 0.05s; }
.feature-card:nth-child(2) { animation-delay: 0.1s; }
.feature-card:nth-child(3) { animation-delay: 0.15s; }
.feature-card:nth-child(4) { animation-delay: 0.2s; }
.feature-card:nth-child(5) { animation-delay: 0.25s; }
.feature-card:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card.large {
    grid-column: span 1;
    grid-row: span 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: rotate(12deg) scale(1.15);
}

.feature-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    transition: color var(--transition-normal);
}

.feature-card:hover h3 {
    color: var(--accent-primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    flex-grow: 1;
    line-height: 1.6;
}

.ram-gauge-container {
    margin-top: auto;
}

.ram-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.ram-percent {
    color: var(--accent-primary);
    font-weight: 600;
}

.ram-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.ram-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    width: 0%;
    transition: width var(--transition-normal);
    border-radius: 4px;
}

.gauge-hint {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    margin-top: 0.5rem;
}

.lightning-bolt,
.spin-icon {
    font-size: 2.5rem;
    margin-top: auto;
    text-align: center;
}

.lightning-bolt {
    animation: floatUp 1.5s ease-in-out infinite;
}

@keyframes floatUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.spin-icon {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.color-selector {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.theme-label {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: block;
}

.color-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.color-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.color-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.color-btn.active {
    border-color: white;
    transform: scale(1.25);
}

.cosmetic-controls {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cosmetic-controls label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color var(--transition-normal);
}

.cosmetic-controls label:hover {
    color: var(--accent-primary);
}

.cosmetic-controls input {
    cursor: pointer;
    accent-color: var(--accent-primary);
}

/* ==================== WHAT WE PROVIDE ==================== */
.what-we-provide {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.1);
}

.provide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.provide-text {
    animation: slideInLeft 0.8s ease both;
}

.provide-text .section-title {
    background: linear-gradient(90deg, #10b981, #3b82f6, #10b981);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 0.5rem;
}

.provide-subtitle {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.provide-list {
    list-style: none;
    margin-bottom: 1.5rem;
    column-count: 2;
    column-gap: 2rem;
}

.provide-list li {
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1rem;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.provide-list li:hover {
    color: var(--accent-primary);
}

.provide-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.provide-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.provide-image {
    animation: slideInRight 0.8s ease both;
}

.provide-image img {
    width: 100%;
    border-radius: 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: transform var(--transition-normal);
}

.provide-image:hover img {
    transform: scale(1.02);
}

/* ==================== RELEASE NOTES SECTION ==================== */
.release-notes {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.release-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: slideInUp 0.8s ease both;
}

.release-header .section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.version-badge {
    background: linear-gradient(90deg, #10b981, #3b82f6);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 1px;
}

.release-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.features-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    transition: all var(--transition-normal);
    cursor: pointer;
    animation: fadeInUp 0.6s ease both;
}

.feature-item:nth-child(1) { animation-delay: 0.05s; }
.feature-item:nth-child(2) { animation-delay: 0.1s; }
.feature-item:nth-child(3) { animation-delay: 0.15s; }

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-item-icon {
    font-size: 2.5rem;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item-text {
    flex: 1;
}

.feature-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    transition: color var(--transition-normal);
}

.feature-item:hover .feature-item-text h4 {
    color: var(--accent-primary);
}

.feature-item-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .release-notes {
        padding: 4rem 0;
    }

    .release-header {
        margin-bottom: 2rem;
    }

    .release-header .section-title {
        flex-direction: column;
        gap: 0.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-column {
        gap: 1rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .feature-item-icon {
        font-size: 2rem;
        min-width: 50px;
    }

    .feature-item-text h4 {
        font-size: 1rem;
    }

    .feature-item-text p {
        font-size: 0.85rem;
    }
}

/* ==================== THEME SELECTOR SECTION ==================== */
.theme-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.1);
}

.theme-selector-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    animation: slideInUp 0.8s ease both;
}

.theme-section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.theme-section-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.theme-color-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.theme-color-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.theme-color-btn:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.theme-color-btn.active {
    border-color: white;
    transform: scale(1.3);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.5);
}

@media (max-width: 768px) {
    .theme-section {
        padding: 4rem 0;
    }

    .theme-section-title {
        font-size: 1.5rem;
    }

    .theme-color-buttons {
        gap: 1rem;
    }

    .theme-color-btn {
        width: 45px;
        height: 45px;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section {
    animation: fadeInUp 0.6s ease both;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.made-by {
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-primary);
    transform: translateX(4px);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 1.1rem;
}

.social-icon i {
    pointer-events: none;
}

.social-icon:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #0b0b0b;
    transform: translateY(-4px);
}

.social-icon.discord:hover {
    background: linear-gradient(90deg, #5865F2, #6a75ff);
    border-color: #5865F2;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ==================== RESPONSIVE: TABLET (1024px) ==================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-right {
        display: none;
    }

    .provide-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .provide-image {
        order: -1;
    }

    .provide-list {
        column-count: 1;
    }

    .bento-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: auto;
    }

    .feature-card.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==================== RESPONSIVE: TABLET/MOBILE (768px) ==================== */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-content {
        gap: 1rem;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        padding: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        gap: 1rem;
        width: 100vw;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-download {
        width: 100%;
    }

    .nav-toggle {
        display: block;
        cursor: pointer;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .typewriter-container {
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Features Mobile */
    .features {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        grid-auto-rows: auto;
    }

    .feature-card {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.05rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* What We Provide Mobile */
    .what-we-provide {
        padding: 3rem 0;
    }

    .provide-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .provide-list {
        column-count: 1;
    }

    /* Testimonials Mobile */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonial {
        min-width: 100%;
        padding: 1.25rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* ==================== RESPONSIVE: MOBILE (480px) ==================== */
@media (max-width: 480px) {
    /* Navbar Mobile Extra Small */
    .navbar {
        padding: 0.75rem 0;
    }

    .logo-img {
        height: 32px;
        width: 32px;
    }

    .logo-text {
        display: none;
    }

    .logo:hover {
        transform: scale(1.02);
    }

    .nav-menu {
        top: 55px;
        padding: 1rem;
    }

    /* Hero Mobile Extra Small */
    .hero {
        padding-top: 90px;
        padding-bottom: 30px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }

    .typewriter-container {
        height: 2rem;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .btn-primary {
        width: 100%;
        font-size: 0.9rem;
    }

    /* Features Mobile Extra Small */
    .section-header {
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 1.25rem;
        border-radius: 0.875rem;
    }

    .feature-icon {
        width: 2.75rem;
        height: 2.75rem;
        margin-bottom: 0.75rem;
    }

    .feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    .learn-more {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }

    .lightning-bolt,
    .spin-icon {
        font-size: 2rem;
    }

    /* What We Provide Mobile Extra Small */
    .provide-subtitle {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .provide-list {
        margin-bottom: 1rem;
    }

    .provide-note {
        font-size: 0.9rem;
    }

    /* Testimonials Mobile Extra Small */
    .testimonials {
        padding: 2rem 0;
    }

    .testimonial {
        padding: 1rem;
        font-size: 0.85rem;
    }

    /* Footer Mobile Extra Small */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-text {
        font-size: 0.85rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}

/* ==================== ACCESSIBILITY ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* ==================== UTILITY CLASSES ==================== */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-center {
    text-align: center;
}
