:root {
    --dark: black;
    --darker: black;
    --light: white;
    --gray: white;

}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
}

.site-header {
    background: var(--darker);
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.site-logo span {
    color: var(--primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}



.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 30px;
    color: var(--gray);
}

.action-btn {

    color: var(--light);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
    display: inline-block;
}

.action-btn:hover {
    background-color: red;
    transform: translateY(-2px);
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.dark-bg {
    background: #161616;
    max-width: 100%;
}

.dark-bg .content-section, 
#rules.content-section {
    max-width: 1200px;
    margin: 0 auto;
}

.custom-section-title, .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;

    letter-spacing: 2px;
    border-bottom: 3px solid var(--primary);

    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
}

.grid-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.fighter-card {
    background: #1e1e1e;
    border-radius: 8px;

    border-top: 4px solid var(--primary);
    transition: transform 0.3s;
}

.fighter-card:hover {
    transform: translateY(-100px);
}

.fighter-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.card-info {
    padding: 20px;
}

.card-info h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-info p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

.info-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.info-block p {
    margin-bottom: 15px;
    color: var(--gray);
}

.site-footer {
    background: var(--darker);
    text-align: center;
    padding: 30px;
    border-top: 1px solid #333;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .info-split-grid {
        grid-template-columns: 1fr;
    }
    .main-nav ul {
        display: none;
    }
}
.dodikbrother {
    margin-top:1000px;
    display: flex;
    justify-content: space-between;
}