/* ==========================================================================
   PATI FUN GAMES - CSS DESIGN SYSTEM
   Theme: Warm Light Mode (Inspired by Logo Background #F8F6F2)
   ========================================================================== */

/* --- Custom Properties / Theme Tokens --- */
:root {
    --bg-primary: #F8F6F2;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f1ede6;
    
    --text-primary: #1C162E;
    --text-secondary: #5E5975;
    --text-light: #8E89A3;
    
    /* Colors directly from logo paths */
    --logo-violet: #46399A;
    --logo-orange: #FE9441;
    --logo-coral: #FD6C56;
    --logo-pink: #CF0F6E;
    --logo-pink-dark: #A91274;
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--logo-orange), var(--logo-coral));
    --grad-violet: linear-gradient(135deg, var(--logo-violet), var(--logo-pink));
    --grad-soft: linear-gradient(135deg, #ffffff, #FAF9F6);
    
    /* Borders & Shadows */
    --border-light: 1px solid rgba(70, 57, 154, 0.08);
    --border-focus: 2px solid var(--logo-violet);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 4px 12px rgba(70, 57, 154, 0.03);
    --shadow-md: 0 10px 30px rgba(70, 57, 154, 0.06);
    --shadow-lg: 0 20px 50px rgba(70, 57, 154, 0.1);
    --shadow-glow-orange: 0 15px 40px rgba(254, 148, 65, 0.2);
    --shadow-glow-violet: 0 15px 40px rgba(70, 57, 154, 0.15);
    
    /* Layout */
    --max-width: 1200px;
    --max-width-sm: 760px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* --- Layout Containers --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-sm {
    width: 100%;
    max-width: var(--max-width-sm);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    gap: 0.5rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: var(--bg-secondary);
    box-shadow: 0 4px 15px rgba(254, 148, 65, 0.25);
}

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

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--logo-violet);
    border: 1px solid rgba(70, 57, 154, 0.15);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    border-color: var(--logo-violet);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--logo-violet);
    border: 2px solid var(--logo-violet);
}

.btn-outline:hover {
    background: var(--logo-violet);
    color: var(--bg-secondary);
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.875rem;
}

.btn-block {
    width: 100%;
}

.btn-icon-right {
    margin-left: 0.25rem;
}

/* --- Sticky Glassmorphism Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    background-color: rgba(248, 246, 242, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: var(--border-light);
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.main-header.scrolled {
    height: 75px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.brand-logo {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

.main-header.scrolled .brand-logo {
    height: 46px;
}

/* Nav Menu */
.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--logo-violet);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.btn-nav {
    background: var(--grad-violet);
    color: var(--bg-secondary) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

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

.btn-nav::after {
    display: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: 170px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(100px);
    opacity: 0.4;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--logo-orange);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background-color: var(--logo-violet);
    bottom: -50px;
    left: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(70, 57, 154, 0.06);
    color: var(--logo-violet);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: var(--border-light);
    padding-top: 1.5rem;
    max-width: 480px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatar-dot {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    border: 3px solid var(--bg-primary);
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-right: -10px;
    box-shadow: var(--shadow-sm);
}

.avatar-1 { z-index: 3; }
.avatar-2 { z-index: 2; }
.avatar-3 { z-index: 1; }

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

/* Hero Cards Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 320px;
    height: 400px;
}

.hero-card-front, .hero-card-mid, .hero-card-back {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.hero-card-back {
    width: 100%;
    height: 100%;
    background-color: var(--bg-tertiary);
    transform: rotate(-6deg) translateY(10px) translateX(-10px);
    z-index: 1;
    opacity: 0.5;
}

.hero-card-mid {
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary);
    border: var(--border-light);
    transform: rotate(3deg) translateY(5px);
    z-index: 2;
    opacity: 0.85;
}

.hero-card-front {
    width: 100%;
    height: 100%;
    background-color: var(--bg-secondary);
    border: 1px solid rgba(70, 57, 154, 0.1);
    transform: rotate(0deg);
    z-index: 3;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(28, 22, 46, 0.9), rgba(28, 22, 46, 0));
    color: var(--bg-secondary);
}

.featured-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--logo-orange);
    margin-bottom: 0.25rem;
    display: block;
}

.card-overlay h3 {
    color: var(--bg-secondary);
    font-size: 1.35rem;
}

.hero-card-stack:hover .hero-card-front {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow-violet);
}

.hero-card-stack:hover .hero-card-mid {
    transform: rotate(6deg) translateY(10px) scale(0.98);
}

.hero-card-stack:hover .hero-card-back {
    transform: rotate(-10deg) translateY(15px) translateX(-15px) scale(0.95);
}

/* --- Section Global Layouts --- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

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

/* --- Games Section --- */
.games-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: var(--border-light);
    border-bottom: var(--border-light);
}

.filter-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--bg-primary);
    padding: 0.4rem;
    border-radius: var(--radius-full);
    margin-top: 2rem;
    border: var(--border-light);
}

.filter-tab {
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    cursor: pointer;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.filter-tab:hover {
    color: var(--logo-violet);
}

.filter-tab.active {
    background-color: var(--bg-secondary);
    color: var(--logo-violet);
    box-shadow: var(--shadow-sm);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

/* Game Card */
.game-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-md);
    border: var(--border-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.game-card:hover {
    transform: translateY(-8px);
    background-color: var(--bg-secondary);
    box-shadow: var(--shadow-md);
    border-color: rgba(70, 57, 154, 0.2);
}

.game-media {
    position: relative;
    height: 200px;
    background-color: var(--bg-tertiary);
    overflow: hidden;
}

.game-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.game-card:hover .game-banner-img {
    transform: scale(1.05);
}

.game-icon-corner {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 54px;
    height: 54px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--bg-secondary);
    z-index: 10;
}

/* Centered Game Icon layout */
.game-banner-centered-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
    transition: var(--transition-normal);
}

.game-card:hover .game-banner-centered-icon {
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

/* Orange Placeholder Banner */
.game-banner-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.theme-orange {
    background: linear-gradient(135deg, var(--logo-orange), var(--logo-coral));
}

.banner-bg-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.15);
}

/* Info Panel */
.game-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.game-genre {
    color: var(--logo-violet);
}

.game-platform {
    color: var(--text-secondary);
}

.game-title {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.game-card:hover .game-title {
    color: var(--logo-violet);
}

.game-short-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(70, 57, 154, 0.05);
    padding-top: 1rem;
}

.store-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.store-link:hover {
    color: var(--logo-orange);
}

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* --- Our Story Section --- */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.about-badge {
    display: inline-block;
    color: var(--logo-orange);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Values List */
.values-list {
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.value-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(254, 148, 65, 0.1);
    color: var(--logo-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.value-item:nth-child(2) .value-icon {
    background-color: rgba(70, 57, 154, 0.1);
    color: var(--logo-violet);
}

.value-text h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.value-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Polaroid Photo Card */
.about-visual {
    display: flex;
    justify-content: center;
}

.jigsaw-splash-card {
    background-color: var(--bg-secondary);
    padding: 1.25rem 1.25rem 2rem 1.25rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: var(--border-light);
    transform: rotate(2deg);
    max-width: 380px;
    transition: var(--transition-smooth);
}

.jigsaw-splash-card:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.splash-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.splash-caption h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--logo-violet);
}

.splash-caption p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* --- Developer Pitch / Contact --- */
.pitch-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: var(--border-light);
}

.pitch-form {
    background-color: var(--bg-primary);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
    margin-top: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group-conditional {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--logo-orange);
    padding-left: 1rem;
    transition: var(--transition-fast);
}

.form-group-conditional.active {
    display: grid;
}

label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="url"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(70, 57, 154, 0.15);
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--logo-violet);
    box-shadow: 0 0 0 3px rgba(70, 57, 154, 0.1);
}

/* --- Footer --- */
.main-footer {
    background-color: var(--bg-primary);
    padding: 80px 0 40px 0;
    border-top: var(--border-light);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 4rem;
}

.footer-logo {
    height: 64px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--bg-secondary);
    border: var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
}

.footer-socials a:hover {
    background-color: var(--logo-violet);
    color: var(--bg-secondary);
    transform: translateY(-2px);
}

.footer-links h4, .footer-legal h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--logo-violet);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--logo-violet);
    padding-left: 4px;
}

.footer-legal p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.8rem !important;
    color: var(--text-light) !important;
}

/* --- Slide-in Details Modal --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 22, 46, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    width: 100%;
    max-width: 600px;
    height: 100%;
    background-color: var(--bg-primary);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    padding: 3.5rem 2.5rem;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: translateX(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: transparent;
    border: none;
    font-size: 2.25rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--logo-coral);
    transform: rotate(90deg);
}

/* Modal Internal Layout */
.modal-title-sec {
    margin-bottom: 1.5rem;
    border-bottom: var(--border-light);
    padding-bottom: 1.5rem;
}

.modal-title-sec h2 {
    font-size: 2.25rem;
    margin-top: 0.5rem;
}

.modal-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.modal-badge {
    font-size: 0.75rem;
    font-weight: 700;
    background-color: rgba(70, 57, 154, 0.06);
    color: var(--logo-violet);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
}

.modal-badge.badge-orange {
    background-color: rgba(254, 148, 65, 0.1);
    color: var(--logo-orange);
}

.modal-banner {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: var(--border-light);
}

.modal-desc-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--logo-violet);
}

.modal-desc-body {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.features-list li i {
    color: var(--logo-orange);
    margin-top: 0.25rem;
    font-size: 0.85rem;
}

.modal-cta-row {
    display: flex;
    gap: 1rem;
    align-items: center;
    border-top: var(--border-light);
    padding-top: 1.5rem;
}

/* --- Toast Notification System --- */
.toast-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--logo-orange);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.active {
    transform: translateY(0);
    opacity: 1;
}

.toast.toast-success {
    border-left-color: #22c55e;
}

.toast-icon {
    font-size: 1.15rem;
}

.toast-icon-success {
    color: #22c55e;
}

.toast-message {
    font-size: 0.875rem;
    font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-social-proof {
        margin: 0 auto;
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-visual {
        order: -1;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 1rem auto 1.5rem auto;
    }
    
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-primary);
        padding: 3rem 2rem;
        transform: translateX(100%);
        transition: var(--transition-smooth);
        border-top: var(--border-light);
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.25rem;
        display: block;
    }
    
    .btn-nav {
        margin-top: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .pitch-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row, .form-group-conditional.active {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .modal-card {
        padding: 2.5rem 1.5rem;
    }
}

/* --- Store Badges Layout --- */
.store-badges-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1.25rem;
}

.store-badge-wrapper {
    position: relative;
    display: inline-block;
    height: 38px;
    border-radius: 6px;
    overflow: hidden;
    transition: var(--transition-fast);
}

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

.store-badge-wrapper.upcoming {
    opacity: 0.45;
    filter: grayscale(100%);
    cursor: not-allowed;
}

/* Status Badges Styling */
.status-badge.web-live {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-badge.upcoming {
    background-color: rgba(254, 148, 65, 0.1);
    color: var(--logo-orange);
    border: 1px solid rgba(254, 148, 65, 0.2);
}

/* Modal Custom Banner Placeholders */
.modal-banner-placeholder {
    width: 100%;
    height: 250px;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-centered-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: var(--shadow-md);
    border: 3px solid #ffffff;
    transition: var(--transition-normal);
}

.modal-centered-icon:hover {
    transform: scale(1.05);
}
