/* HellPlate Landing Page Styles */
/* Matches Flutter app: dark theme, orange accents, Space Mono font */

@import url('https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg-dark: #121212;
    --bg-card: #1a1a1a;
    --primary-orange: #FF8C00;
    --primary-orange-light: #FFA500;
    --text-white: #ffffff;
    --text-gray: rgba(255, 255, 255, 0.7);
    --receipt-cream: #FFFDF5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Mono', monospace;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

/* Hero Section */
.hero {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.logo {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(255, 140, 0, 0.3));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
}

.title .fire {
    color: var(--primary-orange);
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 450px;
}

.tagline strong {
    color: var(--primary-orange);
}

/* Receipt-style card */
.receipt-card {
    background: var(--receipt-cream);
    color: #000;
    padding: 2rem;
    border-radius: 4px;
    margin: 2rem 0;
    max-width: 350px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
}

.receipt-card h3 {
    font-size: 1rem;
    letter-spacing: 3px;
    color: #666;
    margin-bottom: 1rem;
}

.receipt-card .verdict {
    font-size: 1.25rem;
    font-weight: 700;
    color: #c00;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--primary-orange);
    color: var(--text-white);
    padding: 0.875rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.store-button:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.4);
}

.store-button svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.store-button .store-name {
    font-weight: 700;
}

.store-button .store-label {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.store-button:hover .store-label {
    color: rgba(255, 255, 255, 0.8);
}

.store-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Footer */
footer {
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

footer a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--primary-orange-light);
    text-decoration: underline;
}

/* Privacy & Support Content Pages */
.privacy-content,
.support-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.privacy-content h2,
.support-content h2 {
    color: var(--primary-orange);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.privacy-content h3,
.support-content h3 {
    color: var(--primary-orange-light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.privacy-content p,
.support-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.privacy-content ul,
.support-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li,
.support-content li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.privacy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.privacy-content th,
.privacy-content td {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.75rem;
    text-align: left;
}

.privacy-content th {
    background: var(--bg-card);
    color: var(--primary-orange);
}

.privacy-content td {
    color: var(--text-gray);
}

.last-updated {
    text-align: center;
    margin-bottom: 2rem;
}

.content-section {
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 600px) {
    main {
        padding: 1rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }

    .hero {
        gap: 1rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .receipt-card {
        padding: 1rem 1.25rem;
        margin: 1rem 0;
    }

    .receipt-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .receipt-card .verdict {
        font-size: 1rem;
    }

    .store-buttons {
        flex-direction: column;
        align-items: stretch;
        margin-top: 0.5rem;
    }

    .store-button {
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    footer {
        padding: 1rem;
    }

    footer p {
        font-size: 0.75rem;
    }
}