:root {
    --bg-color: #0b0f19;
    --bg-secondary: #12182b;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --accent-primary: oklch(67.3% 0.182 276.935);
    --accent-secondary: #00b8ff;
    --font-heading: 'Hind Siliguri', 'Outfit', sans-serif;
    --font-body: 'Hind Siliguri', 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}
.points-table {
  font-family: "Tiro Bangla", serif;
  font-weight: 400;
  font-style: normal;
}
.banglaFont {
    font-family: "Tiro Bangla", serif;
    font-weight: 400;
    font-style: normal;
}

.text {
    font-weight: 400;
    font-style: normal;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo img {
    height: 40px;
}

.logo span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

/* Nav Toggle Button (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--accent-primary);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--accent-primary);
}

/* Hero */
.hero {
    height: 600px;
    background: linear-gradient(to bottom, rgba(11, 15, 25, 0.3), var(--bg-color)), url('assets/hero2.webp') no-repeat;
    display: flex;
    align-items: center;
    padding: 0 5%;
    margin-top: 100px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.highlight {
    color: transparent;
    -webkit-text-stroke: 2px var(--accent-primary);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-primary);
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 800;
    font-family: var(--font-heading);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

/* Sections */
.section {
    padding: 5rem 5%;
}

.dark-section {
    background-color: var(--bg-secondary);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: var(--accent-primary);
}

/* Fixtures */
.fixtures-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
}

.fixture-card {
    min-width: 300px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.fixture-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.fixture-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.live-indicator {
    color: var(--accent-primary);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.live-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0, 255, 136, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0); }
}

.teams {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.team {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.team span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Teams Grid */
.teams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

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

.team-badge {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    border: 1px solid transparent;
    opacity: 0;
    animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.team-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-primary);
    transform: translateY(-5px) scale(1.05);
}

.team-flag-img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.fixture-flag {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Venues Grid */
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.venue-card {
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

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

.venue-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.venue-info {
    padding: 1.5rem;
}

.venue-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.venue-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Star Card */
.star-card {
    display: flex;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.star-image {
    flex: 1;
    min-height: 300px;
}

.star-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.star-details h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.star-country {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.star-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat span {
    font-size: 0.8rem;
    font-weight: 400;
    font-family: var(--font-body);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--accent-secondary);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.news-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-tag {
    font-size: 0.7rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.news-content h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    flex: 1;
}

.news-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

/* Footer */
footer {
    background: #000;
    padding: 4rem 5%;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.footer-content p {
    color: var(--text-secondary);
}

/* Full Fixtures Page */
.round-header {
    margin: 4rem 0 2rem 0;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-primary);
    text-align: center;
}
.round-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-primary);
}

.full-fixtures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.full-fixture-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.full-fixture-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-secondary);
}

.fixture-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.fixture-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.fixture-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    text-align: center;
}

.fixture-team img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.fixture-team span {
    font-size: 1.1rem;
    font-weight: bold;
}

.fixture-vs {
    font-weight: 800;
    color: var(--text-secondary);
    font-size: 1.2rem;
    padding: 0 1rem;
}

.fixture-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.fixture-bottom p {
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Venues Page Stats */
.venues-stats-section {
    padding: 2rem 5%;
    background: var(--bg-secondary);
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-box:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.15);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Search & Filters Section */
.filters-section {
    padding: 0 5%;
    margin-bottom: 3rem;
}

.search-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.search-box {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    flex: 1;
    min-width: 280px;
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    margin-left: 0.5rem;
}

.search-icon {
    color: var(--text-secondary);
}

.filter-box {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-box select {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-box select:focus {
    border-color: var(--accent-primary);
}

/* Venues Page Grid */
.venues-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-card-img-container {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.venue-card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.venue-card:hover .venue-card-img-container img {
    transform: scale(1.06);
}

.venue-badge-highlight {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: #0b0f19;
    font-weight: bold;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-family: var(--font-heading);
    z-index: 1;
}

.venue-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.venue-country-flag {
    width: 28px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.venue-location {
    font-size: 0.85rem;
    color: var(--accent-secondary);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.venue-capacity {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.venue-desc-snippet {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.7rem 1.5rem;
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.venue-card:hover .btn-secondary {
    background: var(--accent-primary);
    color: var(--bg-color);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-secondary);
}

/* Modal Overlay & content */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.modal-open {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 24px;
    max-width: 750px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-open .modal-content {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
    line-height: 1;
}

.modal-close-btn:hover {
    color: var(--accent-primary);
}

.modal-body {
    display: flex;
    flex-direction: column;
}

.modal-img-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info {
    padding: 2.5rem;
}

.modal-info h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

.modal-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-secondary);
    font-size: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.modal-desc-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
}

/* --- Points Table Page --- */
.points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.group-table-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.group-table-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.2);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.03);
}

.group-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--accent-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}

.group-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
}

.group-subtitle {
    font-size: 0.8rem;
    color: var(--accent-secondary);
    font-weight: 600;
    text-transform: uppercase;
}

.table-responsive {
    overflow-x: auto;
}

.points-table {
    width: 100%;
    border-collapse: collapse;
}

.points-table th {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.8rem 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.points-table th.align-left, 
.points-table td.align-left {
    text-align: left;
}

.points-table td {
    padding: 0.8rem 0.4rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    vertical-align: middle;
    text-align: center;
}

.points-table tbody tr {
    transition: background-color 0.2s ease;
}

.points-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.points-table tbody tr:last-child td {
    border-bottom: none;
}

.points-table .pos-col {
    width: 28px;
    font-weight: 700;
}

.points-table .pos-1,
.points-table .pos-2 {
    color: var(--accent-primary);
}

.points-table .pos-3 {
    color: var(--accent-secondary);
}

.points-table .pos-4 {
    color: var(--text-secondary);
}

.points-table .team-col {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}

.points-table .team-col img {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.points-table .pts-col {
    font-weight: 800;
    color: var(--accent-primary);
    background: rgba(0, 255, 136, 0.03);
    border-radius: 4px;
}

.points-table .gd-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: block;
    font-weight: normal;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 3.5rem; }
    .star-card { flex-direction: column; }
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(11, 15, 25, 0.96);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem 2.5rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    }
    .nav-links.active {
        transform: translateX(0);
    }
    .nav-links a {
        font-size: 1.1rem;
        letter-spacing: 2px;
        width: 100%;
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }
    .search-filter-container {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-box {
        justify-content: space-between;
    }
    .filter-box select {
        flex: 1;
    }
    .modal-img-wrapper {
        height: 220px;
    }
    .modal-info {
        padding: 1.5rem;
    }
    .modal-info h2 {
        font-size: 1.6rem;
    }
    .points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
