
    :root {
        --primary: #0055ff;
        --secondary: #2e3750;
        --accent: #eaf3f6;
        --text: #232323;
        --white: #ffffff;
    }
    body, html { margin: 0; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: var(--text); background: url('/assets/bg.png'); }
    .fl { display: flex; }
    .fl-c { flex-direction: column; }
    .fl-r { flex-direction: row; }
    .fl-ju-c { justify-content: center; }
    .fl-al-c { align-items: center; }
    .fl-ju-between { justify-content: space-between; }
    
    header { background: var(--accent); padding: 10px 0; border-bottom: 2px solid #ddd; }
    .container { width: 90%; max-width: 1000px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
    
    #menuToggle { position: relative; z-index: 100; cursor: pointer; }
    #menuToggle span { display: block; width: 33px; height: 4px; background: var(--secondary); border-radius: 3px; margin-bottom: 5px; }
    #menu { position: absolute; left: 0; top: 100%; background: var(--white); padding: 20px; list-style: none; display: none; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
    #menuToggle input:checked ~ #menu { display: block; }

    .hero { background: url('/assets/shop-banner.jpg') center/cover; height: 300px; display: flex; align-items: center; justify-content: center; color: white; }
    
    .country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 20px; padding: 40px 0; max-width: 1000px; margin: 0 auto; }
    .country { background: var(--white); padding: 15px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); text-align: center; }
    .country img { max-width: 60px; height: auto; }

    .footer { background: var(--secondary); color: white; padding: 40px 0; margin-top: 50px; }
    .footer-box { width: 90%; max-width: 1000px; margin: 0 auto; gap: 20px; }
    .level-1-content { text-align: center; gap: 10px; }
    .level-1-content img { width: 50px; height: auto; }
    
    .payment-placeholder { border: 1px solid #fff; padding: 10px; color: #fff; background: rgba(255,255,255,0.1); }

    @media (max-width: 768px) {
        .country-grid { grid-template-columns: 1fr 1fr; }
    }
