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

body {
    font-family: 'Bebas Neue', sans-serif;
    background: #0a0a0a;
    color: white;
}

/* HERO */
.hero {
    height: 100vh;
    background: url('assets/img/antoni-napierala-zawodnik-mma.jpg') center/cover no-repeat;
    position: relative;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    padding-left: 50px;
}

.hero h1 {
    font-size: 80px;
}

.hero p {
    font-size: 24px;
    color: #ff2c2c;
}

button {
    width: 250px;
    font-size: 18px;
    margin-top: 20px;
    padding: 15px 30px;
    border: none;
    background: red;
    color: white;
    cursor: pointer;
}

/* SEKCJE */
.section {
    padding: 60px 20px;
    max-width: 1400px;
    margin: auto;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: red;
}

/* ABOUT */
.about-container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 48px;
}

.tagline {
    color: #ff2c2c;
    margin: 15px 0;
    font-size: 20px;
}

.about-list {
    list-style: none;
    margin: 20px 0;
}

.about-list li {
    margin-bottom: 10px;
    font-size: 18px;
}

.about-desc {
    margin-top: 20px;
    line-height: 1.6;
    color: #ccc;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

/* FIGHTS */
.fights h2 {
    margin-bottom: 30px;
    font-size: 36px;
}

.fight-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fight-item {
    display: grid;
    grid-template-columns: 60px 1fr 2fr 100px;
    align-items: center;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
}

.fight-item:hover {
    background: #222;
}

/* RESULT */
.result {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    border-radius: 5px;
}

.result.win {
    background: #2ecc71;
}

.result.loss {
    background: #e74c3c;
}

.result.neutral {
    background: #555;
}

/* FIGHTER */
.fighter {
    margin-left: 20px;
}

.fighter h3 {
    font-size: 18px;
}

.record {
    font-size: 14px;
    color: #aaa;
}

/* DETAILS */
.details strong {
    display: block;
    font-size: 16px;
}

.details p {
    font-size: 14px;
    color: #aaa;
}

/* DATE */
.date {
    text-align: right;
}

.date span {
    font-weight: bold;
}

.date small {
    display: block;
    color: #aaa;
}

/* TABELA */
table {
    width: 100%;
    border-collapse: collapse;
}

td {
    border-bottom: 1px solid #333;
    padding: 10px;
}

/* VIDEO */
iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/*!* SPONSORS *!*/
/*.sponsors {*/
/*    text-align: center;*/
/*}*/

/*.sponsors h2 {*/
/*    font-size: 36px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.sponsors-text {*/
/*    max-width: 700px;*/
/*    margin: 0 auto 40px;*/
/*    color: #ccc;*/
/*    line-height: 1.6;*/
/*}*/

/*!* SLIDER *!*/
/*.sponsor-slider {*/
/*    overflow: hidden;*/
/*    position: relative;*/
/*    width: 100%;*/
/*}*/

/*.sponsor-track {*/
/*    display: flex;*/
/*    width: max-content;*/
/*    animation: scroll 20s linear infinite;*/
/*    gap: 40px;*/
/*}*/

/*.sponsor-track img {*/
/*    height: 150px;*/
/*    filter: grayscale(100%);*/
/*    opacity: 0.7;*/
/*    transition: 0.3s;*/
/*}*/

/*.sponsor-track img:hover {*/
/*    filter: grayscale(0%);*/
/*    opacity: 1;*/
/*    transform: scale(1.1);*/
/*}*/

/*.become-sponsor {*/
/*    padding-top: 20px;*/
/*    font-size: 22px;*/
/*}*/

/*!* ANIMACJA *!*/
/*@keyframes scroll {*/
/*    0% {*/
/*        transform: translateX(0);*/
/*    }*/
/*    100% {*/
/*        transform: translateX(-50%);*/
/*    }*/
/*}*/


/* ===== SPONSORS PREMIUM ===== */

.sponsors {
    position: relative;
    padding: 100px 20px;
    /*background: radial-gradient(circle at center, #111 0%, #050505 100%);*/
    overflow: hidden;
}

/* subtle glow */
.sponsors::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    /*background: rgba(255, 0, 0, 0.08);*/
    /*filter: blur(120px);*/
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
}

/* HEADER */
.sponsors-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.sponsors-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.sponsors-header p {
    color: #aaa;
    line-height: 1.6;
}

/* SLIDER */
.sponsor-slider {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, white 20%, white 80%, transparent);
}

.sponsor-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: premiumScroll 25s linear infinite;
}

/* CARD */
.sponsor-card {
    min-width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;

    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.sponsor-card img {
    max-height: 120px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.4s;
}

/* HOVER */
.sponsor-card:hover {
    border: 1px solid rgba(255,0,0,0.4);
    box-shadow: 0 0 20px rgba(255,0,0,0.3);
}

.sponsor-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* CTA */
.sponsor-cta {
    text-align: center;
    margin-top: 80px;
}

.sponsor-cta h3 {
    font-size: 28px;
}

.sponsor-cta p {
    color: #aaa;
    margin: 10px 0 20px;
}

.btn-sponsor {
    font-size: 18px;
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(45deg, red, #ff4d4d);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-sponsor:hover {
    box-shadow: 0 0 15px rgba(255,0,0,0.6);
}

/* ANIMACJA */
@keyframes premiumScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* ===== GALLERY ===== */

.gallery {
    padding: 100px 20px;
}

.gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 42px;
}

.gallery-header p {
    color: #aaa;
}

/* GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

/* ELEMENT */
.gallery-item {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* HOVER */
.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
}

/* STRZAŁKI */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    transition: 0.3s;
}

.arrow:hover {
    color: red;
    transform: translateY(-50%) scale(1.2);
}

.arrow.left {
    left: 30px;
}

.arrow.right {
    right: 30px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

/* ===== FOOTER ===== */

.footer {
    background: #050505;
    padding: 60px 20px 20px;
    text-align: center;
    border-top: 1px solid #111;
}

.footer-content h3 {
    font-size: 28px;
}

.footer-tagline {
    color: #aaa;
    margin: 10px 0 25px;
}

/* CONTACT */
.footer-contact {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: 0.3s;
}

/* underline hover efekt */
.footer-contact a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: red;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.footer-contact a:hover::after {
    width: 100%;
}

.footer-contact a:hover {
    color: #ff2c2c;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .fight-item {
        grid-template-columns: 50px 1fr;
        gap: 10px;
    }

    .details, .date {
        grid-column: span 2;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}