/*
========================================
  VARIABLES
========================================
*/

:root {
    /* Colors */
    --primary-color: #007AFF;
    --primary-color-dark: #0056b3;
    --dark-color: #1d1d1f;
    --light-color: #ffffff;
    --text-color: #333;
    --text-color-secondary: #515154;
    --text-color-tertiary: #86868b;
    --bg-color: #fafafa;
    --bg-color-secondary: #f5f5f7;
    --border-color: #e5e5e7;

    /* Spacing */
    --spacing-xs: 5px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 50px;
    --spacing-xl: 60px;
    --spacing-xxl: 80px;

    /* Borders */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/*
========================================
  BASE & RESET
========================================
*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    padding-top: var(--spacing-xl);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/*
========================================
  LAYOUT
========================================
*/

/* Header */
header {
    background: rgba(255, 255, 255, 0.70);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--spacing-xl);
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

.logo-image {
    height: 18px;
    width: auto;
    margin-top: 6px;
    transition: opacity 0.3s ease;
}

.logo-image:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.discord-link:hover {
    background-color: rgba(88, 101, 242, 0.1);
    color: #5865F2 !important;
}

.discord-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.discord-link:hover svg {
    transform: scale(1.1);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 50px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--bg-color-secondary);
}

.footer-section p {
    color: var(--text-color-tertiary);
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section ul li a {
    color: var(--text-color-tertiary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #4242457e;
    padding-top: var(--spacing-md);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-color-tertiary);
    font-size: 14px;
}

/*
========================================
  PAGE-SPECIFIC STYLES
========================================
*/

/* Modern Hero Section */
.hero-modern {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(40deg, rgb(108, 0, 162), rgb(0, 17, 82));
    overflow: hidden;
    padding: 100px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Animated Mesh Gradient Elements */
.gradients-container {
    position: absolute;
    width: 100%;
    height: 100%;
    filter: blur(40px);
    z-index: 1;
}

.gradient-element {
    position: absolute;
    width: 80%;
    height: 80%;
    top: calc(50% - 40%);
    left: calc(50% - 40%);
}

.g1 {
    background: radial-gradient(circle at center, rgba(59, 130, 246, 1) 0, rgba(59, 130, 246, 0) 50%) no-repeat;
    transform-origin: center center;
    animation: moveVertical 30s ease infinite;
    opacity: 1;
}

.g2 {
    background: radial-gradient(circle at center, rgba(147, 51, 234, 0.8) 0, rgba(147, 51, 234, 0) 50%) no-repeat;
    transform-origin: calc(50% - 400px);
    animation: moveInCircle 20s reverse infinite;
    opacity: 1;
}

.g3 {
    background: radial-gradient(circle at center, rgba(236, 72, 153, 0.8) 0, rgba(236, 72, 153, 0) 50%) no-repeat;
    transform-origin: calc(50% + 400px);
    animation: moveInCircle 40s linear infinite;
    opacity: 1;
}

.g4 {
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.8) 0, rgba(239, 68, 68, 0) 50%) no-repeat;
    transform-origin: calc(50% - 200px);
    animation: moveHorizontal 40s ease infinite;
    opacity: 0.7;
}

.g5 {
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.8) 0, rgba(99, 102, 241, 0) 50%) no-repeat;
    transform-origin: calc(50% + 200px);
    animation: moveInCircle 20s ease infinite;
    opacity: 1;
}

.g6 {
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.9) 0, rgba(168, 85, 247, 0) 50%) no-repeat;
    transform-origin: calc(50% + 350px);
    animation: moveVertical 25s ease infinite;
    opacity: 0.8;
    left: calc(50% + 0%);
    top: calc(50%);
}


/* Keyframe Animations for Mesh Gradient */
@keyframes moveHorizontal {
    0% {
        transform: translateX(-50%) translateY(-10%);
    }
    50% {
        transform: translateX(50%) translateY(10%);
    }
    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

@keyframes moveInCircle {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes moveVertical {
    0% {
        transform: translateY(-50%);
    }
    50% {
        transform: translateY(50%);
    }
    100% {
        transform: translateY(-50%);
    }
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content-centered {
    text-align: center;
    max-width: 600px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--light-color);
    margin-bottom: var(--spacing-lg);
}

.gradient-text {
    background: #ffe600;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 24px;
    line-height: 1.6;
    color: var(--light-color);
    margin-bottom: var(--spacing-xl);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
    width: 100%;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #5856d6);
    color: var(--light-color);
    padding: 16px 32px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    /* animation: glow 2s ease-in-out infinite alternate; */
    z-index: 10;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    padding: 16px 32px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark-color);
    color: var(--light-color);
    border-color: var(--dark-color);
    transform: translateY(-2px);
}

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

@keyframes glow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

/* Featured App Section */
.featured-app-section {
    padding: 100px 0;
    background: var(--bg-color);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-color-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.app-showcase-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    padding: 0;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.app-media {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    height: 100%;
}

.media-container {
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

.app-video-modern {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.media-container:hover .media-overlay {
    opacity: 1;
}

.play-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-button:hover {
    background: var(--light-color);
    transform: scale(1.1);
}

.play-button svg {
    margin-left: 2px;
    color: var(--dark-color);
}

.app-details {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
    background: white;
}

.app-header-modern {
    display: flex;
    gap: var(--spacing-sm);
}

.app-icon-modern {
    flex-shrink: 0;
}

.app-icon-modern img {
    width: 64px;
    height: 64px;
}

.app-info {}

.app-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
}

.app-category {
    font-size: 16px;
    color: var(--text-color-tertiary);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.app-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.stars {
    color: #FFD700;
    font-size: 16px;
}

.rating-text {
    font-size: 14px;
    color: var(--text-color-secondary);
    font-weight: 500;
}

.app-description-modern {
    margin-bottom: var(--spacing-md);
    margin-top: 30px;
}

.app-description-modern p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color-secondary);
    margin: 0;
}

.app-features-modern {
    margin-bottom: var(--spacing-lg);
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(108, 0, 162, 0.03), rgba(0, 17, 82, 0.03));
    border: 1px solid rgba(108, 0, 162, 0.08);
    border-radius: 8px;
    transition: all 0.2s ease;
    min-height: 44px;
    box-sizing: border-box;
}

.feature-item:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, rgba(108, 0, 162, 0.06), rgba(0, 17, 82, 0.06));
    border-color: rgba(108, 0, 162, 0.15);
    box-shadow: 0 2px 8px rgba(108, 0, 162, 0.1);
}

.feature-icon {
    font-size: 16px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 0, 162, 0.12), rgba(0, 17, 82, 0.12));
    border-radius: 4px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.3;
    flex: 1;
}

.app-actions-modern {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.download-button {
    transition: transform 0.3s ease;
    padding-top: 6px;
}

.download-button:hover {
    transform: translateY(-2px);
}

.download-button img {
    height: 45px;
    width: auto;
}

.learn-more-button {
    background: linear-gradient(45deg, var(--primary-color), #5856d6);
    color: var(--light-color);
    padding: 9px 20px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    z-index: 10;
}

.learn-more-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}





/* Stats Section */
.stats-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-color);
    color: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-md);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--light-color);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 16px;
    color: var(--text-color-tertiary);
    font-weight: 500;
}

/* Simple Fluent Hero Section */
.fluent-hero-modern {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(40deg, rgb(108, 0, 162), rgb(0, 17, 82));
    overflow: hidden;
    padding: 50px 0 80px 0;
}

.fluent-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
    text-align: center;
    gap: 40px;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.app-icon-centered {
    width: 120px;
    height: 120px;
}

.app-title-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.app-name-centered {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.app-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.hero-text-section {
    max-width: 520px;
    text-align: center;
}

.app-info {
    align-items: center;
    gap: 20px;
    margin-top: 3px;
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.app-details h1.app-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1;
}

.app-tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0 0;
    font-weight: 500;
}

.hero-headline {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.hero-features {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta .download-btn {
    display: inline-block;
    transition: transform 0.2s ease;
}

.hero-cta .download-btn:hover {
    transform: translateY(-2px);
}

.hero-cta .download-btn img {
    height: 60px;
    width: auto;
}

.hero-visual-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150%;
    max-width: 900px;
}

.fluent-page-download-btn {
    margin-top: -40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.app-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
}

.app-preview-homepage {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.preview-video {
    width: 150%;
    max-width: 900px;
    aspect-ratio: 16/9;
    display: block;
    object-fit: cover;
    margin: 0 auto;
}

/* Features Overview Section */
.features-overview {
    padding: 90px 0 100px 0;
    background: white;
}

.features-overview .section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    margin-bottom: 15px;
}

.features-overview .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Simple CTA Section */
.simple-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    text-align: center;
}

.simple-cta .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.simple-cta h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
}

.simple-cta p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.simple-cta .download-btn {
    display: inline-block;
    margin-bottom: 30px;
    transition: transform 0.2s ease;
}

.simple-cta .download-btn:hover {
    transform: translateY(-2px);
}

.simple-cta .download-btn.large img {
    height: 70px;
    width: auto;
}

.simple-cta .cta-note {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.cta-note-hero {
    margin-top: -10px;
    margin-bottom: 20px;
    color: #ffffff87;
}

/* Responsive Design for Fluent Page */
@media (max-width: 768px) {
    .fluent-hero-modern {
        padding: 80px 0;
        min-height: 70vh;
    }
    

    
    .hero-text-section {
        max-width: 100%;
        text-align: center;
    }
    
    .app-header {
        margin-top: 0;
        flex-direction: column;
        gap: 20px;
    }
    
    .app-icon-centered {
        width: 100px;
        height: 100px;
    }
    
    .app-name-centered {
        font-size: 2.5rem;
    }
    
    .app-title-section {
        text-align: center;
    }
    
    .hero-headline {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .features-overview {
        padding: 80px 0;
    }
    
    .features-overview .section-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-content {
        padding: 25px;
    }
    
    .simple-cta {
        padding: 80px 0;
    }
    
    .simple-cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .fluent-hero-modern {
        padding: 60px 0;
    }
    
    .app-header {
        margin-top: 0;
        margin-bottom: 30px;
        flex-direction: column;
        gap: 15px;
    }
    
    .app-icon-centered {
        width: 80px;
        height: 80px;
    }
    
    .app-name-centered {
        font-size: 2rem;
    }
    
    .app-subheading {
        font-size: 1rem;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .features-overview .section-title {
        font-size: 2rem;
    }
    
    .features-overview .section-subtitle {
        font-size: 1rem;
    }
    
    .feature-content {
        padding: 20px;
    }
    
    .feature-content h3 {
        font-size: 1.3rem;
    }
    
    .simple-cta h2 {
        font-size: 2rem;
    }
    
    .simple-cta p {
        font-size: 1rem;
    }
    
    .simple-cta .download-btn.large img {
        height: 60px;
    }
    
    .fluent-page-download-btn {
        flex-direction: column;
        gap: 15px;
    }
    
    .app-store-rating {
        min-width: 120px;
        padding: 6px 12px;
        height: 48px;
    }
    
    .rating-content {
        gap: 6px;
    }
    
    .rating-laurel {
        width: 16px;
        height: 16px;
    }
    
    .rating-stars {
        font-size: 10px;
    }
    
    .rating-score {
        font-size: 12px;
    }
    
    .rating-label {
        font-size: 8px;
    }
}

/* Legacy Fluent Page Styles */
.app-title-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.app-icon-large {
    width: 128px;
    height: 128px;
    margin-bottom: var(--spacing-md);
}

.app-title-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.app-title-header .app-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-color-tertiary);
}

.showcase-section {
    padding: var(--spacing-xl) 0;
}

.showcase-hero {
    margin-bottom: var(--spacing-xl);
}

.showcase-hero video {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.feature-item {
    background: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-item img {
    width: 100%;
    border-radius: var(--border-radius-sm);
    margin-bottom: var(--spacing-md);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.download-btn-link img, .learn-more-btn {
    height: 50px;
    width: auto;
}

.download-btn-link:hover {
    transform: translateY(-1px);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.app-description-section {
    padding-right: 0;
}

.app-gallery h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.app-video {
    margin-bottom: 30px;
}

.app-video video {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.download-btn {
    /* background: var(--primary-color); */
    color: var(--light-color);
    border: none;
    padding: 12px 24px;
    /* border-radius: var(--border-radius-sm); */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    /* background: var(--primary-color-dark); */
    transform: translateY(-1px);
}

.learn-more-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

/* About Section */
.about-section {
    padding: var(--spacing-xxl) 0;
    background: var(--bg-color-secondary);
}

/* Legal & Support Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 60px;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.legal-content h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: #1d1d1f;
}

.legal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: #1d1d1f;
}

.legal-content p {
    margin-bottom: 15px;
    color: #515154;
}

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 8px;
    color: #515154;
}

.last-updated {
    font-style: italic;
    color: #86868b;
    margin-bottom: 30px;
}

.highlight-box {
    background: #f5f5f7;
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.about-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.about-section p {
    text-align: center;
    font-size: 18px;
    color: var(--text-color-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }

    /* Modern Hero Responsive */
    .hero-modern {
        padding: 100px 0;
        min-height: 50vh;
    }

    .hero-content-centered {
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 20px;
    }

    .floating-shapes {
        display: none;
    }

    /* Featured App Section Responsive */
    .featured-app-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .app-showcase-modern {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        /* padding: var(--spacing-sm); */
        max-width: none;
        margin: 0 var(--spacing-sm);
    }

    .app-media {
        order: -1;
        align-self: stretch;
    }

    .media-container {
        aspect-ratio: 16/9;
    }

    .app-name {
        font-size: 24px;
    }

    .app-header-modern {
        flex-direction: row;
        gap: var(--spacing-sm);
        text-align: left;
        align-items: center;
    }

    .app-actions-modern {
        justify-content: flex-start;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    /* Stats Section Responsive */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .stat-number {
        font-size: 32px;
    }

    /* Legacy styles for existing elements */
    .nav-menu {
        gap: 20px;
    }
    
    .hero h2 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .app-card {
        padding: 30px 20px;
    }
    
    .app-header {
        margin-top: 0;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .app-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .app-description-section {
        padding-right: 0;
        text-align: center;
    }
    
    .app-actions {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .apps-section, .about-section, .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section h2 {
        font-size: 28px;
    }
    
    .image-slider {
        padding: 0 60px;
    }
    
    .slide {
        min-width: 250px;
        margin-right: 15px;
    }
    
    .slide img {
        height: 150px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .modal-content {
        padding: 20px 80px;
    }
    
    .modal-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .modal-prev {
        left: 10px;
    }
    
    .modal-next {
        right: 10px;
    }
}

/*
========================================
  BLOG STYLES
========================================
*/

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
    color: var(--light-color);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.blog-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Header Section */
.blog-header {
    padding: 64px 0;
}

.blog-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0;
    color: #1d1d1f;
    margin: 0;
}

.subscribe-button {
    background: linear-gradient(45deg, var(--primary-color), #5856d6);
    color: var(--light-color);
    padding: 9px 20px;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 122, 255, 0.3);
    z-index: 10;
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
}

/* Blog Posts Section */
.blog-posts {
    padding: 0 0 80px;
    background: var(--bg-color);
}

.posts-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
    margin-top: -30px;
}

/* Individual Blog Post */
.blog-post {
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

/* Post Header */
.post-header {
    margin-bottom: 30px;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.post-date {
    color: var(--text-color-secondary);
    font-size: 14px;
    font-weight: 500;
}

.post-category {
    background: var(--primary-color);
    color: var(--light-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.3;
    margin: 0;
}

/* Post Content */
.post-content {
    color: var(--text-color);
}

.post-excerpt {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color-secondary);
    margin-bottom: 30px;
}

/* Post Image */
.post-image {
    margin: 30px 0;
    width: 100%;
}

.release-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    display: block;
}

/* Changelog Styles */
.changelog {
    margin-top: 30px;
}

.changelog h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.changelog-section {
    margin-bottom: 30px;
}

.changelog-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.changelog-section h4:before {
    content: "";
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    margin-right: 12px;
    border-radius: 2px;
}

.changelog-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.changelog-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.changelog-list li:last-child {
    border-bottom: none;
}

.changelog-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 12px;
}

.changelog-list li strong {
    color: var(--dark-color);
    font-weight: 600;
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 36px;
    }
    
    .blog-hero-content p {
        font-size: 18px;
    }
    
    .blog-header {
        padding: 20px 0;
    }
    
    .blog-header-content {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        padding: 0 20px;
    }
    
    .blog-title {
        font-size: 28px;
    }
    
    .subscribe-button {
        align-self: stretch;
        text-align: center;
    }
    
    .blog-posts {
        padding: 40px 0 60px;
    }
    
    .posts-grid {
        gap: 40px;
    }
    
    .blog-post {
        padding: 30px 20px;
    }
    
    .post-title {
        font-size: 28px;
    }
    
    .post-excerpt {
        font-size: 16px;
    }
    
    .changelog h3 {
        font-size: 20px;
    }
    
    .changelog-section h4 {
        font-size: 16px;
    }
}

/*
========================================
  USER REVIEWS SECTION
========================================
*/

/* App Store Rating Styles */
.app-store-rating {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
    border: none;
    min-width: 140px;
    text-align: center;
    height: 54px;
    box-sizing: border-box;
    margin-top: -6px;
    margin-left: 25px;
}

.app-store-rating:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 122, 255, 0.4);
    background: linear-gradient(135deg, #0051D5 0%, #003D99 100%);
}

.rating-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 100%;
}

.rating-laurel {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.rating-stars {
    display: flex;
    gap: 1px;
    font-size: 12px;
    color: #FFD700;
}

.star {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.rating-score {
    font-size: 14px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.rating-label {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

.user-reviews {
    padding: 90px 0 100px 0;
    background: #f8fafc;
}

.user-reviews .section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    color: #0f172a;
    margin-bottom: 15px;
}

.user-reviews .section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #64748b;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.review-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.review-content {
    flex: 1;
    margin-bottom: 20px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
    font-style: italic;
}

.review-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
}

.author-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.review-source {
    font-size: 0.9rem;
    color: #007AFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.review-source:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .user-reviews {
        padding: 80px 0;
    }
    
    .user-reviews .section-title {
        font-size: 2.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .review-card {
        padding: 25px;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .user-reviews .section-title {
        font-size: 2rem;
    }
    
    .user-reviews .section-subtitle {
        font-size: 1rem;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .author-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .author-details {
        gap: 10px;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
    }
}