* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #121212;
    color: #e0e0e0;
    line-height: 1.6;
}

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

header {
    background-color: #1a1a1a;
    padding: 2rem 0;
    text-align: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1;
}

.ball-o {
    display: inline-block;
    width: 0.68em;
    height: 0.68em;
    margin: 0 0.005em;
    vertical-align: -0.08em;
    background: url('images/soccer-ball.png') center / contain no-repeat;
    animation: ballSpin 16s linear infinite;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.ball-o:nth-of-type(2) {
    animation-duration: 20s;
    animation-direction: reverse;
}

.logo-bite {
    color: #3b82f6;
}

@keyframes ballSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.tagline {
    font-size: 1.2rem;
    color: #10b981;
    font-weight: 600;
}

.article-intro {
    margin-bottom: 1.5rem;
}

.article-intro .brand {
    color: #10b981;
    font-weight: 700;
}

.hero-image {
    width: 100%;
    margin: 1.5rem 0 2rem;
    display: block;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 4px;
}

main {
    padding: 2rem 0;
}

.content-box {
    background-color: #222222;
    border-radius: 12px;
    padding: 2.5rem;
}

.notice {
    background-color: #2b2b2b;
    color: #10b981;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.link-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2b2b2b;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1.2rem;
    transition: background-color 0.2s;
}

.link-item:hover {
    background-color: #333333;
}

.live {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #10b981;
    font-size: 1.1rem;
}

.live-dot {
    position: relative;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
}

.live-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #10b981;
    animation: liveRipple 2s ease-out infinite;
}

.live-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #10b981;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

@keyframes liveRipple {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.8); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .ball-o {
        animation: none;
    }

    .live-dot::before,
    .live-dot::after {
        animation: none;
    }
}

.article-box {
    margin-top: 2rem;
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
}

.article-box h3 {
    color: #10b981;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.article-box p {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.article-content h4 {
    color: #10b981;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.article-content ul, .article-content ol {
    color: #c0c0c0;
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: #e0e0e0;
}

.table-wrap {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
    padding: 1rem 1.1rem;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #333;
    color: #c0c0c0;
    line-height: 1.6;
}

.compare-table thead th {
    background-color: #2b2b2b;
    color: #10b981;
    font-weight: 700;
}

.compare-table tbody tr:hover {
    background-color: #252525;
}

.compare-table td:first-child {
    color: #e0e0e0;
    min-width: 140px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    background-color: #2b2b2b;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid #10b981;
}

.faq-q {
    color: #10b981;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.faq-a {
    color: #c0c0c0;
    line-height: 1.7;
    margin-bottom: 0;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.site-footer {
    background-color: #1a1a1a;
    border-top: 1px solid #333;
    padding: 2rem 0;
    margin-top: 1rem;
}

.footer-inner {
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.footer-nav a {
    color: #10b981;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #34d399;
}

.footer-copy {
    color: #888;
    font-size: 0.85rem;
}

.footer-guides-label {
    color: #888;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}

.footer-guides {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #333;
}

.legal-page {
    background-color: #222222;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.legal-page h1 {
    color: #10b981;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.legal-page h2 {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.legal-page p,
.legal-page li {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page a {
    color: #10b981;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.contact-box {
    background-color: #2b2b2b;
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 500px;
}

.contact-form label {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    background-color: #2b2b2b;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    color: #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #10b981;
}

.contact-btn {
    margin-top: 1rem;
    background-color: #10b981;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-btn:hover {
    background-color: #059669;
}

.contact-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.landing-page {
    background-color: #222222;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.landing-page h1 {
    color: #10b981;
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.hub-note {
    color: #3b82f6;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.landing-page h2 {
    color: #10b981;
    font-size: 1.25rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.landing-page p,
.landing-page li {
    color: #c0c0c0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.landing-page ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.landing-page a {
    color: #10b981;
    text-decoration: none;
}

.landing-page a:hover {
    text-decoration: underline;
}

.landing-cta {
    display: inline-block;
    background-color: #10b981;
    color: #fff !important;
    text-decoration: none !important;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 1rem 0 1.5rem;
    transition: background-color 0.2s;
}

.landing-cta:hover {
    background-color: #059669;
    text-decoration: none !important;
}

.related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.related-links a {
    background-color: #2b2b2b;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
}

.related-links a:hover {
    background-color: #333;
    text-decoration: none;
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.blog-card {
    background-color: #2b2b2b;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.2s;
}

.blog-card:hover {
    transform: translateY(-2px);
}

.blog-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-card-body h2 {
    color: #10b981;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.blog-card-body h2 a {
    color: inherit;
    text-decoration: none;
}

.blog-card-body h2 a:hover {
    color: #34d399;
}

.blog-card-body p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.blog-meta {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.blog-post-image {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Geo language popup + Google Translate hide bar */
.goog-te-banner-frame,
.skiptranslate iframe.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none !important;
}

.goog-te-gadget {
    display: none !important;
}

.lang-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.lang-popup {
    background: #222;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.lang-popup-badge {
    display: inline-block;
    background: #2b2b2b;
    color: #10b981;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.lang-popup h2 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.lang-popup p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lang-popup-actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.lang-popup-yes,
.lang-popup-no {
    border: none;
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.2s;
}

.lang-popup-yes {
    background: #10b981;
    color: #fff;
}

.lang-popup-yes:hover {
    background: #059669;
}

.lang-popup-no {
    background: transparent;
    color: #888;
    border: 1px solid #444;
}

.lang-popup-no:hover {
    color: #c0c0c0;
    border-color: #555;
}

.lang-popup[dir="rtl"] .lang-popup-actions {
    direction: rtl;
}