:root {
    /* Default Light Theme */
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --accent-color: #000000;
    /* Black */
    --accent-light: #333333;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --gradient-1: linear-gradient(45deg, #000000, #434343);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-border: 1px solid rgba(0, 0, 0, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-speed: 0.3s;
}

[data-theme="dark"] {
    --bg-color: #0f0f12;
    --card-bg: #1c1c24;
    --accent-color: #b22222;
    --accent-light: #ff4d4d;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-1: linear-gradient(45deg, #b22222, #ff4e50);
    --card-border: 1px solid rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
    /* Custom cursor */
}

/* Custom Cursor */
.mouse-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-light);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.mouse-cursor.hovered {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 77, 77, 0.2);
    border-color: transparent;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed);
}

.highlight {
    background: var(--gradient-1);
    /* Black gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Construction Banner */
.construction-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2000;
    letter-spacing: 0.5px;
}

.construction-banner i {
    color: #FFC107;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(15, 15, 18, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-light);
}

.btn-primary-sm {
    padding: 10px 20px;
    border: 1px solid var(--accent-light);
    border-radius: 30px;
    color: var(--accent-light) !important;
    transition: all var(--transition-speed);
}

.btn-primary-sm:hover {
    background: var(--accent-light);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

/* Hero Slider Section */
.hero-slider {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.slider-wrapper {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s;
    display: flex;
    align-items: center;
    padding-top: 80px;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.text-content {
    flex: 1;
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.slide.active .text-content {
    opacity: 1;
    transform: translateY(0);
}

.visual-content {
    flex: 1;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) rotate(-10deg);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s;
}

.slide.active .visual-content {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.app-icon-large {
    width: 250px;
    height: 250px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 0;
    /* Ensure no padding affects image */
    overflow: hidden;
    /* Clip image to radius */
}

.app-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Specific Theming */

/* Slide 1: Audio Shelf (Red/Orange) */
.slide:nth-child(1) .pill-badge {
    color: #FF5E62;
    background: rgba(255, 94, 98, 0.1);
    border-color: rgba(255, 94, 98, 0.3);
}

.slide:nth-child(1) .gradient-text {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide:nth-child(1) .btn-primary {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    box-shadow: 0 10px 30px rgba(255, 94, 98, 0.4);
}

.slide:nth-child(1) .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 94, 98, 0.6);
}

/* Slide 2: IntelliEat (Green) */
.slide:nth-child(2) .pill-badge {
    color: #27ae60;
    background: rgba(39, 174, 96, 0.1);
    border-color: rgba(39, 174, 96, 0.3);
}

.slide:nth-child(2) .gradient-text {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide:nth-child(2) .btn-primary {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.slide:nth-child(2) .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.6);
}

/* Slide 3: LevelUp (Purple/Gold) */
.slide:nth-child(3) .pill-badge {
    color: #4A00E0;
    background: rgba(74, 0, 224, 0.1);
    border-color: rgba(74, 0, 224, 0.3);
}

.slide:nth-child(3) .gradient-text {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide:nth-child(3) .btn-primary {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    box-shadow: 0 10px 30px rgba(74, 0, 224, 0.4);
}

.slide:nth-child(3) .btn-primary:hover {
    box-shadow: 0 15px 40px rgba(74, 0, 224, 0.6);
}

.app-icon-large::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 65px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}



/* Background Gradients for Slides */
.hero-bg-gradient {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.gradient-1 {
    background: #FF5E62;
}

.gradient-2 {
    background: #2F80ED;
}

.gradient-3 {
    background: #38ef7d;
}

.gradient-4 {
    background: #4A00E0;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
}

.prev-btn,
.next-btn {
    background: rgba(128, 128, 128, 0.1);
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--accent-light);
    color: white;
}

.dots-container {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--text-secondary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.5;
}

.dot.active {
    background: var(--accent-light);
    transform: scale(1.3);
    opacity: 1;
}

/* Animations reset */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

.pill-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--accent-light);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 77, 77, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(178, 34, 34, 0.4);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 34, 34, 0.6);
}

.btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
    border-radius: 50px;
    font-weight: 600;
    transition: all var(--transition-speed);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #b22222;
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #667eea;
    bottom: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Apps Section */
.apps-section {
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.app-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: var(--card-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-light);
}

.app-icon-wrapper {
    margin-bottom: 25px;
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.placeholder-icon-1 {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
}

.placeholder-icon-2 {
    background: linear-gradient(135deg, #56CCF2, #2F80ED);
}

.placeholder-icon-3 {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.app-details h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.app-category {
    font-size: 0.85rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.app-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-store {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all var(--transition-speed);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #333;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.1), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.app-card:hover .card-glow {
    opacity: 1;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-number,
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    margin-top: 10px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 120px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature i {
    color: var(--accent-light);
}

.about-image {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.abstract-visual {
    position: relative;
    width: 300px;
    height: 300px;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    opacity: 0.7;
}

.layer-1 {
    background: var(--gradient-1);
    transform: rotate(10deg);
    z-index: 1;
}

.layer-2 {
    background: #1c1c24;
    border: 2px solid var(--accent-light);
    transform: rotate(-5deg) scale(0.9);
    z-index: 2;
}

.layer-3 {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transform: rotate(5deg) scale(0.8);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 5rem;
    font-weight: 700;
    content: "FS";
}

.layer-3::after {
    content: "FS";
    font-family: var(--font-heading);
}


/* Footer */
footer {
    padding: 80px 0 40px;
    background: #0a0a0c;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin: 15px 0 25px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    color: var(--text-primary);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 5px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }

    .about-container {
        flex-direction: column-reverse;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .btn-primary-sm {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        gap: 30px;
    }
}


/* Nav Logo Styling */
.nav-logo {
    height: 45px;
    width: auto;
    display: block;
}

/* Ensure Logo container is centered */
.logo {
    display: flex;
    align-items: center;
}

/* Theme Toggle Removed */

/* Default Element Styles (Light Theme) */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-glow {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 0, 0, 0.05), transparent 40%);
}

.stats-section {
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.newsletter-form {
    background: rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    color: var(--text-primary);
}

.social-links a {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--accent-color);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

footer {
    background: #f1f1f1;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Dark Theme Overrides Removed */

/* Upcoming App Section */
.upcoming-section {
    padding: 80px 0;
    overflow: hidden;
}

.upcoming-card {
    background: var(--card-bg);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    border: var(--card-border);
    position: relative;
    overflow: hidden;
}

.upcoming-content {
    flex: 1;
}

.upcoming-features {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.upcoming-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-primary);
}

.upcoming-features i {
    color: #2F80ED;
    /* BlinkTask Blue */
}

.upcoming-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.upcoming-visual::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(47, 128, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Customer Reviews Section */
.reviews-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-color), #fff);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    border: var(--card-border);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.review-header {
    margin-bottom: 20px;
}

.stars {
    color: #FFC107;
    font-size: 1rem;
}

.review-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.review-author span {
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 900px) {
    .upcoming-card {
        flex-direction: column;
        padding: 40px;
        text-align: center;
    }

    .upcoming-features {
        justify-content: center;
    }
}

/* App Store Button Theming */
.apps-grid .app-card:nth-child(1) .btn-store {
    background: linear-gradient(135deg, #FF9966, #FF5E62);
    box-shadow: 0 10px 30px rgba(255, 94, 98, 0.3);
}

.apps-grid .app-card:nth-child(1) .btn-store:hover {
    box-shadow: 0 15px 40px rgba(255, 94, 98, 0.5);
    transform: translateY(-3px);
}

.apps-grid .app-card:nth-child(2) .btn-store {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.3);
}

.apps-grid .app-card:nth-child(2) .btn-store:hover {
    box-shadow: 0 15px 40px rgba(39, 174, 96, 0.5);
    transform: translateY(-3px);
}

.apps-grid .app-card:nth-child(3) .btn-store {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    box-shadow: 0 10px 30px rgba(74, 0, 224, 0.3);
}

.apps-grid .app-card:nth-child(3) .btn-store:hover {
    box-shadow: 0 15px 40px rgba(74, 0, 224, 0.5);
    transform: translateY(-3px);
}