/* ===== LUSO ESPORTS TERMS (PRO VERSION) ===== */

.terms-container {
    max-width: 1000px;
    margin: 60px auto;
    padding: 20px;
    line-height: 1.8;
    font-family: 'Segoe UI', Roboto, sans-serif;
}

/* HERO */
.terms-hero {
    text-align: center;
    margin-bottom: 50px;
    padding: 50px 20px;
    background: linear-gradient(135deg, #0ee945, #38f888);
    color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(56,189,248,0.3);
}

.terms-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    -webkit-text-stroke: 1px rgb(0, 0, 0);
}

.terms-hero p {
    opacity: 0.9;
    color: #000000;
}

.terms-hero a {
    color: rgb(0, 157, 255);
    -webkit-text-stroke:0.2px rgb(0, 0, 0);
}

/* SECTION CARD */
.terms-section {
    margin-bottom: 35px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border-left: 4px solid #38bdf8;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.terms-section:hover {
    transform: translateY(-5px);
}

/* HEADINGS */
.terms-section h2 {
    color: #38bdf8;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.terms-section h3 {
    color: #0ea5e9;
    margin-top: 20px;
    margin-bottom: 10px;
}

/* TEXT */
.terms-section p {
    color: #cbd5f5;
}

/* LISTS */
.terms-section ul,
.terms-section ol {
    margin: 15px 0;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.terms-section li {
    margin-bottom: 8px;
    color: #e2e8f0;
}

/* TOURNAMENT TIERS */
.tournament-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.tier-card {
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.tier-card h3 {
    color: #0ee945;
}

.tier-card:hover {
    transform: scale(1.05);
}

/* Tier Colors */
.tier-card.elite {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.tier-card.pro {
    background: linear-gradient(135deg, #f1702a, #fea053);
    color: white;
}

.tier-card.legend {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

/* BAN SECTION */
.ban-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.ban-item {
    padding: 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border-left: 4px solid #ef4444;
}

.ban-item h4 {
    color: #ef4444;
    margin-bottom: 10px;
}

/* DISPUTE */
.dispute-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.dispute-channels div {
    background: rgba(255,255,255,0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #38bdf8;
    text-align: center;
}

/* NOTICE BOX */
.notice {
    background: rgba(245,158,11,0.1);
    border-left: 4px solid #f59e0b;
    padding: 15px;
    border-radius: 10px;
}

/* LINKS */
a {
    color: #38bdf8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
    .terms-container {
        margin: 20px;
        padding: 10px;
    }

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

    .terms-section {
        padding: 20px;
    }

    .tournament-tiers,
    .ban-categories,
    .dispute-channels {
        grid-template-columns: 1fr;
    }
}