:root {
    --primary: #06283D;
    --secondary: #1363DF;
    --accent: #00C897;
    --light: #F4F7FB;
    --white: #FFFFFF;
    --dark: #1E293B;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    background: var(--white);
    color: var(--dark);
}

.main-navbar {
    background: var(--primary);
    padding: 15px 0;
}

.main-navbar .navbar-brand,
.main-navbar .nav-link {
    color: var(--white);
}

.main-navbar .nav-link:hover {
    color: var(--accent);
}

.hero-section {
    min-height: 88vh;
    background: linear-gradient(135deg, #06283D, #1363DF, #00C897);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-badge {
    background: rgba(255,255,255,.18);
    padding: 10px 18px;
    border-radius: 30px;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.4;
}

.hero-text {
    font-size: 18px;
    line-height: 1.9;
    margin: 25px 0;
}

.btn-primary-custom {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: bold;
}

.btn-outline-light-custom {
    color: var(--white);
    border: 1px solid rgba(255,255,255,.6);
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: bold;
}

.hero-card {
    background: rgba(255,255,255,.15);
    border-radius: 32px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

.match-card {
    background: var(--white);
    color: var(--dark);
    border-radius: 24px;
    padding: 25px;
}

.status-open {
    background: #FFF3CD;
    color: #856404;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

.players {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.players span {
    width: 42px;
    height: 42px;
    background: var(--accent);
    border-radius: 50%;
    display: block;
}

.players span.empty {
    background: #E5E7EB;
}

.price-box {
    margin-top: 18px;
    background: var(--accent);
    color: var(--white);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.section {
    padding: 80px 0;
}

.light-section {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-weight: bold;
    color: var(--primary);
}

.feature-card,
.step-card,
.role-card {
    background: var(--white);
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    height: 100%;
}

.feature-card .icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.step-card span {
    width: 48px;
    height: 48px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.role-card {
    color: var(--white);
}

.admin-role {
    background: linear-gradient(135deg, #06283D, #1363DF);
}

.owner-role {
    background: linear-gradient(135deg, #009688, #00C897);
}

.player-role {
    background: linear-gradient(135deg, #FF6B00, #FFA500);
}

.main-footer {
    background: var(--primary);
    color: var(--white);
    padding: 25px 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 34px;
    }

    .hero-section {
        text-align: center;
        padding: 55px 0;
    }
}