/**
 * Homepage Blocks - Shared Styles
 *
 * Shared CSS for homepage blocks and confirmation pages.
 * See homepage-blocks/style-guide.md for documentation.
 *
 * Usage: Enqueue on specific pages or add via WordPress Customizer
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
    /* Primary Colors */
    --color-green-dark: #1a472a;
    --color-green-mid: #2d5a3d;
    --color-green-light: #3d6b4d;
    --color-green-muted: #5a6d5a;

    /* Accent Colors */
    --color-gold: #d4a853;
    --color-gold-dark: #b8923d;
    --color-gold-light: #f5d89a;

    /* Status Colors */
    --color-success: #4CAF50;
    --color-success-light: #e8f5e9;
    --color-success-dark: #2e7d32;

    /* Backgrounds */
    --bg-light: linear-gradient(180deg, #f8faf8 0%, #eef3ee 100%);
    --bg-dark: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1e3a28 100%);

    /* Shadows */
    --shadow-subtle: 0 4px 25px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 4px 15px rgba(212, 168, 83, 0.3);
    --shadow-gold-hover: 0 6px 25px rgba(212, 168, 83, 0.4);

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 15px;
    --space-md: 20px;
    --space-lg: 40px;
    --space-xl: 60px;

    /* Border Radius */
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 30px;
}

/* ==========================================================================
   Confirmation Page Styles
   ========================================================================== */

.confirmation-page {
    background: var(--bg-light);
    padding: 60px 20px 80px;
    min-height: 70vh;
}

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

/* Success Header */
.confirmation-header {
    text-align: center;
    margin-bottom: 40px;
}

.confirmation-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--color-success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: success-pop 0.5s ease-out;
}

@keyframes success-pop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.confirmation-icon i {
    font-size: 48px;
    color: var(--color-success);
}

.confirmation-icon.pro-icon {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2) 0%, rgba(184, 146, 61, 0.2) 100%);
}

.confirmation-icon.pro-icon i {
    color: var(--color-gold);
}

.confirmation-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-green-dark);
    margin: 0 0 15px 0;
}

.confirmation-header p {
    font-size: 1.15rem;
    color: var(--color-green-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Action Cards Grid */
.confirmation-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.action-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
    color: inherit;
}

.action-card.primary {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.action-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--color-success-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-card-icon i {
    font-size: 24px;
    color: var(--color-success-dark);
}

.action-card.primary .action-card-icon {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
}

.action-card.primary .action-card-icon i {
    color: white;
}

.action-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin: 0 0 8px 0;
}

.action-card p {
    font-size: 0.9rem;
    color: var(--color-green-muted);
    margin: 0;
    line-height: 1.5;
}

/* Platform Download Section */
.platform-downloads {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    padding: 35px;
    margin-bottom: 40px;
}

.platform-downloads h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0 0 25px 0;
}

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

.platform-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    min-width: 180px;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

.platform-btn.coming-soon {
    opacity: 0.6;
    cursor: default;
}

.platform-btn.coming-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

.platform-btn-icon {
    font-size: 32px;
}

.platform-btn-text {
    display: flex;
    flex-direction: column;
}

.platform-btn-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.platform-btn-name {
    font-size: 16px;
    font-weight: 600;
}

/* What's Next Section */
.whats-next {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-subtle);
}

.whats-next h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-green-dark);
    text-align: center;
    margin: 0 0 25px 0;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8faf8;
    border-radius: var(--radius-sm);
}

.next-step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.next-step-text {
    font-size: 0.95rem;
    color: var(--color-green-dark);
    line-height: 1.5;
}

.next-step-text a {
    color: var(--color-gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.next-step-text a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .confirmation-page {
        padding: 40px 15px 60px;
    }

    .confirmation-header h1 {
        font-size: 2rem;
    }

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

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

    .platform-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .confirmation-icon {
        width: 80px;
        height: 80px;
    }

    .confirmation-icon i {
        font-size: 36px;
    }
}

/* Bolete Finder */
.bolete-section {
    background: linear-gradient(180deg, #f8faf8 0%, #eef3ee 100%);
    padding: 100px 20px;
    position: relative;
}

.bolete-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.bolete-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.bolete-card-stack {
    position: relative;
    width: 320px;
    height: 420px;
}

.bolete-card {
    position: absolute;
    width: 280px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bolete-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.bolete-card:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    border-color: #d4a853;
}

.bolete-card:nth-child(2) {
    top: 30px;
    left: 40px;
    z-index: 2;
    opacity: 0.8;
}

.bolete-card:nth-child(3) {
    top: 60px;
    left: 80px;
    z-index: 1;
    opacity: 0.6;
}

.bolete-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bolete-card-image i {
    font-size: 64px;
    color: rgba(255, 255, 255, 0.3);
}

/* Replace placeholder with actual image */
.bolete-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bolete-card-content {
    padding: 20px;
}

.bolete-card-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.bolete-card-badge.caution {
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
}

.bolete-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a472a;
    margin: 0 0 8px 0;
}

.bolete-card-latin {
    font-size: 13px;
    font-style: italic;
    color: #5a6d5a;
    margin: 0;
}

/* Content side */
.bolete-content {
    max-width: 500px;
}

.bolete-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.15);
    color: #b8923d;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.bolete-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a472a;
    line-height: 1.15;
    margin: 0 0 20px 0;
}

.bolete-content h2 span {
    color: #d4a853;
}

.bolete-content p {
    font-size: 1.15rem;
    color: #5a6d5a;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bolete-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.bolete-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.bolete-feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bolete-feature-icon i {
    color: white;
    font-size: 18px;
}

.bolete-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a472a;
    margin: 0 0 4px 0;
}

.bolete-feature-text p {
    font-size: 14px;
    color: #5a6d5a;
    margin: 0;
    line-height: 1.5;
}

.btn-bolete {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-bolete:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    text-decoration: none;
    color: white;
}

/* Decorative mushroom silhouettes */
.bolete-decoration {
    position: absolute;
    opacity: 0.03;
    font-size: 200px;
    color: #1a472a;
    z-index: 0;
}

.bolete-decoration.top-right {
    top: -50px;
    right: 50px;
    transform: rotate(15deg);
}

.bolete-decoration.bottom-left {
    bottom: -30px;
    left: 30px;
    transform: rotate(-10deg);
}

/* Responsive */
@media (max-width: 968px) {
    .bolete-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bolete-visual {
        order: -1;
    }

    .bolete-content {
        text-align: center;
        max-width: 100%;
    }

    .bolete-content h2 {
        font-size: 2rem;
    }

    .bolete-features {
        align-items: center;
    }

    .bolete-feature {
        text-align: left;
        max-width: 350px;
    }
}

@media (max-width: 600px) {
    .bolete-section {
        padding: 60px 15px;
    }

    .bolete-content h2 {
        font-size: 1.8rem;
    }

    .bolete-card-stack {
        width: 260px;
        height: 360px;
    }

    .bolete-card {
        width: 240px;
    }

    .bolete-card:nth-child(2),
    .bolete-card:nth-child(3) {
        display: none;
    }
}

/* Events Section */
.events-section {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1e3a28 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.events-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.events-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.events-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(212, 168, 83, 0.3);
    }
    50% {
        box-shadow: 0 10px 60px rgba(212, 168, 83, 0.5);
    }
}

.events-icon-wrapper i {
    font-size: 42px;
    color: white;
}

.events-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.events-section h2 span {
    background: linear-gradient(135deg, #d4a853 0%, #f5d89a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.events-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.events-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.event-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.event-highlight i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #d4a853;
}

.event-highlight span {
    font-size: 15px;
    font-weight: 600;
}

.btn-events {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-events:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    text-decoration: none;
    color: white;
}

.btn-events i {
    transition: transform 0.3s ease;
}

.btn-events:hover i {
    transform: translateX(5px);
}

.btn-events-wrap {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-events-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-events-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Decorative calendar elements */
.floating-dates {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-date {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px 15px;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 14px;
}

.floating-date:nth-child(1) {
    top: 15%;
    left: 10%;
    transform: rotate(-15deg);
}

.floating-date:nth-child(2) {
    top: 25%;
    right: 12%;
    transform: rotate(10deg);
}

.floating-date:nth-child(3) {
    bottom: 20%;
    left: 8%;
    transform: rotate(5deg);
}

.floating-date:nth-child(4) {
    bottom: 30%;
    right: 10%;
    transform: rotate(-8deg);
}

/* Responsive */
@media (max-width: 768px) {
    .events-section {
        padding: 60px 20px;
    }

    .events-section h2 {
        font-size: 2rem;
    }

    .events-highlights {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .events-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .events-icon-wrapper i {
        font-size: 34px;
    }

    .floating-dates {
        display: none;
    }
}

@media (max-width: 480px) {
    .events-section h2 {
        font-size: 1.8rem;
    }

    .btn-events,
    .btn-events-outline {
        padding: 14px 22px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }

    .btn-events-wrap {
        flex-direction: column;
        align-items: center;
    }
}

/* Forayz Hero */
.forayz-hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1e3a28 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.forayz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.forayz-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.forayz-hero-content {
    color: #fff;
}

.forayz-hero-badge {
    display: inline-block;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.4);
    color: #d4a853;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.forayz-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #fff;
}

.forayz-hero h1 span {
    background: linear-gradient(135deg, #d4a853 0%, #f5d89a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forayz-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 500px;
}

.forayz-hero-platforms {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 160px;
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    text-decoration: none;
    color: #fff;
}

.platform-card.coming-soon {
    opacity: 0.7;
    cursor: default;
}

.platform-card.coming-soon:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
}

.platform-icon {
    font-size: 28px;
}

.platform-info {
    display: flex;
    flex-direction: column;
}

.platform-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.platform-name {
    font-size: 16px;
    font-weight: 600;
}

.forayz-hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    text-decoration: none;
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    color: #fff;
}

/* Phone Mockup */
.forayz-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: #000;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

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

/* Placeholder for screenshot - replace src with your actual image */
.phone-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2d5a3d 0%, #1a472a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    text-align: center;
    padding: 20px;
}

.phone-placeholder i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

/* Decorative elements */
.hero-decoration {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Features strip below hero */
.forayz-features-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 20px;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    border-radius: 12px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
}

.feature-item i {
    color: #d4a853;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 968px) {
    .forayz-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .forayz-hero h1 {
        font-size: 2.5rem;
    }

    .forayz-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .forayz-hero-platforms {
        justify-content: center;
    }

    .forayz-hero-cta {
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .forayz-features-strip {
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .forayz-hero {
        padding: 50px 15px;
    }

    .forayz-hero h1 {
        font-size: 2rem;
    }

    .platform-card {
        min-width: 140px;
        padding: 12px 16px;
    }

    .forayz-features-strip {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Membership Levels */
.membership-page {
    background: linear-gradient(180deg, #f8faf8 0%, #eef3ee 100%);
    padding: 60px 20px 80px;
    min-height: 70vh;
}

.membership-container {
    max-width: 1000px;
    margin: 0 auto;
}

.membership-header {
    text-align: center;
    margin-bottom: 50px;
}

.membership-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a472a;
    margin: 0 0 15px 0;
}

.membership-header p {
    font-size: 1.15rem;
    color: #5a6d5a;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Cards Container */
.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Individual Card */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Pro Card Highlight */
.pricing-card.pro {
    border-color: #d4a853;
    background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.pricing-card.pro::before {
    content: 'CURRENT CONDITIONS';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Card Header */
.card-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.card-tier-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.pricing-card.free .card-tier-icon {
    background: #e8f5e9;
    color: #4CAF50;
}

.pricing-card.pro .card-tier-icon {
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
}

.card-tier-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a472a;
}

/* Pricing */
.card-price {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a472a;
    line-height: 1;
}

.price-amount .currency {
    font-size: 1.5rem;
    vertical-align: top;
    position: relative;
    top: 8px;
}

.price-period {
    font-size: 1rem;
    color: #888;
    margin-left: 5px;
}

.price-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
}

.pricing-card.free .price-amount {
    color: #4CAF50;
}

/* Features List */
.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.5;
}

.card-features li i {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
}

.card-features li i.fa-check {
    background: #e8f5e9;
    color: #4CAF50;
}

.card-features li i.fa-crown {
    background: linear-gradient(135deg, #fff3d4 0%, #ffe9b3 100%);
    color: #b8923d;
}

.card-features li.disabled {
    color: #bbb;
}

.card-features li.disabled i {
    background: #f5f5f5;
    color: #ccc;
}

/* CTA Buttons */
.card-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.pricing-card.free .card-cta {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #c8e6c9;
}

.pricing-card.free .card-cta:hover {
    background: #c8e6c9;
    text-decoration: none;
    color: #1b5e20;
}

.pricing-card.pro .card-cta {
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.pricing-card.pro .card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    text-decoration: none;
    color: white;
}

/* Value Callout */
.value-callout {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    color: white;
}

.value-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.value-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

.value-price {
    text-align: center;
    flex-shrink: 0;
}

.value-price .per-month {
    font-size: 2rem;
    font-weight: 800;
}

.value-price .per-month-label {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* FAQ / Trust Section */
.membership-faq {
    margin-top: 50px;
    text-align: center;
}

.membership-faq h3 {
    font-size: 1.3rem;
    color: #1a472a;
    margin-bottom: 25px;
}

.faq-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.faq-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6d5a;
    font-size: 0.95rem;
}

.faq-item i {
    color: #4CAF50;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .membership-page {
        padding: 40px 15px 60px;
    }

    .membership-header h1 {
        font-size: 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-card.pro {
        order: -1; /* Show Pro first on mobile */
    }

    .value-callout {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    .faq-items {
        flex-direction: column;
        gap: 15px;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   Join/Signup Section
   ========================================================================== */

.join-section {
    background: linear-gradient(180deg, #f8faf8 0%, #eef3ee 100%);
    padding: 80px 20px;
    text-align: center;
}

.join-container {
    max-width: 600px;
    margin: 0 auto;
}

.join-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.join-icon-wrapper i {
    font-size: 36px;
    color: #4CAF50;
}

.join-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a472a;
    margin: 0 0 15px 0;
}

.join-section h2 span {
    color: #d4a853;
}

.join-subtitle {
    font-size: 1.15rem;
    color: #5a6d5a;
    line-height: 1.6;
    margin: 0 auto 30px;
    max-width: 480px;
}

.join-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.join-benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a472a;
    font-size: 15px;
    font-weight: 500;
}

.join-benefit i {
    color: #4CAF50;
    font-size: 18px;
}

.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    text-decoration: none;
    color: white;
}

.join-note {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.join-note a {
    color: #d4a853;
    font-weight: 600;
    text-decoration: none;
}

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

/* Join Section Responsive */
@media (max-width: 600px) {
    .join-section {
        padding: 60px 15px;
    }

    .join-section h2 {
        font-size: 2rem;
    }

    .join-benefits {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .join-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .join-icon-wrapper i {
        font-size: 30px;
    }
}

/* ==========================================================================
   About Forayz Page
   ========================================================================== */

/* Hero Section */
.about-forayz-hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1e3a28 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.about-forayz-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.about-forayz-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-forayz-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.4);
    color: #d4a853;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.about-forayz-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin: 0 0 25px 0;
}

.about-forayz-hero h1 span {
    background: linear-gradient(135deg, #d4a853 0%, #f5d89a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-forayz-intro {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 auto 35px;
    max-width: 650px;
}

.about-forayz-intro strong {
    color: #d4a853;
}

.about-forayz-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    text-decoration: none;
    color: white;
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

/* Features Section */
.forayz-features-section {
    background: linear-gradient(180deg, #f8faf8 0%, #eef3ee 100%);
    padding: 80px 20px;
}

.forayz-features-container {
    max-width: 1100px;
    margin: 0 auto;
}

.forayz-features-header {
    text-align: center;
    margin-bottom: 50px;
}

.forayz-features-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a472a;
    margin: 0 0 15px 0;
}

.forayz-features-header h2 span {
    color: #d4a853;
}

.forayz-features-header p {
    font-size: 1.15rem;
    color: #5a6d5a;
    margin: 0;
}

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

.forayz-feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.forayz-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.forayz-feature-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    overflow: hidden;
}

.forayz-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.forayz-feature-content {
    padding: 25px;
}

.forayz-feature-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a472a;
    margin: 0 0 10px 0;
}

.forayz-feature-content p {
    font-size: 0.95rem;
    color: #5a6d5a;
    line-height: 1.6;
    margin: 0;
}

/* Access/CTA Section */
.forayz-access-section {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1e3a28 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.forayz-access-container {
    max-width: 700px;
    margin: 0 auto;
}

.forayz-access-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.3);
}

.forayz-access-icon i {
    font-size: 32px;
    color: white;
}

.forayz-access-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 15px 0;
}

.forayz-access-section h2 span {
    background: linear-gradient(135deg, #d4a853 0%, #f5d89a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forayz-access-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 550px;
}

.forayz-access-tiers {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.access-tier {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 24px;
}

.tier-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.tier-icon.free {
    background: #e8f5e9;
    color: #4CAF50;
}

.tier-icon.pro {
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
}

.tier-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.tier-name {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.tier-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-access {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a853 0%, #b8923d 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.3);
}

.btn-access:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
    text-decoration: none;
    color: white;
}

.btn-access i {
    transition: transform 0.3s ease;
}

.btn-access:hover i {
    transform: translateX(5px);
}

/* About Forayz Responsive */
@media (max-width: 968px) {
    .about-forayz-hero h1 {
        font-size: 2.5rem;
    }

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

    .forayz-features-header h2,
    .forayz-access-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .about-forayz-hero {
        padding: 60px 15px;
    }

    .about-forayz-hero h1 {
        font-size: 2rem;
    }

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

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .forayz-features-section {
        padding: 60px 15px;
    }

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

    .forayz-features-header h2 {
        font-size: 1.8rem;
    }

    .forayz-access-section {
        padding: 60px 15px;
    }

    .forayz-access-section h2 {
        font-size: 1.8rem;
    }

    .forayz-access-tiers {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .access-tier {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .forayz-access-icon {
        width: 70px;
        height: 70px;
    }

    .forayz-access-icon i {
        font-size: 28px;
    }
}

/* ==========================================================================
   ForayzU — Flashcard Learning App Section
   App Store: https://apps.apple.com/us/app/forayzu/id6759473641
   ========================================================================== */

.forayzu-section {
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1e3a28 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.forayzu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.forayzu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Content side */
.forayzu-content {
    color: #fff;
}

.forayzu-badge {
    display: inline-block;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.4);
    color: #d4a853;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.forayzu-section h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #fff;
}

.forayzu-section h2 span {
    background: linear-gradient(135deg, #d4a853 0%, #f5d89a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.forayzu-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

/* Deck cards grid */
.forayzu-decks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 30px;
}

.forayzu-deck-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    transition: background 0.2s ease;
}

.forayzu-deck-card.free {
    background: rgba(76, 175, 80, 0.12);
    border-color: rgba(76, 175, 80, 0.35);
}

.forayzu-deck-card.iap {
    background: rgba(212, 168, 83, 0.08);
    border-color: rgba(212, 168, 83, 0.25);
}

.forayzu-deck-card.coming {
    opacity: 0.55;
}

.forayzu-deck-icon {
    font-size: 20px;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.forayzu-deck-card.free .forayzu-deck-icon { color: #4CAF50; }
.forayzu-deck-card.iap .forayzu-deck-icon  { color: #d4a853; }
.forayzu-deck-card.coming .forayzu-deck-icon { color: rgba(255,255,255,0.4); }

.forayzu-deck-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.forayzu-deck-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.forayzu-deck-badge.free    { color: #66bb6a; }
.forayzu-deck-badge.iap     { color: #d4a853; }
.forayzu-deck-badge.coming  { color: rgba(255,255,255,0.4); }

.forayzu-deck-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}

/* App Store button */
.forayzu-appstore-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #000;
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.forayzu-appstore-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    color: #fff;
}

.forayzu-appstore-btn .fab.fa-apple {
    font-size: 32px;
}

.forayzu-btn-text {
    display: flex;
    flex-direction: column;
}

.forayzu-btn-label {
    font-size: 11px;
    opacity: 0.75;
    letter-spacing: 0.3px;
}

.forayzu-btn-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

/* Screenshot side — portrait (9:16) */
.forayzu-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.forayzu-screenshot-wrap {
    width: 280px;
    aspect-ratio: 9 / 16;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(255, 255, 255, 0.08);
}

.forayzu-screenshot-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.forayzu-screenshot-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d5a3d 0%, #1a472a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    gap: 12px;
}

.forayzu-screenshot-placeholder i {
    font-size: 40px;
    opacity: 0.5;
}

/* Responsive — tablet */
@media (max-width: 968px) {
    .forayzu-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .forayzu-section h2 {
        font-size: 2.4rem;
    }

    .forayzu-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .forayzu-decks {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .forayzu-deck-card {
        text-align: left;
    }

    .forayzu-appstore-btn {
        margin: 0 auto;
    }

    .forayzu-screenshot-wrap {
        width: 240px;
    }
}

/* Responsive — mobile */
@media (max-width: 600px) {
    .forayzu-section {
        padding: 50px 15px;
    }

    .forayzu-section h2 {
        font-size: 1.9rem;
    }

    .forayzu-decks {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
}

/* ==========================================================================
   Upcoming Events Page
   ========================================================================== */

.upcoming-events-page {
    background: var(--bg-light);
    padding: var(--space-xl) var(--space-md) 80px;
}

.upcoming-events-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Page Header */
.upcoming-events-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.upcoming-events-header .badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 83, 0.15);
    color: var(--color-gold-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.upcoming-events-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-green-dark);
    margin: 0 0 var(--space-sm) 0;
    line-height: 1.2;
}

.upcoming-events-header h2 span {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.upcoming-events-header p {
    font-size: 1.15rem;
    color: var(--color-green-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Event Cards Grid */
.event-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: var(--space-lg);
}

/* Individual Event Card */
.event-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    box-shadow: var(--shadow-subtle);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.event-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

/* Season Badge */
.event-card .event-season {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-sm);
    width: fit-content;
}

.event-season.spring {
    background: #e8f5e9;
    color: #2e7d32;
}

.event-season.fall {
    background: #fff3e0;
    color: #e65100;
}

.event-season.year-round {
    background: rgba(212, 168, 83, 0.15);
    color: var(--color-gold-dark);
}

.event-season.by-request {
    background: #e8eaf6;
    color: #3949ab;
}

.event-season.gift {
    background: #fce4ec;
    color: #c62828;
}

/* Card Header */
.event-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: var(--space-sm);
}

.event-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.event-card.featured .event-card-icon {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: white;
}

.event-card:not(.featured) .event-card-icon {
    background: #e8f5e9;
    color: #4CAF50;
}

.event-card-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-green-dark);
    margin: 0;
    line-height: 1.3;
}

/* Card Body */
.event-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 auto 0;
    padding-bottom: var(--space-md);
}

/* Card Details (location, duration, group size) */
.event-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.event-detail {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--color-green-muted);
}

.event-detail i {
    color: var(--color-gold);
    font-size: 14px;
}

/* Card CTA */
.event-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.event-card.featured .event-card-cta {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: white;
    box-shadow: var(--shadow-gold);
}

.event-card.featured .event-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
    text-decoration: none;
    color: white;
}

.event-card:not(.featured) .event-card-cta {
    background: #e8f5e9;
    color: #2e7d32;
    border: 2px solid #c8e6c9;
}

.event-card:not(.featured) .event-card-cta:hover {
    background: #c8e6c9;
    text-decoration: none;
    color: #1b5e20;
}

.event-card-cta i {
    transition: transform 0.3s ease;
}

.event-card-cta:hover i {
    transform: translateX(4px);
}

/* Card Actions (CTA + dates link) */
.event-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.event-card-actions .event-card-cta {
    margin-top: 0;
}

.event-card-dates {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-green-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 4px;
}

.event-card-dates:hover {
    color: var(--color-green-dark);
    text-decoration: none;
}

.event-card-dates i {
    font-size: 14px;
    color: var(--color-gold);
}

/* Gift Card - Full Width */
.event-card.gift-card {
    grid-column: 1 / -1;
    text-align: center;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1e3a28 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.event-card.gift-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.event-card.gift-card .event-season {
    background: rgba(212, 168, 83, 0.2);
    color: var(--color-gold-light);
}

.event-card.gift-card .event-card-header {
    justify-content: center;
}

.event-card.gift-card .event-card-icon {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: white;
}

.event-card.gift-card h3 {
    color: white;
}

.event-card.gift-card p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
    padding-bottom: var(--space-md);
}

.event-card.gift-card .event-card-cta {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: white;
    box-shadow: var(--shadow-gold);
    margin: 0 auto;
}

.event-card.gift-card .event-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-hover);
    text-decoration: none;
    color: white;
}

/* Contact Footer */
.upcoming-events-footer {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid #e0e8e0;
}

.upcoming-events-footer p {
    font-size: 1.05rem;
    color: var(--color-green-muted);
    line-height: 1.6;
}

.upcoming-events-footer a {
    color: var(--color-green-dark);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(26, 71, 42, 0.2);
    transition: border-color 0.3s ease;
}

.upcoming-events-footer a:hover {
    border-color: var(--color-gold);
}

/* Responsive — tablet */
@media (max-width: 968px) {
    .upcoming-events-header h2 {
        font-size: 2rem;
    }

    .event-cards-grid {
        gap: 20px;
    }
}

/* Responsive — mobile */
@media (max-width: 600px) {
    .upcoming-events-page {
        padding: 40px 15px 60px;
    }

    .upcoming-events-header h2 {
        font-size: 1.8rem;
    }

    .event-cards-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        padding: 28px 22px;
    }

    .event-card.gift-card {
        grid-column: auto;
    }
}
