* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Анимации для элементов */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in forwards;
}

.slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.slide-down {
    opacity: 0;
    animation: slideDown 0.8s ease-out forwards;
}

.fade-in-scale {
    opacity: 0;
    animation: fadeInScale 0.7s ease-out forwards;
}

/* Задержки для последовательного появления */
.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #1a1a2e;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: slideDown 0.6s ease-out;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 1001;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: transparent;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

.nav-menu a:hover {
    color: #f0a500;
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f0a500;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a.active {
    color: #f0a500;
    font-weight: bold;
}

.nav-menu a.active::after {
    width: 100%;
}

.btn-register {
    background: #f0a500;
    padding: 0.6rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    position: relative;
    color: #fff;
    padding: 5rem 0;
    text-align: center;
    animation: fadeIn 0.8s ease-in;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../image/herofon.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 0;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-content-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
    max-width: 1200px;
}

.hero-content-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text-content {
    flex: 1;
    text-align: left;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-bonus {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(240, 165, 0, 0.1);
    border: 2px solid #f0a500;
    border-radius: 10px;
    line-height: 1.8;
    color: #1a1a2e;
}

.hero-bonus strong {
    color: #f0a500;
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.hero-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.hero-image-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hero-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 1rem;
}

.hero-image-bonus {
    font-size: 1.1rem;
    margin: 0;
    padding: 1rem;
    background: rgba(240, 165, 0, 0.1);
    border: 2px solid #f0a500;
    border-radius: 10px;
    line-height: 1.6;
    color: #1a1a2e;
    text-align: center;
    flex-grow: 0;
}

.hero-image-bonus strong {
    color: #f0a500;
    font-size: 1.3rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #f0a500;
    color: #1a1a2e;
    font-weight: bold;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.4);
}

.btn-secondary {
    background: #1a1a2e;
    color: #fff;
    border: 2px solid #1a1a2e;
}

.btn-secondary:hover {
    background: #16213e;
    color: #fff;
    border-color: #16213e;
}

.btn-demo {
    background: linear-gradient(135deg, #8b00ff 0%, #a855f7 100%);
    color: #fff;
    border: 2px solid #8b00ff;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #a855f7 0%, #8b00ff 100%);
    color: #fff;
    border-color: #a855f7;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 255, 0.4);
}

#restart-game {
    color: #1a1a2e;
    background: #f0a500;
    border-color: #f0a500;
}

#restart-game:hover {
    background: #ffb84d;
    color: #1a1a2e;
}

/* Mini Game Section */
.mini-game-section {
    padding: 4rem 0;
    background: #fff;
}

.mini-game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.game-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.game-score, .game-moves {
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a2e;
}

.game-score span:last-child,
.game-moves span:last-child {
    color: #f0a500;
    font-size: 1.4rem;
}

.game-board {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.memory-game-card {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.memory-game-card:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.memory-game-card.flipped {
    background: #fff;
    color: #1a1a2e;
    border-color: #f0a500;
}

.memory-game-card.matched {
    background: linear-gradient(135deg, #f0a500 0%, #ffb84d 100%);
    color: #1a1a2e;
    border-color: #f0a500;
    cursor: default;
    animation: matchAnimation 0.5s ease;
}

.memory-game-card .card-back {
    font-size: 2rem;
}

.memory-game-card .card-front {
    font-size: 1rem;
    text-align: center;
    padding: 0.4rem;
    font-weight: bold;
}

@keyframes matchAnimation {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.game-message {
    text-align: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #f0a500;
    min-height: 2rem;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #f5f5f5;
}

/* Zeus Olimpos Gallery Section */
.zeus-olimpos-gallery {
    padding: 4rem 0;
    background: #fff;
}

.zeus-olimpos-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gallery-content h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f0a500;
}

.gallery-content p {
    color: #555;
    line-height: 1.8;
    margin: 0 0 1.5rem 0;
}

.gallery-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Upcoming Games Section */
.upcoming-games-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.upcoming-games-card {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.upcoming-games-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.upcoming-games-header {
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.upcoming-games-header:hover {
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.upcoming-games-header h2 {
    margin: 0;
    font-size: 2rem;
    color: #f0a500;
}

.expand-icon {
    font-size: 1.5rem;
    color: #f0a500;
    transition: transform 0.3s ease;
    user-select: none;
}

.upcoming-games-card.expanded .expand-icon {
    transform: rotate(180deg);
}

.upcoming-games-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.upcoming-games-card.expanded .upcoming-games-content {
    max-height: 5000px;
    padding: 2rem;
}

.games-notice {
    text-align: center;
    font-size: 1.1rem;
    color: #f0a500;
    font-weight: bold;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(240, 165, 0, 0.3);
}

.upcoming-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.upcoming-game-item {
    padding: 1.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    border-left: 4px solid #f0a500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.upcoming-game-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.upcoming-game-item h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.upcoming-game-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.upcoming-games-register {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

/* Rating System Section */
.rating-system {
    padding: 4rem 0;
    background: #fff;
}

.rating-system h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.rating-content {
    max-width: 1000px;
    margin: 0 auto;
}

.rating-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.rating-content h3 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: #1a1a2e;
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.league-card {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.league-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.league-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f0a500;
}

.league-range {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #f0a500;
}

.league-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Page Header */
.page-header {
    background: #fff;
    color: #1a1a2e;
    padding: 2rem 0 1rem;
    text-align: center;
    border-bottom: 2px solid #f0a500;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.game-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image {
    transform: scale(1.1);
}

.game-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    padding: 1.5rem 1.5rem 0.5rem;
}

.game-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding: 0 1.5rem;
    flex-grow: 1;
}

.game-locked {
    background: #ffebee;
    padding: 1rem;
    border-radius: 5px;
    color: #c62828;
    font-weight: bold;
    text-align: center;
    margin: 0 1.5rem 1.5rem;
}

/* Games Table */
.games-table-section {
    padding: 2rem 0 4rem;
    background: #fff;
}

.games-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.games-table thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.games-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: bold;
    color: #f0a500;
    font-size: 1.1rem;
}

.games-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    vertical-align: top;
}

.games-table tbody tr {
    transition: background 0.3s ease;
}

.games-table tbody tr:hover {
    background: #f5f5f5;
}

.games-table tbody tr:last-child td {
    border-bottom: none;
}

.game-name {
    font-weight: bold;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.game-description {
    line-height: 1.6;
    color: #666;
}

.game-status {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    background: #ffebee;
    color: #c62828;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

/* Tournaments Section */
.tournaments-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.tournaments-content {
    max-width: 1200px;
    margin: 0 auto;
}

.tournaments-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.tournaments-content h3 {
    font-size: 2rem;
    margin: 3rem 0 2rem;
    color: #1a1a2e;
    text-align: center;
}

.tournament-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tournament-type-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #f0a500;
}

.tournament-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.tournament-type-card h4 {
    color: #1a1a2e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.tournament-frequency {
    color: #f0a500;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: rgba(240, 165, 0, 0.1);
    border-radius: 15px;
}

.tournament-type-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tournament-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tournament-details li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
    padding-left: 1.5rem;
    position: relative;
}

.tournament-details li:last-child {
    border-bottom: none;
}

.tournament-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f0a500;
    font-weight: bold;
}

.tournament-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rule-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #1a1a2e;
}

.rule-item h4 {
    color: #1a1a2e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f0a500;
}

.rule-item p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.tournament-prizes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.prize-tier {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.prize-tier:hover {
    transform: translateY(-5px);
}

.prize-tier h4 {
    color: #f0a500;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.prize-tier ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prize-tier ul li {
    padding: 0.7rem 0;
    color: #e0e0e0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-left: 1.5rem;
    position: relative;
}

.prize-tier ul li:last-child {
    border-bottom: none;
}

.prize-tier ul li::before {
    content: "★";
    position: absolute;
    left: 0;
    color: #f0a500;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.about-content h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1a1a2e;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

/* Leaderboard Section */
.leaderboard-section {
    padding: 4rem 0;
    background: #fff;
}

.leaderboard-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    min-width: 600px;
}

.leaderboard-table thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.leaderboard-table th {
    padding: 1.2rem 1rem;
    text-align: left;
    font-weight: bold;
    color: #f0a500;
    font-size: 1.1rem;
}

.leaderboard-table td {
    padding: 1.2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
    vertical-align: middle;
}

.leaderboard-table tbody tr {
    transition: background 0.3s ease;
}

.leaderboard-table tbody tr:hover {
    background: #f5f5f5;
}

.leaderboard-table tbody tr:last-child td {
    border-bottom: none;
}

.leaderboard-table tbody tr.rank-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-left: 4px solid #ffd700;
}

.leaderboard-table tbody tr.rank-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1) 0%, rgba(192, 192, 192, 0.05) 100%);
    border-left: 4px solid #c0c0c0;
}

.leaderboard-table tbody tr.rank-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.1) 0%, rgba(205, 127, 50, 0.05) 100%);
    border-left: 4px solid #cd7f32;
}

.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
}

.rank-badge.rank-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    color: #1a1a2e;
}

.rank-badge.rank-silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    box-shadow: 0 2px 8px rgba(192, 192, 192, 0.4);
    color: #1a1a2e;
}

.rank-badge.rank-bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e6a857 100%);
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.4);
    color: #fff;
}

.rank-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #1a1a2e;
    font-weight: bold;
    font-size: 1rem;
}

.player-name {
    font-weight: bold;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.fs-score {
    font-weight: bold;
    color: #f0a500;
    font-size: 1.2rem;
}

.league-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

.league-badge.league-legendary {
    background: linear-gradient(135deg, #8b00ff 0%, #a855f7 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(139, 0, 255, 0.3);
}

.league-badge.league-platinum {
    background: linear-gradient(135deg, #e5e4e2 0%, #f5f5f5 100%);
    color: #1a1a2e;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.league-badge.league-gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.league-badge.league-silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #e8e8e8 100%);
    color: #1a1a2e;
    box-shadow: 0 2px 6px rgba(192, 192, 192, 0.3);
}

.league-badge.league-bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #e6a857 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(205, 127, 50, 0.3);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.blog-card h3 {
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-date {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    color: #1a1a2e;
    font-size: 1.1rem;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-rating {
    color: #f0a500;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.review-text {
    color: #555;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background: #f5f5f5;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.contact-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-item h3 {
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.contact-item a {
    color: #f0a500;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #1a1a2e;
    text-decoration: underline;
}

.contact-form-section {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a2e;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f0a500;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
}

.map-container {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    border-radius: 5px;
}

/* Thank You Section */
.thank-you-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #fff 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.thank-you-icon {
    margin-bottom: 2rem;
    animation: scaleIn 0.6s ease 0.2s both;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thank-you-bonus {
    font-size: 1.1rem;
    color: #f0a500;
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.thank-you-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thank-you-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 165, 0, 0.4);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 1000;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: #f0a500;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #f0a500;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-section a:hover {
    color: #f0a500;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Content Section */
.content-section {
    padding: 4rem 0;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.content-section h3 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: #1a1a2e;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.content-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.8;
}

.content-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.content-section table thead {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.content-section table th {
    padding: 1rem;
    text-align: left;
    color: #f0a500;
    font-weight: bold;
    border: 1px solid rgba(255,255,255,0.1);
}

.content-section table td {
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    color: #555;
}

.content-section table tbody tr:nth-child(even) {
    background: #f9f9f9;
}

.content-section table tbody tr:hover {
    background: #f5f5f5;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-background {
        filter: blur(5px);
    }

    .hero-wrapper {
        gap: 1.5rem;
    }

    .hero-content-card {
        padding: 2rem;
        text-align: center;
    }

    .hero-content-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
    }

    .hero-images-grid {
        order: 1;
    }

    .hero-content-card {
        order: 2;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-bonus {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-images-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-image-card:nth-child(2) {
        display: none;
    }

    .hero-image {
        height: 250px;
    }

    .hero-image-bonus {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .hero-image-bonus strong {
        font-size: 1.2rem;
    }

    .zeus-olimpos-gallery h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-image-wrapper {
        height: 250px;
    }

    .gallery-content {
        padding: 1.5rem;
    }

    .page-header {
        padding: 1.5rem 0 0.8rem;
        margin-bottom: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .game-card-image {
        height: 200px;
    }

    .game-card h3 {
        font-size: 1.3rem;
        padding: 1rem 1rem 0.5rem;
    }

    .game-card p {
        padding: 0 1rem;
        font-size: 0.95rem;
    }

    .game-locked {
        margin: 0 1rem 1rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .gallery-content h3 {
        font-size: 1.3rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #1a1a2e;
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px rgba(0,0,0,0.3);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-menu a.active {
        color: #f0a500;
        font-weight: bold;
        padding-left: 1rem;
        border-left: 3px solid #f0a500;
    }

    .nav-menu a.active::after {
        display: none;
    }

    .nav-menu .btn-register {
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .thank-you-section {
        padding: 2rem 0;
        min-height: calc(100vh - 150px);
    }

    .thank-you-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .thank-you-message {
        font-size: 1.1rem;
    }

    .thank-you-bonus {
        font-size: 1rem;
    }

    .thank-you-icon svg {
        width: 80px;
        height: 80px;
    }

    .thank-you-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .leagues-grid {
        grid-template-columns: 1fr;
    }

    .game-board {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.6rem;
    }

    .memory-game-card {
        font-size: 1.2rem;
    }

    .memory-game-card .card-back {
        font-size: 1.5rem;
    }

    .memory-game-card .card-front {
        font-size: 0.85rem;
        padding: 0.3rem;
    }

    .game-header {
        flex-direction: column;
        align-items: stretch;
    }

    .game-score, .game-moves {
        text-align: center;
        margin-bottom: 0.5rem;
    }

    #restart-game {
        width: 100%;
    }

    .upcoming-games-header h2 {
        font-size: 1.5rem;
    }

    .upcoming-games-header {
        padding: 1.5rem;
    }

    .upcoming-games-card.expanded .upcoming-games-content {
        padding: 1.5rem;
    }

    .upcoming-games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .upcoming-game-item {
        padding: 1.2rem;
    }

    .upcoming-game-item h3 {
        font-size: 1.3rem;
    }

    .games-notice {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .games-table-section h2 {
        font-size: 2rem;
    }

    .games-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .games-table {
        min-width: 600px;
        font-size: 0.9rem;
    }

    .games-table th,
    .games-table td {
        padding: 0.8rem 0.6rem;
    }

    .games-table th {
        font-size: 1rem;
    }

    .game-name {
        font-size: 1rem;
    }

    .game-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .status-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .tournaments-content h2 {
        font-size: 2rem;
    }

    .tournaments-content h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1.5rem;
    }

    .tournament-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tournament-type-card {
        padding: 1.5rem;
    }

    .tournament-type-card h4 {
        font-size: 1.3rem;
    }

    .tournament-rules {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rule-item {
        padding: 1.5rem;
    }

    .rule-item h4 {
        font-size: 1.2rem;
    }

    .tournament-prizes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .prize-tier {
        padding: 1.5rem;
    }

    .prize-tier h4 {
        font-size: 1.2rem;
    }

    .leaderboard-section h2 {
        font-size: 2rem;
    }

    .leaderboard-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .leaderboard-table {
        min-width: 550px;
        font-size: 0.9rem;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 0.8rem 0.6rem;
    }

    .leaderboard-table th {
        font-size: 1rem;
    }

    .rank-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .rank-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.9rem;
    }

    .player-name {
        font-size: 1rem;
    }

    .fs-score {
        font-size: 1.1rem;
    }

    .league-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .content-section table {
        font-size: 0.9rem;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .content-section table th,
    .content-section table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 999;
    }

    .nav-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

