/* ===========================
   PARCEL FRENZY - Website CSS
   Dark warehouse theme
   =========================== */

:root {
    /* Colors */
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a25;
    --accent-orange: #ff6b35;
    --accent-orange-dark: #e55a28;
    --accent-yellow: #ffc107;
    --accent-green: #4caf50;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6a6a7a;
    --border-color: #2a2a3a;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* Typography */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 60px;
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-2px);
}

.steam-icon {
    width: 20px;
    height: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-fast);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 24px 60px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0d0d12 0%, #12121a 50%, #0a0a0f 100%);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--accent-green);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    animation: pulse 2s infinite;
}

.hero-logo-img {
    max-width: 750px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(255, 107, 53, 0.15);
}

.hero-logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 40px rgba(255, 107, 53, 0.4));
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    letter-spacing: 0.05em;
    line-height: 0.9;
    color: var(--accent-orange);
    text-shadow: 0 0 60px rgba(255, 107, 53, 0.3);
    margin-bottom: 8px;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.hero-tagline {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 600px;
}

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

.hero-platform {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    position: relative;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--accent-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-orange);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--accent-orange);
}

.btn-outline:hover {
    background: var(--accent-orange);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.125rem;
}

.btn-steam {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff8c5a 100%);
}

.discount-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-green);
    color: white;
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.hero-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.platform-icons {
    display: flex;
    gap: 12px;
}

.platform {
    background: var(--bg-card);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: float 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
}

/* ===========================
   VIDEO SECTION
   =========================== */
.video-section {
    padding: 60px 0;
    background: var(--bg-card);
}

.video-wrapper {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-section {
    padding: var(--section-padding);
}

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

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

.about-text.highlight {
    color: var(--accent-orange);
    font-size: 1.25rem;
    padding: 20px;
    background: rgba(255, 107, 53, 0.1);
    border-left: 4px solid var(--accent-orange);
    border-radius: 0 8px 8px 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ===========================
   FEATURES SECTION
   =========================== */
.features-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

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

.feature-card {
    background: var(--bg-dark);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.feature-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   GAME MODES SECTION
   =========================== */
.modes-section {
    padding: var(--section-padding);
}

.modes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.mode-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.mode-card:hover {
    border-color: var(--accent-orange);
}

.mode-card.featured {
    border-color: var(--accent-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.15);
}

.mode-header {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mode-header.standard {
    background: linear-gradient(135deg, #2a3a4a 0%, #1a2530 100%);
}

.mode-header.haunted {
    background: linear-gradient(135deg, #4a2a4a 0%, #301a30 100%);
}

.mode-header.night {
    background: linear-gradient(135deg, #1a2a4a 0%, #101830 100%);
}

.mode-header.speed {
    background: linear-gradient(135deg, #4a3a1a 0%, #302510 100%);
}

.mode-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.mode-time {
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.3);
    padding: 4px 12px;
    border-radius: 4px;
}

.mode-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-orange);
    background: rgba(255, 107, 53, 0.2);
    padding: 4px 12px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.mode-vibe {
    font-size: 0.85rem;
    color: #88ccff;
}

.mode-card > p {
    padding: 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.seasonal-themes {
    text-align: center;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.seasonal-themes h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.themes-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.theme {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
}

.theme.halloween {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
}

.theme.christmas {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
}

.themes-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===========================
   SCREENSHOTS SECTION
   =========================== */
.screenshots-section {
    padding: var(--section-padding);
    background: var(--bg-card);
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.screenshot-item {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.screenshot-item:hover {
    border-color: var(--accent-orange);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.screenshots-note {
    text-align: center;
    padding: 30px;
    background: var(--bg-dark);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.presskit-screenshots {
    grid-template-columns: repeat(4, 1fr);
}

.presskit-screenshots .screenshot-item img {
    height: 150px;
}

.screenshots-note a {
    color: var(--accent-orange);
    font-weight: 600;
}

.screenshots-note a:hover {
    text-decoration: underline;
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(255, 107, 53, 0.05) 50%, var(--bg-dark) 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.125rem;
}

.sale-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-green);
}

.sale-badge {
    background: var(--accent-green);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    color: var(--accent-orange);
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 0.9rem;
}

.footer-brand .publisher {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

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

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

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

/* ===========================
   PRESSKIT PAGE STYLES
   =========================== */
.presskit-hero {
    padding: 140px 24px 80px;
    background: linear-gradient(180deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
    text-align: center;
}

.presskit-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.presskit-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.presskit-section {
    padding: 60px 0;
}

.presskit-section:nth-child(even) {
    background: var(--bg-card);
}

.presskit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.presskit-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.presskit-section:nth-child(even) .presskit-card {
    background: var(--bg-dark);
}

.presskit-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.presskit-card p,
.presskit-card li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.7;
}

.presskit-card ul {
    list-style: none;
    padding: 0;
}

.presskit-card li::before {
    content: "•";
    color: var(--accent-orange);
    margin-right: 10px;
}

.download-section {
    padding: 80px 0;
    text-align: center;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.download-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.download-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
}

.download-card h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.download-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.download-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-orange);
    font-weight: 600;
}

.download-card a:hover {
    text-decoration: underline;
}

/* Contact Table */
.contact-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-table tr {
    border-bottom: 1px solid var(--border-color);
}

.contact-table td {
    padding: 12px 0;
    color: var(--text-secondary);
}

.contact-table td:first-child {
    color: var(--text-primary);
    font-weight: 500;
    width: 140px;
}

.contact-table a {
    color: var(--accent-orange);
}

/* ===========================
   LOGO SHOWCASE (PRESSKIT)
   =========================== */
.logo-showcase {
    margin-bottom: 40px;
}

.logo-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.logo-preview-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all var(--transition-medium);
}

.logo-preview-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.logo-preview-image {
    position: relative;
    background: #0d0d12;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.logo-preview-image.vertical {
    min-height: 300px;
}

.logo-preview-image img {
    max-width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 8px;
}

.logo-preview-info {
    padding: 24px;
    text-align: center;
}

.logo-preview-info h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.logo-preview-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.logo-preview-info .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ===========================
   INTERACTIVE ANIMATIONS
   =========================== */

/* Floating boxes background animation */
.floating-boxes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-box {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 4px;
    animation: floatBox 20s linear infinite;
    opacity: 0;
}

@keyframes floatBox {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Glowing text effect */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 107, 53, 0.3);
}

/* Shake effect for hover */
.shake-hover:hover {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

/* Explosion pulse on CTA */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Card tilt effect */
.feature-card, .mode-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Screenshot lightbox overlay */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--accent-orange);
}

/* Counter animation */
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

/* Typing cursor effect */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--accent-orange);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Parallax scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    fill: var(--text-muted);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Ripple effect on clicks */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Gradient border animation */
.gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: 16px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-orange), #ff8c5a, var(--accent-yellow), var(--accent-orange));
    background-size: 400% 400%;
    border-radius: 18px;
    z-index: -1;
    animation: gradientMove 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s;
}

.gradient-border:hover::before {
    opacity: 1;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Fire/explosion particles */
.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-orange);
    border-radius: 50%;
    filter: blur(1px);
    animation: spark 1s ease-out forwards;
}

@keyframes spark {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateY(-100px);
    }
}

/* Enhanced hero glow */
.hero-logo-img {
    max-width: 750px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(255, 107, 53, 0.15),
        0 0 0 1px rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
}

.hero-logo-img:hover {
    transform: scale(1.02);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        0 0 150px rgba(255, 107, 53, 0.25),
        0 0 0 2px rgba(255, 107, 53, 0.3);
}

/* Easter egg styles */
.chaos-mode .floating-box {
    animation-duration: 5s !important;
    background: rgba(255, 107, 53, 0.3) !important;
}

.chaos-mode .hero-logo-img {
    animation: chaosShake 0.1s infinite;
}

@keyframes chaosShake {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-2px, 1px) rotate(-0.5deg); }
    50% { transform: translate(1px, -1px) rotate(0.5deg); }
    75% { transform: translate(-1px, 2px) rotate(-0.3deg); }
}

/* Loading animation for images */
.screenshot-item img {
    transition: all 0.4s ease;
}

.screenshot-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Stagger animation for cards */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.mode-card:nth-child(1) { animation-delay: 0.1s; }
.mode-card:nth-child(2) { animation-delay: 0.2s; }
.mode-card:nth-child(3) { animation-delay: 0.3s; }
.mode-card:nth-child(4) { animation-delay: 0.4s; }

/* Enhanced CTA section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulseCTA 4s ease-in-out infinite;
}

@keyframes pulseCTA {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

/* Tooltip styles */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 0.85rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
    z-index: 100;
    border: 1px solid var(--border-color);
}

[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 8px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-preview-grid {
        grid-template-columns: 1fr;
    }

    .logo-preview-image.vertical {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .presskit-screenshots {
        grid-template-columns: repeat(2, 1fr);
    }

    .screenshot-item img {
        height: 250px;
    }

    .presskit-screenshots .screenshot-item img {
        height: 180px;
    }

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

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

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

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

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

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .themes-row {
        flex-direction: column;
        gap: 12px;
    }
}
