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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* HEADER */
.header {
    background: #000;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #D2042D;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #D2042D;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background: rgb(0, 0, 0);
    margin: 3px 0;
    transition: 0.3s;
}

/* HERO */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('https://images.unsplash.com/photo-1534367507877-0edd93bd013b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    background: #D2042D;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #a00324;
}

/* CARDS */
.info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

.info-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: white;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    transition: transform 0.3s;
    border: 1px solid rgba(210, 4, 45, 0.2);
}

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

.card i {
    font-size: 3rem;
    color: #D2042D;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: white;
}

.card p {
    color: #ccc;
}

/* FOOTER */
.footer {
    background: #000;
    color: rgb(0, 0, 0);
    text-align: center;
    padding: 30px 0;
}

/* LEGENDS PAGE */
.legends-page {
    padding: 50px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.search-box {
    max-width: 500px;
    margin: 0 auto 40px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 1rem;
    outline: none;
}

.search-box button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: #D2042D;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
}

/* Efsane kartları için TEMEL CSS - Bu mutlaka olmalı */
.legends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.legend-card {
    background: linear-gradient(145deg, #1e1e1e, #2a2a2a);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    border: 1px solid rgba(210, 4, 45, 0.2);
}

.legend-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block; /* Bu önemli! */
}

.legend-content {
    padding: 20px;
}

.legend-content h3 {
    margin: 0 0 10px 0;
    color: white;
}

.legend-stats {
    display: flex;
    gap: 10px;
    margin: 10px 0;
}

.stat {
    background: rgba(30, 30, 30, 0.8);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    color: #ccc;
}

/* GALLERY */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 200px;
}

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

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

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .legends-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .info-section {
        padding: 40px 0;
    }
}
/* Hover efekti geliştirme */
.legend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(210, 4, 45, 0.3);
}

/* Animasyon ekleme */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.legend-card {
    animation: fadeIn 0.5s ease forwards;
}
/* ===== HOVER BÜYÜME EFECTİ ===== */
.legend-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    overflow: hidden;
}

/* Normal durum */
.legend-card {
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Hover durumunda */
.legend-card:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(210, 4, 45, 0.3);
    z-index: 100;
}

/* Resim büyüme efekti */
.legend-card .legend-img {
    transition: transform 0.6s ease;
    transform: scale(1);
}

.legend-card:hover .legend-img {
    transform: scale(1.15);
}

/* İçerik görünürlüğü */
.legend-content {
    transition: all 0.3s ease;
    background: rgba(30, 30, 30, 0.9);
    position: relative;
}

.legend-card:hover .legend-content {
    background: rgba(40, 40, 40, 0.95);
    padding-bottom: 25px;
}

/* Detaylı bilgi (hover'da gözükecek) */
.legend-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    padding: 0 20px;
}

.legend-card:hover .legend-details {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
    padding: 15px 20px;
    background: rgba(25, 25, 25, 0.9);
    border-radius: 0 0 10px 10px;
    color: #ccc;
}

/* İstatistik çubuğu efekti */
.stat-bar {
    height: 5px;
    background: #e0e0e0;
    border-radius: 3px;
    margin: 5px 0;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: #D2042D;
    width: 0;
    transition: width 1.5s ease;
}

.legend-card:hover .stat-fill {
    width: var(--stat-width);
}

/* Kart üstünde parlaklık efekti */
.legend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.7s ease;
    z-index: 2;
}

.legend-card:hover::before {
    left: 100%;
}

/* Diğer kartlar küçülsün efekti (opsiyonel) */
.legends-grid:hover .legend-card:not(:hover) {
    transform: scale(0.95);
    opacity: 0.7;
    filter: blur(1px);
}

/* Mobilde hover efekti kaldırma */
@media (max-width: 768px) {
    .legend-card:hover {
        transform: scale(1);
    }
    
    .legends-grid:hover .legend-card:not(:hover) {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}
/* MOBİL MENÜ TOGGLE */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

/* AKTİF MENÜ LİNKİ */
.nav-menu a.active {
    background-color: #D2042D !important;
    color: white !important;
}

/* RESPONSIVE TASARIM */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    /* MENÜ TOGGLE ANİMASYONU */
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}
/* ===== UFC HEADER STİLLERİ ===== */

/* HEADER CONTAINER */
.ufc-header {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 3px solid #D2042D;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* NAVBAR */
.ufc-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO */
.ufc-logo {
    color: #D2042D;
    font-size: 28px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.ufc-logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 10px rgba(210, 4, 45, 0.5);
}

.ufc-logo-icon {
    font-size: 32px;
    color: #D2042D;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* NAV MENU */
.ufc-nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    background: rgba(20, 20, 20, 0.9);
    padding: 8px;
    border-radius: 50px;
    border: 2px solid rgba(210, 4, 45, 0.3);
    margin: 0;
}

.ufc-nav-menu li {
    position: relative;
}

.ufc-nav-menu a {
    color: white;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.ufc-nav-menu a i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.ufc-nav-menu a:hover {
    background: rgba(210, 4, 45, 0.15);
    transform: translateY(-2px);
}

.ufc-nav-menu a:hover i {
    transform: scale(1.2);
}

/* ACTIVE PAGE */
.ufc-nav-menu a.active {
    background: linear-gradient(135deg, #D2042D, #a80324);
    color: white;
    box-shadow: 0 5px 15px rgba(210, 4, 45, 0.4);
}

.ufc-nav-menu a.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: white;
    border-radius: 3px 3px 0 0;
}

/* MOBILE MENU TOGGLE */
.ufc-menu-toggle {
    display: none;
    cursor: pointer;
    background: #D2042D;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    font-size: 20px;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.ufc-menu-toggle:hover {
    background: #a80324;
    transform: rotate(90deg);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .ufc-nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        border-radius: 0;
        border: none;
        border-top: 3px solid #D2042D;
        z-index: 999;
    }
    
    .ufc-nav-menu.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .ufc-nav-menu li {
        width: 100%;
    }
    
    .ufc-nav-menu a {
        justify-content: center;
        padding: 15px;
        border-radius: 10px;
        margin: 5px 0;
    }
    
    .ufc-menu-toggle {
        display: flex;
    }
    
    .ufc-logo span {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .ufc-logo span {
        display: none;
    }
    
    .ufc-logo-icon {
        font-size: 28px;
    }
    
    .ufc-navbar {
        padding: 0 15px;
    }
}
/* === VIDEO BACKGROUND HERO === */
.hero-video-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* VIDEO BACKGROUND */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(210, 4, 45, 0.2) 0%, 
        rgba(0, 0, 0, 0.7) 50%, 
        rgba(0, 0, 0, 0.8) 100%);
    z-index: 2;
}

/* HERO CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px #D2042D, 0 0 20px #D2042D, 0 0 30px #D2042D;
    }
    to {
        text-shadow: 0 0 20px #D2042D, 0 0 30px #D2042D, 0 0 40px #D2042D;
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    line-height: 1.6;
}

/* HERO BUTTON */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #D2042D, #a80324);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(210, 4, 45, 0.4);
    border-color: white;
}

.hero-btn i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(10px);
}

/* VIDEO CONTROLS */
.video-controls {
    position: absolute;
    bottom: 100px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.control-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid white;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.control-btn:hover {
    background: #D2042D;
    transform: scale(1.1);
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: white;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .video-controls {
        bottom: 80px;
        right: 20px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .video-controls {
        flex-direction: column;
        right: 15px;
        bottom: 100px;
    }
}
/* === MMA DETAYLI AÇIKLAMA STİLLERİ === */
.mma-details-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 80px 0;
    margin-top: 50px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mma-details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D2042D, transparent);
}

.mma-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.mma-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.mma-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: #D2042D;
    border-radius: 2px;
}

.mma-text {
    background: rgba(30, 30, 30, 0.8);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #D2042D;
}

.mma-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #e0e0e0;
}

.mma-text h3 {
    color: #D2042D;
    margin: 40px 0 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid rgba(210, 4, 45, 0.3);
    padding-bottom: 10px;
}

/* HIGHLIGHTS */
.mma-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.highlight {
    background: rgba(40, 40, 40, 0.9);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.highlight:hover {
    transform: translateY(-10px);
    border-color: #D2042D;
}

.highlight i {
    font-size: 3rem;
    color: #D2042D;
    margin-bottom: 20px;
}

.highlight h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.highlight p {
    color: #aaa;
    font-size: 1rem;
    margin: 0;
}

/* MMA RULES */
.mma-rules {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.mma-rules li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    color: #e0e0e0;
}

.mma-rules li:last-child {
    border-bottom: none;
}

.mma-rules .fa-check {
    color: #00b894;
    font-size: 1.2rem;
}

.mma-rules .fa-ban {
    color: #ff6b6b;
    font-size: 1.2rem;
}

/* MMA STATS */
.mma-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid rgba(210, 4, 45, 0.3);
}

.stat {
    background: rgba(210, 4, 45, 0.1);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid rgba(210, 4, 45, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    background: rgba(210, 4, 45, 0.2);
    transform: scale(1.05);
}

.stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #D2042D;
    margin-bottom: 10px;
}

.stat .label {
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mma-title {
        font-size: 2.2rem;
    }
    
    .mma-text {
        padding: 25px;
    }
    
    .mma-highlights {
        grid-template-columns: 1fr;
    }
    
    .mma-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat .number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .mma-title {
        font-size: 1.8rem;
    }
    
    .mma-stats {
        grid-template-columns: 1fr;
    }
    
    .highlight {
        padding: 20px;
    }
}
