/* Основні стилі для Top Poker Players Platform */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
    overflow-x: hidden;
}

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

img,
svg,
video,
canvas,
iframe {
    max-width: 100%;
}

input,
select,
textarea {
    max-width: 100%;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-top-bar {
    background-color: #2a2a2e;
    color: #fff;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.35);
    position: relative;
    z-index: 1001;
}

@media (min-width: 1025px) {
    .header-top-bar .container {
        max-width: none;
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .header-content {
        justify-content: center;
        width: 100%;
    }

    .main-nav {
        flex: 0 1 auto;
        width: fit-content;
        max-width: calc(100vw - 64px);
        justify-content: center;
        margin: 0 auto;
    }

    .main-nav .logo {
        margin-right: 0.75rem;
    }

    .nav-list {
        flex: 0 1 auto;
        justify-content: center;
    }
}

.header-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem 1rem;
    min-height: 64px;
    width: 100%;
}

/* Логотип безпосередньо в <nav> перед <ul> — один ряд по центру */
.main-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem 1rem;
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.main-nav .logo {
    flex: 0 0 auto;
    position: relative;
    z-index: 2;
    margin-right: 0.35rem;
}

.logo a {
    color: #F0DEB3;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.site-logo-img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
    flex: 0 0 auto;
}

.tpp-logo-text {
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 1.6rem;
    color: #F0DEB3;
}

.site-league-name {
    margin-left: 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    line-height: 1.1;
    color: rgba(240, 222, 179, 0.7);
}

.site-logo-mark {
    display: none;
    align-items: center;
    margin-left: 0.45rem;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    color: #F0DEB3;
}

/* Navigation */
.nav-list {
    list-style: none;
    display: flex;
    gap: 0;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-width: 0;
}

.nav-item {
    position: relative;
}

.nav-item.has-mega {
    position: relative;
}

.nav-item > a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.25s, background-color 0.25s;
    font-size: 0.84rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 1.1rem 0.55rem;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s;
    opacity: 0.6;
    line-height: 1;
}

.nav-item:hover > a,
.nav-item.active > a {
    color: #F0DEB3;
}

.nav-item:hover .nav-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-item.active > a {
    box-shadow: inset 0 -3px 0 #5A1F2B;
}

/* CTA Button */
.nav-item-cta {
    margin-left: 0.5rem;
}

.nav-cta {
    background: #5A1F2B !important;
    padding: 0.55rem 1.2rem !important;
    border-radius: 5px;
    color: #F0DEB3 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px;
    transition: background-color 0.25s, transform 0.2s, box-shadow 0.25s !important;
    box-shadow: 0 2px 8px rgba(90, 31, 43, 0.4);
}

.nav-cta:hover {
    background: #7a2f3f !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(90, 31, 43, 0.5);
}

@media (min-width: 1025px) {
    .header-top-bar .container {
        max-width: none;
        width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .header-top-bar .header-content {
        justify-content: center;
        width: 100%;
    }

    .header-top-bar .header-content > .main-nav {
        flex: 0 1 auto;
        width: auto;
        max-width: calc(100vw - 64px);
        justify-content: center;
        margin: 0 auto;
    }

    .header-top-bar .main-nav .logo {
        margin-right: 0.75rem;
    }

    .header-top-bar .main-nav > .nav-list {
        flex: 0 1 auto;
        justify-content: center;
    }
}

/* Mega Menu — compact dropdown under parent */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 180px;
    width: max-content;
    background: #3a3a40;
    border-top: 3px solid #5A1F2B;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s cubic-bezier(0.4,0,0.2,1), visibility 0.25s, transform 0.25s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    padding: 0.5rem 0;
}

.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega.mega-open .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-links li {
    margin: 0;
}

.mega-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.88rem;
    padding: 0.45rem 1.1rem;
    display: block;
    transition: background-color 0.2s, color 0.2s;
    font-weight: 400;
    white-space: nowrap;
}

.mega-links a:hover {
    background: rgba(240, 222, 179, 0.12);
    color: #F0DEB3;
}

.mega-links--rating .mega-links__group {
    margin: 0;
}
.mega-links--rating .mega-links__parent {
    font-weight: 700;
    color: #f0deb3;
}
.mega-links--rating .mega-links__children {
    list-style: none;
    margin: 0;
    padding: 0 0 0.15rem 0;
}
.mega-links--rating .mega-links__children a {
    padding-left: 1.65rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    white-space: normal;
    max-width: 280px;
}
.mega-links--rating .mega-links__children a:hover {
    color: #f0deb3;
}

.tpp-rating-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0.85rem 0 0;
}
.tpp-rating-subnav__link {
    display: inline-block;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(240, 222, 179, 0.88);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(240, 222, 179, 0.18);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tpp-rating-subnav__link:hover {
    color: #fff;
    border-color: rgba(240, 222, 179, 0.35);
}
.tpp-rating-subnav__link.is-active {
    color: #121217;
    background: linear-gradient(180deg, #f0d77f, #d4af37);
    border-color: rgba(240, 222, 179, 0.55);
}

/* Hamburger toggle button — hidden on desktop */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: #F0DEB3;
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Grids */
.news-grid,
.players-grid,
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Cards */
.news-card,
.player-card,
.video-card,
.tournament-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover,
.player-card:hover,
.video-card:hover,
.tournament-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.news-image img,
.player-avatar img,
.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #5568d3;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
}

.footer-section a:hover {
    color: #ffd700;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.footer-social a:hover {
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.45);
}

.footer-social .tpp-soc-svg-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.footer-social .tpp-soc-svg-wrap svg {
    display: block;
}

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

/* Sections */
section {
    margin: 3rem 0;
}

section h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Error Page */
.error-page {
    text-align: center;
    padding: 4rem 0;
}

.error-page h1 {
    font-size: 6rem;
    color: #667eea;
}

.error-page h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* ============================================
   Recent Games Statistics Module
   ============================================ */

/* Hero sections */
.recent-games-hero,
.stats-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    margin: 0;
}

.recent-games-hero h1,
.stats-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.recent-games-hero p,
.stats-hero p {
    opacity: 0.85;
    font-size: 1.1rem;
}

/* Overview cards */
.games-overview {
    margin: 0;
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.overview-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.overview-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.25rem;
}

.overview-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Games content layout */
.games-content {
    padding: 2rem 0;
}

.games-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

/* Filters */
.games-filters {
    margin-bottom: 1.5rem;
}

.filter-form {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.filter-group label {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.filter-group select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 0.9rem;
    min-width: 180px;
}

.btn-filter {
    background: #667eea;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-clear {
    background: #6c757d;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
}

.games-count {
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 0.95rem;
}

.no-games {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
}

/* Games grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* Game card */
.game-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.game-card-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.game-series {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #667eea;
    color: #fff;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.game-format {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #e2e3e5;
    color: #383d41;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.game-title {
    margin-bottom: 1rem;
    font-size: 1.15rem;
    line-height: 1.3;
}

.game-title a {
    color: #333;
    text-decoration: none;
}

.game-title a:hover {
    color: #667eea;
}

/* Game details */
.game-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.game-detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.detail-value {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

.detail-value.prize {
    color: #28a745;
}

/* Podium in card */
.game-podium {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.podium-title {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.podium-entry {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
}

.podium-position {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
}

.podium-1 { background: #ffd700; color: #333; }
.podium-2 { background: #c0c0c0; color: #333; }
.podium-3 { background: #cd7f32; }

.podium-name {
    flex: 1;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.podium-name:hover {
    color: #667eea;
}

.podium-prize {
    font-weight: 600;
    color: #28a745;
    font-size: 0.85rem;
}

/* Winner in card */
.game-winner {
    padding: 0.75rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4a 100%);
    border-radius: 8px;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.winner-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #333;
}

.winner-name {
    color: #333;
    text-decoration: none;
    font-weight: 700;
}

.winner-name:hover {
    text-decoration: underline;
}

.btn-game-details {
    display: block;
    text-align: center;
    margin-top: auto;
    padding: 0.6rem 1rem;
    background: #667eea;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-game-details:hover {
    background: #5568d3;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pagination-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.pagination-link:hover,
.pagination-link.active {
    background: #667eea;
    color: #fff;
}

/* Sidebar */
.games-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-block {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.sidebar-block h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #667eea;
}

.top-winners-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.winner-entry {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.winner-rank {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #667eea;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.winner-info {
    flex: 1;
    min-width: 0;
}

.winner-link {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.winner-link:hover {
    color: #667eea;
}

.winner-stats-mini {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    color: #888;
    margin-top: 0.15rem;
}

.btn-sidebar {
    display: block;
    text-align: center;
    padding: 0.5rem;
    background: #f8f9fa;
    color: #667eea;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: background 0.3s;
}

.btn-sidebar:hover {
    background: #667eea;
    color: #fff;
}

.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
}

.quick-links a:hover {
    text-decoration: underline;
}

/* Game detail page */
.game-detail {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.game-detail-header {
    margin-bottom: 2rem;
}

.game-detail-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.game-meta-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.game-meta-tag.series { background: #667eea; color: #fff; }
.game-meta-tag.format { background: #e2e3e5; color: #383d41; }
.game-meta-tag.completed { background: #d4edda; color: #155724; }

.game-detail h1 {
    font-size: 2.25rem;
    color: #333;
}

/* Stats summary */
.game-stats-summary {
    margin-bottom: 2.5rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.summary-item {
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.summary-item.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.summary-item.highlight .summary-label {
    color: rgba(255,255,255,0.8);
}

.summary-item.highlight .summary-value {
    color: #fff;
}

.summary-label {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.25rem;
}

.summary-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #333;
}

.summary-sub {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.25rem;
}

/* Results table */
.game-results-section {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.game-results-section h2 {
    margin-bottom: 1.5rem;
    color: #333;
}

.results-table-wrapper {
    overflow-x: auto;
}

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

.game-results-table th,
.game-results-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.game-results-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #555;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.game-results-table tr.top-position {
    background: #fffbeb;
}

.result-position {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
}

.pos-1 { background: #ffd700; color: #333; }
.pos-2 { background: #e0e0e0; color: #333; }
.pos-3 { background: #dba66c; color: #fff; }
.pos-4 { background: #f8f9fa; color: #666; }

.result-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.result-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.result-player a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.result-player a:hover {
    color: #667eea;
}

/* Structure section */
.game-structure-section {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

.game-structure-section h2 {
    margin-bottom: 1rem;
}

.structure-text {
    line-height: 1.8;
    color: #666;
}

/* Game actions */
.game-actions,
.actions-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

/* Stats page specific */
.aggregate-stats {
    padding: 2rem 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.monthly-stats {
    padding: 2rem 0;
}

.monthly-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.monthly-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.monthly-table th,
.monthly-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.monthly-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #555;
}

.month-name {
    font-weight: 600;
    color: #333;
}

.prize-value {
    font-weight: 600;
    color: #28a745;
}

/* Chart bars */
.monthly-chart {
    margin-top: 2rem;
}

.monthly-chart h3 {
    margin-bottom: 1.5rem;
    color: #333;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    height: 200px;
    padding: 0 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    max-width: 60px;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 4px 4px 0 0;
    min-height: 4px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    transition: height 0.5s ease;
}

.chart-bar-value {
    position: absolute;
    top: -20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #667eea;
}

.chart-bar-label {
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #888;
}

/* Prize cards */
.biggest-prizes {
    padding: 2rem 0;
}

.prize-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prize-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.prize-card:hover {
    transform: translateX(5px);
}

.prize-rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    min-width: 50px;
    text-align: center;
}

.prize-info {
    flex: 1;
}

.prize-info h3 {
    margin-bottom: 0.25rem;
}

.prize-info h3 a {
    color: #333;
    text-decoration: none;
}

.prize-info h3 a:hover {
    color: #667eea;
}

.prize-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 0.25rem;
}

.prize-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #888;
}

.prize-meta a {
    color: #667eea;
    text-decoration: none;
}

/* Top winners section */
.top-winners-section {
    padding: 2rem 0;
}

.winners-table-wrapper {
    overflow-x: auto;
}

.winners-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.winners-table th,
.winners-table td {
    padding: 0.85rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.winners-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #555;
    font-size: 0.85rem;
}

.rank-cell {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
}

.winner-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.winner-avatar-sm {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.winner-cell a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.winner-cell a:hover {
    color: #667eea;
}

.wins-cell {
    font-weight: 700;
    color: #28a745;
}

.prize-cell {
    font-weight: 600;
    color: #28a745;
}

.stats-actions {
    padding: 2rem 0;
}

/* Recent games section on home page */
.recent-games-home {
    margin: 3rem 0;
}

.recent-games-home h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.recent-games-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.recent-game-home-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.recent-game-home-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

.recent-game-home-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.3;
}

.recent-game-home-card h3 a {
    color: #333;
    text-decoration: none;
}

.recent-game-home-card h3 a:hover {
    color: #667eea;
}

.home-game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: #666;
    flex-wrap: wrap;
}

.home-game-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.home-game-winner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    background: #fef9e7;
    border-radius: 6px;
}

.home-game-winner a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.home-game-winner a:hover {
    color: #667eea;
}

.section-more {
    text-align: center;
    margin-top: 1.5rem;
}

/* Admin pagination */
.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.page-info {
    color: #666;
    font-size: 0.9rem;
}

/* Feedback Section */
.feedback-section {
    margin: 3rem 0;
}

.feedback-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.feedback-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.feedback-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.btn-feedback {
    background: #fff;
    color: #667eea;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.85rem 2.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-feedback:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    background: #f0f0ff;
}

/* Feedback Modal */
.feedback-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: fadeIn 0.25s ease;
}

.feedback-modal-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.feedback-modal {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.feedback-modal h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feedback-modal-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.feedback-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color 0.2s;
}

.feedback-modal-close:hover {
    color: #333;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feedback-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.feedback-field label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
}

.tpp-form-trap {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.tpp-human-check {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(90, 31, 43, 0.16);
    border-radius: 8px;
    background: rgba(90, 31, 43, 0.04);
    cursor: pointer;
}

.tpp-human-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tpp-human-check__box {
    position: relative;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 0.1rem;
    border-radius: 6px;
    border: 1px solid rgba(90, 31, 43, 0.4);
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.tpp-human-check__box::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.tpp-human-check__copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.tpp-human-check__copy strong {
    color: #2f2a2f;
    font-size: 0.96rem;
    line-height: 1.25;
}

.tpp-human-check__copy small {
    color: #635c63;
    font-size: 0.88rem;
    line-height: 1.45;
}

.tpp-human-check input:focus-visible + .tpp-human-check__box {
    outline: 2px solid rgba(90, 31, 43, 0.22);
    outline-offset: 2px;
}

.tpp-human-check input:checked + .tpp-human-check__box {
    border-color: #5A1F2B;
    background: #5A1F2B;
    box-shadow: 0 0 0 3px rgba(90, 31, 43, 0.12);
}

.tpp-human-check input:checked + .tpp-human-check__box::after {
    opacity: 1;
}

.feedback-field input,
.feedback-field textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    resize: vertical;
}

.feedback-field input:focus,
.feedback-field textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.btn-feedback-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 0.5rem;
}

.btn-feedback-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.feedback-success {
    text-align: center;
    padding: 2rem 1rem;
}

.feedback-error {
    margin: 0 0 0.75rem;
    padding: 0.8rem 0.95rem;
    border-radius: 8px;
    border: 1px solid rgba(220, 53, 69, 0.28);
    background: rgba(220, 53, 69, 0.08);
    color: #b42318;
    font-size: 0.95rem;
    line-height: 1.45;
}

.feedback-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #28a745, #34d058);
    color: #fff;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feedback-success h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.feedback-success p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive — компактніше в один ряд */
@media (max-width: 1320px) and (min-width: 769px) {
    .main-nav {
        gap: 0.35rem 0.5rem;
    }

    .nav-item > a {
        padding: 1.1rem 0.4rem;
        font-size: 0.78rem;
    }
}

@media (max-width: 1200px) and (min-width: 769px) {
    .nav-item > a {
        padding: 1.15rem 0.45rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) {
    .nav-item > a {
        padding: 1.2rem 0.45rem;
        font-size: 0.82rem;
    }

    .tpp-section-title,
    .tpp-section-desc,
    .tpp-player-name,
    .tpp-team-f1-name,
    .tpp-schedule-event-title,
    .tpp-lb-name,
    .tpp-media-title {
        overflow-wrap: anywhere;
    }

    .site-league-name {
        display: none;
    }

    .site-logo-mark {
        display: inline-flex;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 18px;
    }

    .header-content {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .main-nav .logo {
        position: fixed;
        left: 20px;
        top: 0;
        height: 64px;
        display: flex;
        align-items: center;
        z-index: 1002;
        margin: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1003;
        flex: 0 0 auto;
    }

    .main-nav {
        flex: none;
        display: block;
        justify-content: unset;
        max-width: 100%;
        position: static;
        width: auto;
        background: transparent;
        z-index: 1001;
        overflow: visible;
        transform: none;
        transition: none;
        padding-top: 0;
        box-shadow: none;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(340px, 82vw);
        max-width: calc(100vw - 16px);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 60px 0 1rem;
        background: #2a2a2e;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    }

    .main-nav.open .nav-list {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > a {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(240, 222, 179, 0.08);
        text-transform: none;
    }

    .nav-item:hover > a,
    .nav-item > a:active {
        background: rgba(240, 222, 179, 0.08);
        color: #F0DEB3;
    }

    .nav-item.active > a {
        box-shadow: inset 4px 0 0 #5A1F2B;
    }

    .nav-item-cta {
        margin: 0.75rem 1rem;
    }

    .nav-cta {
        display: block !important;
        text-align: center;
        padding: 0.75rem 1.5rem !important;
    }

    .nav-item.has-mega {
        position: relative;
    }

    .mega-menu {
        position: static;
        min-width: 0;
        width: 100%;
        left: 0;
        transform: none;
        border-top: none;
        border-radius: 0;
        box-shadow: none;
        background: #3a3a40;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.35s ease, padding 0.35s ease;
        will-change: max-height;
    }

    .nav-item.has-mega.mega-open .mega-menu,
    .nav-item.has-mega.mega-open:hover .mega-menu {
        padding: 0.5rem 0;
        transform: none;
    }

    .mega-links {
        display: block;
        width: 100%;
    }

    .mega-links li {
        display: block;
        width: 100%;
    }

    .mega-links a {
        display: block;
        width: 100%;
        padding: 0.4rem 1.5rem;
        font-size: 0.88rem;
        white-space: normal;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 1024px) and (orientation: landscape) {
    .nav-list {
        width: min(380px, 52vw);
        max-width: calc(100vw - 20px);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    input,
    select,
    textarea {
        width: 100%;
        min-width: 0;
    }

    .tpp-section-title,
    .tpp-section-desc,
    .tpp-player-name,
    .tpp-team-f1-name,
    .tpp-schedule-event-title,
    .tpp-lb-name,
    .tpp-media-title {
        overflow-wrap: anywhere;
    }

    .site-league-name {
        display: none;
    }

    .header-content {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    /* Логотип лишається у шапці, коли drawer зміщений за екран (fixed від viewport) */
    .main-nav .logo {
        position: fixed;
        left: 20px;
        top: 0;
        height: 64px;
        display: flex;
        align-items: center;
        z-index: 1002;
        margin: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1003;
        flex: 0 0 auto;
    }

    .main-nav {
        flex: none;
        display: block;
        justify-content: unset;
        max-width: 100%;
        position: static;
        width: auto;
        background: transparent;
        z-index: 1001;
        overflow: visible;
        transform: none;
        transition: none;
        padding-top: 0;
        box-shadow: none;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(300px, 82vw);
        max-width: calc(100vw - 16px);
        flex-direction: column;
        justify-content: flex-start;
        gap: 0;
        padding: 60px 0 1rem;
        background: #2a2a2e;
        z-index: 1001;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -4px 0 20px rgba(0,0,0,0.5);
    }

    .main-nav.open .nav-list {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
    }

    .nav-item > a {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(240, 222, 179, 0.08);
        text-transform: none;
    }

    .nav-item:hover > a,
    .nav-item > a:active {
        background: rgba(240, 222, 179, 0.08);
        color: #F0DEB3;
    }

    .nav-item.active > a {
        box-shadow: inset 4px 0 0 #5A1F2B;
    }

    .nav-item-cta {
        margin: 0.75rem 1rem;
    }

    .nav-cta {
        display: block !important;
        text-align: center;
        padding: 0.75rem 1.5rem !important;
    }

    /* Mobile mega-menu: inline accordion */
    .nav-item.has-mega {
        position: relative;
    }

    .mega-menu {
        position: static;
        min-width: 0;
        width: 100%;
        left: 0;
        transform: none;
        border-top: none;
        border-radius: 0;
        box-shadow: none;
        background: #3a3a40;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transition: max-height 0.35s ease, padding 0.35s ease;
        will-change: max-height;
    }

    /* Висоту відкритого акордеона задає JS від реального scrollHeight */
    .nav-item.has-mega.mega-open .mega-menu,
    .nav-item.has-mega.mega-open:hover .mega-menu {
        padding: 0.5rem 0;
        transform: none;
    }

    .mega-links {
        display: block;
        width: 100%;
    }

    .mega-links li {
        display: block;
        width: 100%;
    }

    .mega-links a {
        display: block;
        width: 100%;
        padding: 0.4rem 1.5rem;
        font-size: 0.88rem;
        white-space: normal;
    }

    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-overlay.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .news-grid,
    .players-grid,
    .videos-grid {
        grid-template-columns: 1fr;
    }

    .games-layout {
        grid-template-columns: 1fr;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .filter-form {
        flex-direction: column;
    }

    .filter-group select {
        min-width: auto;
        width: 100%;
    }

    .game-detail {
        padding: 1.5rem;
    }

    .game-detail h1 {
        font-size: 1.5rem;
    }

    .summary-grid {
        grid-template-columns: 1fr 1fr;
    }

    .overview-cards {
        grid-template-columns: 1fr 1fr;
    }

    .recent-games-hero h1,
    .stats-hero h1 {
        font-size: 1.75rem;
    }

    .chart-bars {
        overflow-x: auto;
    }

    .recent-games-home-grid {
        grid-template-columns: 1fr;
    }

    .feedback-modal {
        padding: 1.5rem;
    }

    .feedback-cta {
        padding: 2rem 1.25rem;
    }

    .feedback-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }
}
