:root {
    --primary: #00D4FF;
    --primary-rgb: 0, 212, 255;
    --accent: #7C3AED;
    --success: #00F5A0;
    --warning: #FCD34D;

    --bg-primary: #0A0A0F;
    --bg-secondary: #111118;
    --bg-tertiary: #1A1A24;
    --bg-card: #151520;

    --text-primary: #FFFFFF;
    --text-secondary: #B4B4B8;
    --text-muted: #6B6B7D;

    --border: #2A2A35;
    --border-light: #353545;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(var(--primary-rgb), 0.3);

    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-card: linear-gradient(145deg, var(--bg-card) 0%, #1C1C28 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Pattern */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%,
            rgba(124, 58, 237, 0.1) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 20%,
            rgba(0, 212, 255, 0.1) 0%,
            transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Common Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 65px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    filter: brightness(1.2);
    /* Backwards compatibility for policy pages that might expect smaller logos or similar */
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

.btn-header {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-header:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at 30% 40%, rgba(var(--primary-rgb), 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 40%;
    height: 120%;
    background: linear-gradient(45deg, transparent 0%, rgba(var(--primary-rgb), 0.05) 50%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .gradient-text,
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.1);
}

/* Hero Visual & Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.mockup-glow {
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.4) 0%, transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.mockup-img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

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

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

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-glow);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--bg-primary);
    text-align: center;
}

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

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.store-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    display: block;
    width: 180px;
    height: 60px;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.store-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.store-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer (Common Styles) */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
}

/* For main pages with complex footer */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

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

/* Policy Page Specific Styles */
.policy-container {
    max-width: 900px;
    margin: 120px auto 80px auto;
    background: rgba(21, 21, 32, 0.7);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 64px;
    border: 1px solid var(--border);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Glow effect for policy container */
.policy-container::before {
    content: "";
    position: absolute;
    inset: -1px;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.15) 0%, transparent 40%);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

.policy-container h1 {
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #FFFFFF 0%, #B4B4B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-container>p {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 6px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 48px;
    position: relative;
    padding-left: 24px;
    border-left: 2px solid transparent;
    /* Placeholder for hover effect or active state */
}

/* Connect the line elegantly */
.policy-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    /* Match h2 line-height offset */
    bottom: 0;
    width: 2px;
    background: var(--border);
    border-radius: 2px;
}

.policy-section:hover::before {
    background: var(--gradient-primary);
}

.policy-section h2 {
    color: var(--text-primary);
    font-size: 1.95rem;
    font-weight: 700;
    margin: 0 0 28px 0;
    display: flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.01em;
}

.policy-section h3 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 32px 0 16px 0;
    letter-spacing: -0.01em;
}

.policy-section p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Policy Lists */
.policy-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
}

.policy-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.policy-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1.5;
}

.policy-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Premium Box Styling */
.premium-box {
    background: linear-gradient(145deg, rgba(21, 21, 32, 0.95) 0%, rgba(30, 30, 40, 0.95) 100%);
    border: 2px solid rgba(0, 245, 160, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 245, 160, 0.1);
}

.premium-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--success), transparent);
}

.premium-box h4 {
    color: var(--success);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premium-box h4::before {
    content: '★';
    font-size: 1.2em;
}

.premium-box .policy-list li::before {
    color: var(--success);
}

/* Contact Grid Enhancements */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.contact-card h4 {
    color: var(--text-primary);
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-card p {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 64px;
    padding: 14px 28px;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-link:hover {
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.15);
}

/* Support Page Styles */
.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.support-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00D4FF 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.support-subtitle {
    font-size: 18px;
    color: #B4B4B8;
    margin-bottom: 40px;
}

.contact-info {
    background: #151520;
    border: 1px solid #2A2A35;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-details h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 600;
    color: #FFFFFF;
}

.faq-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #FFFFFF;
}

.faq-item {
    background: #151520;
    border: 1px solid #2A2A35;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.1);
}

.faq-answer {
    padding: 0 20px 20px 20px;
    color: #B4B4B8;
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotated {
    transform: rotate(180deg);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.action-card {
    background: #151520;
    border: 1px solid #2A2A35;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    /* Ensure anchor tag action-card behaves like a block */
    text-decoration: none;
    /* Remove default link styles */
}

.action-card:hover {
    border-color: #00D4FF;
    transform: translateY(-2px);
}

.action-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.action-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.action-description {
    font-size: 14px;
    color: #B4B4B8;
    line-height: 1.4;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 1001;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

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

.cookie-btn-decline:hover {
    border-color: var(--text-secondary);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

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

    .header-content {
        padding: 0 20px;
    }

    .header-nav {
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-nav {
        display: none;
    }

    .header-content {
        padding: 0 16px;
    }

    .hero {
        padding: 120px 0 80px;
    }

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

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

    .features {
        padding: 80px 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .feature-description {
        font-size: 13px;
        line-height: 1.4;
    }

    .section-title,
    .cta-title {
        font-size: 36px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
        padding: 0 16px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-section a {
        font-size: 14px;
        margin-bottom: 6px;
    }

    /* Policy responsive */
    .policy-container {
        margin: 100px 16px 40px 16px;
        padding: 32px 24px;
        border-radius: 20px;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin: 40px 0 20px 0;
    }

    /* Support responsive */
    .support-container {
        padding: 20px 16px;
    }

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

    .quick-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 25px;
    }

    .footer-section h4 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .footer-section a {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .container {
        margin: 100px 12px 20px 12px;
        padding: 24px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .feature-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .feature-description {
        font-size: 11px;
        line-height: 1.3;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer {
        padding: 30px 0 15px;
    }

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

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-brand p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-section h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-section a {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .footer-bottom {
        padding-top: 20px;
        font-size: 12px;
    }

    .policy-container h1 {
        font-size: 1.8rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
    }

    /* Support adjustments */
    .contact-info {
        padding: 24px 16px;
    }
}

/* Smooth animations for reduced motion users */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Accessibility */
*:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

::selection {
    background: rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(0, 212, 255, 0.2);
    color: var(--text-primary);
}

/* Delete Account Page Styles */
:root {
    --gradient-warning: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    --gradient-danger: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    --danger: #EF4444;
}

.main {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.page-title .gradient-text {
    background: linear-gradient(135deg, #FF6B6B 0%, #EE5A6F 50%, #C44569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Warning Card */
.warning-card {
    background: var(--gradient-card);
    border: 1px solid #4B2D20;
    border-radius: 16px;
    padding: 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.warning-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-warning);
}

.warning-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--warning);
    margin-bottom: 16px;
}

.warning-list {
    list-style: none;
    padding: 0;
}

.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0;
    color: var(--text-secondary);
}

.warning-list li::before {
    content: '•';
    color: var(--danger);
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

/* Method Cards */
.methods-grid {
    display: grid;
    gap: 32px;
    margin: 60px 0;
}

.method-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.method-card:hover::before {
    transform: scaleX(1);
}

.method-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.method-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.method-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.method-steps li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 40px;
    margin: 16px 0;
    color: var(--text-secondary);
}

.method-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

/* Email Form */
.email-form {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.email-button {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.email-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Info Cards */
.info-card {
    background: var(--gradient-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin: 32px 0;
}

.info-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0;
    color: var(--text-secondary);
}

.info-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    flex-shrink: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

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

.contact-item strong {
    color: var(--text-primary);
}

/* Responsive for Delete Account Page */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .method-card,
    .info-card {
        padding: 24px;
    }

    .main {
        padding: 120px 0 60px;
    }
}