/* Base Styles - MkSaaS Inspired Dark Theme */
:root {
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Accent Colors */
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-pink: #ec4899;
    --accent-cyan: #06b6d4;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--accent-purple) 0%, var(--accent-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-purple) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-blue) 100%);
    
    /* Border */
    --border-color: rgba(255, 255, 255, 0.1);
    --border-hover: rgba(255, 255, 255, 0.2);
    
    /* Shadow */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(139, 92, 246, 0.3);
    
    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    position: relative;
}

/* Animated Grid Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Gradient Orbs Background */
body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 10%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: orbsFloat 30s ease-in-out infinite;
}

@keyframes orbsFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--accent-blue);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-purple);
}

ul {
    list-style: none;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: -10px;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Header - Glassmorphism Style */
header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.tagline {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 400;
}

nav ul {
    display: flex;
    gap: 8px;
}

nav ul li a {
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--transition-fast);
}

nav ul li a:hover {
    color: var(--text-primary);
    background-color: var(--bg-card);
}

/* Language Switcher Button */
#lang-switcher {
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

#lang-switcher:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* App Store Style Cards */
.app-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.app-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.app-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.app-icon-small {
    width: 60px;
    height: 60px;
    border-radius: 13px;
    flex-shrink: 0;
}

.app-info {
    flex: 1;
    min-width: 0;
}

.app-info h3 {
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.app-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.app-rating .stars {
    color: #FFB800;
}

.app-screenshots {
    display: flex;
    gap: 10px;
    padding: 20px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.app-screenshots::-webkit-scrollbar {
    height: 6px;
}

.app-screenshots::-webkit-scrollbar-track {
    background: transparent;
}

.app-screenshots::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 3px;
}

.screenshot-item {
    flex-shrink: 0;
    width: 180px;
    position: relative;
}

.screenshot-frame {
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.screenshot-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screenshot-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.screenshot-title {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.3;
}

.app-card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-category-tag {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: 8px;
}

.app-download-btn {
    padding: 8px 20px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.app-download-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .app-card-header {
        flex-wrap: wrap;
    }
    
    .app-icon-small {
        width: 50px;
        height: 50px;
    }
    
    .app-info h3 {
        font-size: 1rem;
    }
    
    .app-rating {
        font-size: 0.75rem;
    }
    
    .screenshot-item {
        width: 140px;
    }
    
    .app-card-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .app-download-btn {
        width: 100%;
        text-align: center;
    }
}

/* Hero Section - Modern Dark Theme */
.hero {
    padding: 120px 0 80px;
    background-color: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-image {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.hero h2 {
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out;
}

.hero h2 br {
    display: block;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-secondary);
    line-height: 1.6;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin: 40px 0;
}

.app-button {
    display: inline-block;
    transition: transform 0.3s ease;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.app-button:hover {
    transform: scale(1.05);
    background: transparent;
    box-shadow: none;
}

.app-button img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.2));
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: 0;
    max-width: none;
}

.app-button:hover img {
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.25));
}

/* For the download section specifically */
.download .app-buttons {
    justify-content: center;
    margin: 40px auto;
}

.download .app-button {
    animation: pulse 2s infinite;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.download .app-button img {
    height: 60px;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.3));
    max-width: none;
}

.download .app-button:hover {
    animation: none;
    transform: scale(1.1);
    background: transparent;
    box-shadow: none;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.1), transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Game Modes Section */
.game-modes {
    padding: 80px 0;
    background-color: var(--accent-color);
}

.game-modes-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.game-mode {
    display: flex;
    align-items: center;
    gap: 40px;
}

.game-mode.reverse {
    flex-direction: row-reverse;
}

.game-mode-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.game-mode-content {
    flex: 1;
}

.game-mode-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.game-mode-content p {
    margin-bottom: 20px;
}

.game-mode-features {
    padding-left: 20px;
}

.game-mode-features li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.game-mode-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.benefit {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.benefit h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
}

.benefit p {
    color: var(--text-secondary);
}

/* Download Section */
.download {
    padding: 120px 0;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.download .section-title {
    color: var(--text-primary);
    font-size: 3rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download .section-title::after {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    height: 4px;
    width: 100px;
}

.download-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

.app-info {
    margin-top: 40px;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo p {
    color: var(--text-secondary);
}

.footer-links h3,
.footer-contact h3,
.footer-apps h3 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-weight: 600;
}

.footer-links ul li,
.footer-apps ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-apps ul li a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-apps ul li a:hover {
    color: var(--accent-blue);
}

.footer-contact a {
    color: var(--accent-blue);
}

.footer-contact a:hover {
    color: var(--accent-purple);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .app-buttons {
        justify-content: center;
    }

    .game-mode,
    .game-mode.reverse {
        flex-direction: column;
    }

    .game-mode-image {
        order: 1;
    }

    .game-mode-content {
        order: 2;
    }
    
    .download .section-title {
        font-size: 2.5rem;
    }
    
    .download-text {
        font-size: 1.8rem;
    }
    
    .app-button img {
        height: 100px;
    }
    
    .download .app-button img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    .logo {
        margin-bottom: 15px;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    nav ul li {
        margin: 0 15px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .download-text {
        font-size: 1.6rem;
    }
    
    .app-button img {
        height: 40px;
    }
    
    .download .app-button img {
        height: 50px;
    }
    
    .download .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2rem;
    }

    .feature-card,
    .benefit {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after,
    .footer-contact h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .download-text {
        font-size: 1.4rem;
    }
    
    .app-button img {
        height: 36px;
    }
    
    .download .app-button img {
        height: 45px;
    }
    
    .download .section-title {
        font-size: 2rem;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 144, 128, 0.4);
    }
    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(107, 144, 128, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(107, 144, 128, 0);
    }
}

/* Studio Homepage Styles */
.studio-hero {
    background: linear-gradient(135deg, var(--light-color) 0%, var(--accent-color) 100%);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 32px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.stat-item {
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    transition: var(--transition);
}

.stat-item:hover {
    background: var(--bg-card-hover);
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

/* About Studio Section */
.about-studio {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.95) 0%, rgba(25, 25, 40, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.about-studio::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text .lead {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.highlight-item {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(8px);
    border-left-color: var(--secondary-color);
    border-color: var(--border-hover);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.12);
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.highlight-item h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight-item p {
    color: var(--text-secondary);
}

/* Apps Showcase Section */
.apps-showcase {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 32px;
}

.app-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.app-card:hover::before {
    opacity: 1;
}

.app-card:hover {
    transform: translateY(-12px);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    background: var(--bg-card-hover);
}

.app-card-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
}

.app-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.app-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: var(--shadow-md);
}

.coming-soon-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gradient-secondary);
    color: var(--text-primary);
    padding: 12px 32px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-lg);
}

.app-card.coming-soon {
    opacity: 0.7;
}

.app-card.coming-soon:hover {
    opacity: 0.9;
}

.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-blue));
}

.app-card-content {
    padding: 28px;
}

.app-card-content h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.app-category {
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
    font-weight: 500;
}

.app-description {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.app-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background-color: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 16px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.feature-tag:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.app-card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    display: inline-block;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

/* Mission Section */
.mission {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-statement {
    text-align: center;
    margin-bottom: 60px;
}

.mission-statement h3 {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 16px;
    font-weight: 600;
}

.mission-statement p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.pillar {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.pillar:hover {
    transform: translateY(-6px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: var(--shadow-md);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    filter: grayscale(0.3);
    transition: var(--transition);
}

.pillar:hover .pillar-icon {
    filter: grayscale(0);
    transform: scale(1.1);
}

.pillar h4 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 600;
}

.pillar p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3, .contact-cta h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-method:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.contact-icon {
    font-size: 2.5rem;
}

.contact-method h4 {
    margin-bottom: 5px;
    color: var(--text-primary);
    font-weight: 500;
}

.contact-method a {
    color: var(--text-secondary);
}

.contact-cta {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.contact-cta:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15);
}

.contact-cta p {
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.footer-apps {
    display: flex;
    flex-direction: column;
}

.footer-apps h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-apps h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.footer-apps ul li {
    margin-bottom: 10px;
}

.footer-apps ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-apps ul li a:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

/* Responsive for Studio Pages */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apps-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .app-card-actions {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .mission-pillars {
        grid-template-columns: 1fr;
    }
} 