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

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    z-index: 1000;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #dc2626;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.mobile-menu-links .nav-link {
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s;
}

.mobile-menu-links .nav-link:hover {
    background-color: rgba(220, 38, 38, 0.1);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.hero-btn {
    font-size: 1.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
}

/* Buttons */
.btn-primary {
    background: #dc2626;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: black;
}

/* Event Info */
.event-info {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(to bottom, #000, #1f1f1f);
}

.event-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-subtitle {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.event-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.event-detail i {
    color: #dc2626;
}

/* Main Event */
.main-event {
    padding: 5rem 0;
    background: #000;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.8rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
}

.main-fight {
    background: rgba(31, 31, 31, 0.5);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    padding: 1.2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.2rem;
    align-items: center;
}

.fighter {
    text-align: center;
}

.fighter-image {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    margin-bottom: 1rem;
    object-fit: cover;
}

.fighter-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #fff;
}

.fighter-stats {
    color: #ccc;
    margin-bottom: 1rem;
}

.fighter-stats p {
    margin-bottom: 0.5rem;
}

.fighter-corner {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.fighter-corner.red {
    background: rgba(220, 38, 38, 0.2);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.3);
}

.fighter-corner.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.vs-section {
    text-align: center;
}

.vs-text {
    font-size: 4rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 1rem;
}

.fight-details {
    color: #ccc;
}

/* Fight Card Section */
.fight-card-section {
    padding: 5rem 0;
    background: #1f1f1f;
}

.fights-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fight-item {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 2px solid #dc2626;
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    transition: border-color 0.3s;
}

.fight-item:hover {
    border-color: rgba(220, 38, 38, 0.5);
}

.fighter-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fighter-info.right {
    text-align: right;
}

.fighter-avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #dc2626;
}

.fighter-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    color: #ffffff !important;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.8) !important;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #dc2626;
}

.fighter-details span {
    color: #ccc;
    font-size: 0.9rem;
}

.fight-vs {
    text-align: center;
}

.vs {
    font-size: 1.5rem;
    font-weight: bold;
    color: #dc2626;
    display: block;
    margin-bottom: 0.5rem;
}

.fight-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: #ccc;
}

.fighter-card-photo {
    width: 140px;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    border: 3px solid #dc2626;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.fighter-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fighter-card-info .fighter-details h4 {
    color: #ffffff !important;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.9) !important;
    padding: 8px 12px;
    border-radius: 6px;
    border: 2px solid #dc2626;
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
    text-align: center;
}

.fighter-card-info.right {
    align-items: center;
    text-align: center;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(to right, rgba(220, 38, 38, 0.2), #000);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* Gallery Preview */
.gallery-preview {
    padding: 5rem 0;
    background: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid #333;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero-btn {
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
    }
    
    .event-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .main-fight {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .fighter-image {
        width: 200px;
        height: 200px;
    }
    
    .vs-text {
        font-size: 3rem;
    }
    
    .fight-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .fighter-card-info .fighter-details h4 {
        font-size: 1rem;
        padding: 6px 10px;
    }
    
    .fighter-card-photo {
        width: 90px;
        height: 100px;
    }
    
    .gallery-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .event-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        height: 300px;
    }
    
    .hero-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .fighter-image {
        width: 150px;
        height: 150px;
    }
    
    .main-fight {
        padding: 1.5rem;
    }
    
    .fight-item {
        padding: 1rem;
    }
    
    .fighter-card-photo {
        width: 80px;
        height: 90px;
    }
    
    .fighter-card-info .fighter-details h4 {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.fighter-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #dc2626;
    margin-bottom: 0.5rem;
}

.fighter-info-with-photo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.fighter-info-with-photo.right {
    align-items: center;
}
