:root {
    --tm-bg: #080808;
    --tm-card: #121212;
    --tm-red: #e50914;
    --tm-gold: #d4af37;
    --tm-white: #ffffff;
    --tm-muted: #b5b5b5;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--tm-bg);
    color: var(--tm-white);
}

a {
    text-decoration: none;
}

.tm-card {
    background: var(--tm-card);
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.08);
}

.tm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--tm-red);
    color: #fff;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.tm-btn-gold {
    background: var(--tm-gold);
    color: #111;
}

.tm-muted {
    color: var(--tm-muted);
    .univers-section {
    background: #050505;
    padding: 45px 6%;
    color: #fff;
}

.univers-header {
    margin-bottom: 25px;
}

.univers-header span {
    color: #d9a441;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.univers-header h2 {
    font-size: 32px;
    font-weight: 900;
    margin: 5px 0 10px;
}

.univers-line {
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #d9a441, #ffcc66);
    border-radius: 30px;
}

.univers-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.univers-card {
    position: relative;
    height: 240px;
    border-radius: 10px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #fff;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.univers-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.univers-card:hover img {
    transform: scale(1.08);
}

.univers-card:hover {
    border-color: #d9a441;
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(217, 164, 65, 0.18);
}

.univers-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92),
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0.05)
    );
}

.univers-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 2;
}

.univers-content h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    line-height: 1.05;
}

.univers-content p {
    font-size: 14px;
    color: #d8d8d8;
    margin: 0;
    line-height: 1.35;
    max-width: 85%;
}

.univers-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: all 0.3s ease;
}

.univers-card:hover .univers-arrow {
    background: #d9a441;
    color: #000;
    border-color: #d9a441;
}

@media (max-width: 1200px) {
    .univers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .univers-section {
        padding: 35px 18px;
    }

    .univers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .univers-card {
        height: 220px;
    }

    .univers-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .univers-grid {
        grid-template-columns: 1fr;
    }

    .univers-card {
        height: 230px;
    }
}
}