/* assets/css/style.css */
:root {
    --primary-red: #dc3545;
    --primary-black: #1a1a1a;
    --primary-gold: #ffc107;
    --secondary-black: #2d2d2d;
}

body {
    background-color: var(--primary-black);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('../img/banner-bg.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.countdown-item {
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    padding: 20px;
    min-width: 120px;
    backdrop-filter: blur(10px);
}

.countdown-item span:first-child {
    display: block;
    font-size: 3em;
    font-weight: bold;
    color: var(--primary-gold);
}

.countdown-item span:last-child {
    font-size: 1em;
    text-transform: uppercase;
    color: #fff;
}

/* Cards de Lutadores */
.fighter-card {
    background: linear-gradient(145deg, var(--secondary-black), var(--primary-black));
    border: 1px solid var(--primary-red);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.fighter-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
}

.fighter-card .fighter-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.fighter-card .fighter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fighter-card .fighter-corner {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.corner-azul { background: #0d6efd; }
.corner-vermelho { background: var(--primary-red); }

.fighter-card .fighter-info {
    padding: 20px;
    text-align: center;
}

.fighter-card .fighter-name {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.fighter-card .fighter-nickname {
    font-style: italic;
    color: #aaa;
    margin-bottom: 10px;
}

.fighter-card .fighter-stats {
    display: flex;
    justify-content: space-around;
    margin: 15px 0;
    padding: 10px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.8em;
    color: #aaa;
}

/* Card de Luta */
.fight-card {
    background: linear-gradient(90deg, #0d6efd 50%, var(--primary-red) 50%);
    border-radius: 15px;
    padding: 30px;
    margin: 20px 0;
    position: relative;
}

.fight-card::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3em;
    font-weight: bold;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.fight-card .fighter-left,
.fight-card .fighter-right {
    width: 45%;
}

.fight-card .fighter-left {
    float: left;
    text-align: right;
}

.fight-card .fighter-right {
    float: right;
    text-align: left;
}

/* Página de Ingressos */
.ticket-card {
    background: linear-gradient(135deg, var(--secondary-black), var(--primary-black));
    border: 1px solid var(--primary-gold);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s;
}

.ticket-card:hover {
    transform: scale(1.05);
}

.ticket-type {
    font-size: 2em;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.ticket-price {
    font-size: 2.5em;
    font-weight: bold;
    color: #fff;
    margin: 20px 0;
}

.ticket-price small {
    font-size: 0.5em;
    color: #aaa;
}

.ticket-features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ticket-features li {
    padding: 10px;
    border-bottom: 1px solid #444;
}

.ticket-features li:last-child {
    border-bottom: none;
}

.ticket-features i {
    color: var(--primary-gold);
    margin-right: 10px;
}

/* Ranking */
.ranking-table {
    background: var(--secondary-black);
    border-radius: 15px;
    overflow: hidden;
}

.ranking-table thead {
    background: var(--primary-red);
}

.ranking-table th {
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.ranking-table td {
    padding: 15px;
    border-bottom: 1px solid #444;
}

.ranking-table tr:last-child td {
    border-bottom: none;
}

.ranking-position {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: var(--primary-gold);
    color: var(--primary-black);
    border-radius: 50%;
    font-weight: bold;
}

/* Formulários */
.form-container {
    background: var(--secondary-black);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 50px auto;
}

.form-control {
    background: rgba(255,255,255,0.1);
    border: 1px solid #444;
    color: #fff;
    padding: 12px;
}

.form-control:focus {
    background: rgba(255,255,255,0.15);
    border-color: var(--primary-gold);
    color: #fff;
    box-shadow: none;
}

.form-label {
    color: var(--primary-gold);
    font-weight: 500;
}

/* Botões */
.btn-danger {
    background: linear-gradient(45deg, var(--primary-red), #c82333);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-warning {
    background: linear-gradient(45deg, var(--primary-gold), #e0a800);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade */
@media (max-width: 768px) {
    .countdown-timer {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .countdown-item {
        min-width: calc(50% - 30px);
    }
    
    .fighter-card .fighter-image {
        height: 200px;
    }
}
/* Estilos para o footer */
.footer {
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    border-top: 3px solid #dc3545;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #dc3545, #ffc107, #dc3545, transparent);
}

.social-links a {
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: #ffc107 !important;
}

.footer a:hover {
    color: #ffc107 !important;
    transition: all 0.3s;
}

.newsletter-form .form-control:focus {
    border-color: #ffc107;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

/* Scroll down indicator */
.scroll-down {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 12px;
    letter-spacing: 2px;
    color: #fff;
    opacity: 0.7;
    transition: all 0.3s;
}

.scroll-down:hover {
    opacity: 1;
    transform: translateY(-5px);
}