/* ==========================================================================
   PATAKE - DESIGN SYSTEM AND CUSTOM STYLING (style.css)
   ========================================================================== */

/* --- Import Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700&family=Outfit:wght@400;600;800;900&display=swap');

/* --- CSS Variables / Design Tokens --- */
:root {
    --bg-base: #020409;
    --bg-mid: #06091a;
    --bg-card: rgba(255, 255, 255, 0.04);
    --border-card: rgba(255, 255, 255, 0.08);
    --accent-gold: #ffd700;
    --accent-amber: #ea580c;
    --accent-red: #e74c3c;
    --accent-blue: #3b82f6;
    --accent-cyan: #06b6d4;
    
    --text-primary: #f8fafc;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Nunito', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-snappy: all 0.15s ease-in-out;
}

/* --- Base Resets & Global Layout --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-base);
    background-image: radial-gradient(circle at 50% 0%, var(--bg-mid) 0%, var(--bg-base) 80%);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--border-card);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

p {
    font-weight: 400;
    color: var(--text-secondary);
}

/* --- Utility Classes --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 215, 0, 0.25);
    box-shadow: 0 12px 40px 0 rgba(255, 215, 0, 0.05);
    transform: translateY(-4px);
}

/* --- Header & Navigation --- */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(2, 4, 9, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-card);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.logo-text {
    font-size: 24px;
    font-family: var(--font-heading);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-snappy);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* --- Navigation Dropdown Menu --- */
.nav-item-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    user-select: none;
}

.dropdown-menu-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 11, 22, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: 12px;
    padding: 8px 0;
    min-width: 190px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.05);
    margin-top: 12px;
    list-style: none;
}

.dropdown-menu-list::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent rgba(10, 11, 22, 0.98) transparent;
}

.dropdown-menu-list li {
    display: block;
    margin: 0;
}

.dropdown-menu-list a {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-snappy);
    text-align: left;
}

.dropdown-menu-list a:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent-gold);
}

.nav-item-dropdown:hover .dropdown-menu-list {
    display: block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #000000;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.25);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.45);
    transform: scale(1.02);
}

/* --- Hero Section & Spark Canvas --- */
.hero-section {
    position: relative;
    padding: 100px 0 80px;
    overflow: hidden;
}

#spark-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 36px;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid var(--border-card);
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-secondary);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.game-mockup {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 36px;
    padding: 10px;
    background: #0d0f1e;
    border: 4px solid #222538;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 0 0 40px rgba(6, 182, 212, 0.15);
    transform: rotate(3deg);
    transition: var(--transition-smooth);
}

.game-mockup:hover {
    transform: rotate(0deg) scale(1.03);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.9), 0 0 50px rgba(6, 182, 212, 0.25);
}

.game-screenshot {
    width: 100%;
    height: auto;
    border-radius: 28px;
    display: block;
}

/* --- Features Section --- */
.features-section {
    padding: 80px 0;
    background: rgba(6, 9, 26, 0.3);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 36px 28px;
    text-align: left;
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 24px;
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
}

/* --- Eco Section (Banner style) --- */
.eco-section {
    padding: 60px 0;
}

.eco-banner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    padding: 60px;
    background: linear-gradient(135deg, rgba(6, 118, 110, 0.15) 0%, rgba(3, 105, 161, 0.15) 100%);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 30px;
}

.eco-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.eco-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.eco-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.eco-bullets {
    list-style: none;
}

.eco-bullets li {
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
}

.eco-bullets li::before {
    content: '🌿';
}

/* --- Download Section --- */
.download-section {
    padding: 80px 0;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
}

.download-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
}

.download-box h2 {
    font-size: 44px;
    margin-bottom: 16px;
}

.download-box p {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.download-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 30px;
    border-radius: 14px;
    border: 1px solid var(--border-card);
    transition: var(--transition-smooth);
    text-align: left;
}

.download-btn:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.15);
}

.download-btn-icon {
    font-size: 32px;
}

.download-btn-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.download-btn-text strong {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

/* --- Contact & Forms Section --- */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
}

.info-card-icon {
    font-size: 24px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    width: 52px;
    height: 52px;
    line-height: 52px;
    text-align: center;
    border-radius: 12px;
}

.info-card-detail h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.info-card-detail p {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-form-panel {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-card);
    border-radius: 10px;
    padding: 14px 18px;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition-snappy);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Form Message Box */
.form-message {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 20px;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.form-message.info {
    display: block;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

/* --- Newsletter Row --- */
.newsletter-bar {
    padding: 60px 0;
    border-top: 1px solid var(--border-card);
}

.newsletter-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding: 40px 50px;
}

.newsletter-text h3 {
    font-size: 28px;
    margin-bottom: 8px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form .form-control {
    flex: 1;
}

/* --- Footer --- */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-card);
    background: #010206;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-brand {
    padding-right: 32px;
}

.footer-brand p {
    margin: 16px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-links h4, .footer-legal h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a, .footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-snappy);
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-card);
    padding-top: 30px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-muted);
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    font-size: 20px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-snappy);
}

.social-icon:hover {
    color: var(--accent-gold);
}

/* --- Privacy Policy Page Styling --- */
.policy-page {
    padding: 60px 0 100px;
}

.policy-card {
    padding: 50px;
}

.policy-card h1 {
    font-size: 40px;
    margin-bottom: 8px;
}

.policy-date {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 40px;
    display: block;
}

.policy-content h2 {
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: var(--accent-gold);
}

.policy-content p {
    font-size: 15px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.policy-content li {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* --- Admin Dashboard Page Styling --- */
.dashboard-page {
    padding: 60px 0 100px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 30px;
    text-align: center;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.2;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-card);
}

.panel-header h3 {
    font-size: 22px;
}

.table-responsive {
    overflow-x: auto;
    margin-bottom: 40px;
}

table.submissions-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

table.submissions-table th {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 2px solid var(--border-card);
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

table.submissions-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-card);
    color: var(--text-secondary);
    vertical-align: top;
}

table.submissions-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

.badge-email {
    display: inline-block;
    padding: 4px 8px;
    background: rgba(59, 130, 246, 0.1);
    color: #93c5fd;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
}

.empty-state {
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 15px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .eco-banner {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .download-box {
        padding: 30px 20px;
    }
    
    .contact-form-panel {
        padding: 24px 20px;
    }
    
    .newsletter-panel {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .policy-card {
        padding: 24px 20px;
    }
}

/* --- App launching action button --- */
.btn-app {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #1e40af 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.25);
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-app:hover {
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.45);
    transform: scale(1.02);
    border-color: var(--accent-gold);
}

/* --- Admin Tabs Styling --- */
.tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-card);
    color: var(--text-secondary);
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
    margin-right: 8px;
    margin-bottom: 8px;
}

.tab-btn:hover {
    background: rgba(255, 215, 0, 0.08);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-amber) 100%);
    color: #000000;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeInTab 0.3s ease-in-out;
}

@keyframes fadeInTab {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Settings Grid Layout --- */
.settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .settings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* --- Game Modes Grid (2x2 Layout) --- */
.game-modes-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 992px) {
    .game-modes-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

@media (max-width: 600px) {
    .game-modes-grid {
        grid-template-columns: 1fr !important;
    }
}

/* --- Horizontal Mockup Cards --- */
.horizontal-card {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px 28px !important;
    height: 100%;
}

.horizontal-card-content {
    flex: 1;
    min-width: 0;
}

.horizontal-card-mockup {
    width: 110px;
    flex-shrink: 0;
    background: #000;
    border-radius: 20px;
    padding: 6px;
    border: 3px solid #1e293b;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
}

.horizontal-card-mockup-inner {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #334155;
    height: 195px;
    position: relative;
}

.horizontal-card-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.4s ease;
}

.horizontal-card:hover .horizontal-card-mockup {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.15);
}

.horizontal-card:hover .horizontal-card-mockup img {
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .horizontal-card {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 20px;
    }
    .horizontal-card-mockup {
        width: 120px;
        align-self: center;
    }
    .horizontal-card-mockup-inner {
        height: 212px;
    }
}


/* --- Navigation Dropdown Hover Bridge --- */
.dropdown-menu-list::after {
    content: '' !important;
    position: absolute !important;
    bottom: 100% !important;
    left: 0 !important;
    width: 100% !important;
    height: 16px !important;
    background: transparent !important;
    display: block !important;
    z-index: 1001 !important;
}

/* --- Ambient Glow Accent Blobs & Custom Gradients --- */
.glow-blob-1, .glow-blob-2, .glow-blob-3 {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    z-index: -2;
    pointer-events: none;
    transition: var(--transition-smooth);
}
.glow-blob-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -150px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    animation: pulseBlobOne 15s infinite alternate ease-in-out;
}
.glow-blob-2 {
    width: 600px;
    height: 600px;
    bottom: 10%;
    right: -200px;
    background: radial-gradient(circle, var(--accent-amber) 0%, transparent 70%);
    animation: pulseBlobTwo 20s infinite alternate ease-in-out;
}
.glow-blob-3 {
    width: 450px;
    height: 450px;
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    opacity: 0.06;
}

@keyframes pulseBlobOne {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(50px) scale(1.1); }
}
@keyframes pulseBlobTwo {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-70px) scale(0.9); }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(234, 88, 12, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}
.eco-section {
    position: relative;
}
.eco-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
}
