/* Modern developer portfolio – demo-v1 style */

:root {
    --color-bg: #0a0e27;
    --color-surface: #141b3d;
    --color-accent: #00ff9f;
    --color-accent-2: #00d4ff;
    --color-text: #e4e9ff;
    --color-text-dim: #8b93b8;
    --font-display: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

/* Scroll progress indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-2));
    z-index: 1000;
    transform-origin: left;
    width: 0%;
}

/* Animated background grid (home only) */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 159, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 159, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

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

    100% {
        transform: translate(50px, 50px);
    }
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent), transparent);
    top: -200px;
    right: -200px;
    animation: float 15s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-accent-2), transparent);
    bottom: -150px;
    left: -150px;
    animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Header */
header {
    padding: 2rem 0;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.9;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--color-text-dim);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

/* Main */
main {
    min-height: 60vh;
    padding-bottom: 2rem;
}

/* Hero */
.hero {
    padding: 8rem 0 6rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 255, 159, 0.1);
    border: 1px solid rgba(0, 255, 159, 0.3);
    border-radius: 50px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 159, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(0, 255, 159, 0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 6s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero p {
    font-size: 1.25rem;
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

.btn {
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-display);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    color: var(--color-bg);
    box-shadow: 0 4px 20px rgba(0, 255, 159, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 159, 0.5);
    color: var(--color-bg);
}

.btn-secondary {
    background: var(--color-surface);
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    color: var(--color-text);
}

/* Apps section */
.apps-section {
    padding: 6rem 0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    color: var(--color-text-dim);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-card {
    --card-delay: 0s;
    background: rgba(20, 27, 61, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, border-color 0.3s ease;
    position: relative;
    animation: cardFadeIn 0.7s ease-out var(--card-delay) backwards;
    display: flex;
    flex-direction: column;
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(0, 255, 159, 0.06) 0%, rgba(0, 212, 255, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.app-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(0, 255, 159, 0.15);
    border-color: rgba(0, 255, 159, 0.2);
}

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

/* Screenshot strip at top – fills card width */
.app-card-preview {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    padding: 1.25rem 1.25rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.app-card-preview::-webkit-scrollbar {
    display: none;
}

.app-preview-img {
    /* 1242×2688 portrait (iPhone) – equal width so row fills card */
    flex: 1;
    min-width: 0;
    aspect-ratio: 1242 / 2688;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.app-card:hover .app-preview-img:first-child {
    transform: scale(1.02);
}

.app-card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.app-icon-wrap {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 255, 159, 0.25);
}

.app-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.app-card-title-wrap {
    min-width: 0;
}

.app-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}

.app-card .app-tagline {
    color: var(--color-accent);
    font-size: 0.875rem;
    margin: 0;
    font-weight: 500;
}

.app-card .app-description {
    color: var(--color-text-dim);
    font-size: 0.9375rem;
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.app-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.35rem 0.75rem;
    background: rgba(0, 255, 159, 0.08);
    border: 1px solid rgba(0, 255, 159, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    color: var(--color-accent);
    font-weight: 500;
}

.store-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
}

.store-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-display);
}

.store-btn-icon {
    font-size: 1rem;
    opacity: 0.9;
}

.store-btn-apple {
    background: linear-gradient(135deg, rgba(0, 255, 159, 0.2), rgba(0, 212, 255, 0.15));
    border: 1px solid rgba(0, 255, 159, 0.35);
    color: var(--color-accent);
}

.store-btn-apple:hover {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    border-color: transparent;
    color: var(--color-bg);
    box-shadow: 0 6px 20px rgba(0, 255, 159, 0.35);
}

.store-btn-google {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--color-text);
}

.store-btn-google:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-text);
}

/* Reviews section – horizontal scroll */
.reviews-section {
    padding: 6rem 0;
}

.reviews-section .section-header {
    margin-bottom: 2.5rem;
}

.reviews-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox: hide scrollbar */
    /* Show exactly 3 cards: 3 × 360px + 2 × gap */
    max-width: calc(3 * 360px + 2 * 1.5rem);
    margin-left: auto;
    margin-right: auto;
}

.reviews-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge: hide scrollbar */
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    width: max-content;
}

.review-card {
    flex: 0 0 auto;
    min-width: 320px;
    max-width: 360px;
    background: var(--color-surface);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    border-color: rgba(0, 255, 159, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.review-card-inner {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* App Store–style star rating (filled = yellow/orange, empty = gray) */
.review-stars {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.review-stars .star {
    display: inline-flex;
    line-height: 0;
}

.review-stars .star .icon {
    width: 1rem;
    height: 1rem;
    display: block;
}

.review-stars .star.filled .icon {
    fill: #f5a623;
}

.review-stars .star.empty .icon {
    fill: #4a5568;
}

.review-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.review-content {
    font-size: 0.9375rem;
    color: var(--color-text-dim);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.review-author {
    font-size: 0.875rem;
    color: var(--color-text-dim);
    margin: 0;
    font-style: italic;
}

.review-app {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-accent);
    text-decoration: none;
    margin-top: 0.25rem;
    transition: color 0.2s ease;
}

.review-app:hover {
    color: var(--color-accent-2);
}

.review-app-logo {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
}

.review-app-title {
    font-weight: 500;
}

.apps-empty {
    color: var(--color-text-dim);
    font-size: 1rem;
    text-align: center;
}

.apps-empty code {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    background: var(--color-surface);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

/* Footer */
footer {
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

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

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

/* Legal & error pages (same dark theme) */
.legal-page,
.error-page .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 0;
}

.legal-page h1,
.error-page h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.legal-page h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: 1rem;
    margin-bottom: 0.3rem;
    opacity: 0.8;
}

.legal-page a {
    color: var(--color-accent-2);
}

.legal-page .p-header {
    font-weight: 500;
    color: var(--color-text) !important;
}

.legal-page p,
.legal-page li,
.error-page p {
    color: var(--color-text-dim);
    margin-bottom: 0.75rem;
}

.legal-page ul {
    margin-left: 1.5rem;
}

.error-page {
    text-align: center;
    padding: 4rem 0;
}

.error-page h1 {
    font-size: 5rem;
    color: var(--color-text-dim);
    margin-bottom: 0.5rem;
}

.error-page h2 {
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-2));
    color: var(--color-bg);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 159, 0.3);
    color: var(--color-bg);
}

/* Contact Page */
.contact-page {
    padding: 4rem 0 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.contact-item p {
    color: var(--color-text-dim);
    margin: 0;
}

.contact-item a {
    color: var(--color-accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form-wrapper {
    background: rgba(20, 27, 61, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--color-text);
    font-weight: 600;
    font-family: var(--font-mono);
}

.form-group input,
.form-group textarea {
    background: rgba(10, 14, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(0, 255, 159, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-dim);
    opacity: 0.6;
}

.form-group textarea {
    min-height: 150px;
}

.form-message {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.form-success {
    background: rgba(0, 255, 159, 0.1);
    border: 1px solid rgba(0, 255, 159, 0.3);
}

.form-success h3 {
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.form-success p {
    color: var(--color-text);
    margin: 0;
}

.form-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
}

.form-error p {
    color: #ff6b6b;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

/* Support Page */
.support-page {
    padding: 4rem 0 6rem;
    max-width: 1000px;
    margin: 0 auto;
}

.support-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.app-support-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.app-support-icon {
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.app-support-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.app-subtitle {
    color: var(--color-text-dim);
    margin: 0;
}

.support-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 2rem;
}

.support-info h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.support-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-item h3 {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.support-item p {
    color: var(--color-text-dim);
    margin: 0.5rem 0;
}

.support-item a {
    color: var(--color-accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-item a:hover {
    color: var(--color-accent);
}

.support-apps-list {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-apps-list h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.support-apps-list>p {
    color: var(--color-text-dim);
    margin-bottom: 1.5rem;
}

.apps-list-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.app-support-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(20, 27, 61, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-support-link:hover {
    background: rgba(20, 27, 61, 0.8);
    border-color: var(--color-accent);
    transform: translateX(4px);
}

.app-support-link img {
    border-radius: 10px;
}

.app-support-link strong {
    display: block;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.app-support-link span {
    display: block;
    color: var(--color-text-dim);
    font-size: 0.9rem;
}

.support-form-wrapper {
    background: rgba(20, 27, 61, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    height: fit-content;
}

.support-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-footer h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.support-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.support-links a {
    color: var(--color-accent-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-links a:hover {
    color: var(--color-accent);
}

/* Support page – More Apps Grid */
.support-more-apps {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-more-apps h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

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

.app-support-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem;
    background: rgba(20, 27, 61, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-support-card:hover {
    background: rgba(20, 27, 61, 0.8);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 255, 159, 0.1);
}

.app-card-icon {
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.app-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.app-card-content strong {
    display: block;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Support page – FAQ */
.support-faq {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-faq h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq-item {
    background: rgba(20, 27, 61, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover,
.faq-item:focus-within {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    position: relative;
    color: var(--color-accent);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 12px;
    height: 2px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 12px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
}

.faq-answer[hidden] {
    display: none;
}

.faq-answer p {
    margin: 0;
    padding-top: 0.25rem;
    color: var(--color-text-dim);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .support-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .support-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .support-form-wrapper {
        padding: 1.5rem;
    }

    .support-links {
        flex-direction: column;
        gap: 1rem;
    }

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