/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-green: #1a4d2e;
    --black: #000000;
    --emerald: #50c878;
    --gold: #ffd700;
    --crimson: #dc143c;
    --dark-emerald: #2d5a3d;
    --light-gold: #ffed4e;
    --dark-crimson: #b11226;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--dark-green);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    transition: all 0.3s;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--black) 100%);
    background-image: url('../image/molniya.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.8) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.9), 0 0 20px rgba(255,215,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--emerald);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.3);
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--light-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,215,0,0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--black);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #ccc;
}

/* About Preview */
.about-preview {
    background: var(--black);
}

.gods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.god-card {
    background: var(--dark-green);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.god-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.god-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.god-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.god-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.god-card p {
    color: #ccc;
}

/* Registration CTA */
.registration-cta {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--dark-crimson) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-content strong {
    color: var(--gold);
    font-size: 1.5rem;
}

/* Contact Info */
.contact-info {
    background: var(--dark-green);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-item {
    text-align: center;
    padding: 30px;
    background: var(--black);
    border-radius: 10px;
    border: 2px solid var(--emerald);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-item h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-item p {
    color: #ccc;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
    line-height: 1.6;
    margin: 0;
}

.contact-item a {
    color: var(--emerald);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
}

.contact-item a:hover {
    color: var(--gold);
}

/* Map */
.contact-map {
    background: var(--black);
    padding: 80px 0;
}

.contact-map h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 3px solid var(--gold);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-green);
    padding: 50px 0 20px;
    border-top: 3px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--dark-green);
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--gold);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #fff;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group > label:not(:has(input[type="checkbox"])) {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--emerald);
    border-radius: 5px;
    background: var(--black);
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    cursor: pointer;
}

.form-group label:has(input[type="checkbox"]) {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: #ccc;
    font-weight: normal;
}

.form-group label:has(input[type="checkbox"]) input[type="checkbox"] {
    margin-top: 3px;
}

/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--black) 100%);
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.registration-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-green);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.registration-form {
    width: 100%;
}

/* Contact Section */
.contact-section {
    background: var(--black);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info-section,
.contact-form-section {
    background: var(--dark-green);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--emerald);
}

.contact-info-section h2,
.contact-form-section h2 {
    color: var(--gold);
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form {
    width: 100%;
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--black) 100%);
    padding: 150px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-green);
    padding: 60px 40px;
    border-radius: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.thank-you-content h1 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
}

/* Document Section */
.document-section {
    background: var(--black);
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.document-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--dark-green);
    padding: 50px;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.document-content h1 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.document-date {
    color: #ccc;
    margin-bottom: 30px;
    font-style: italic;
}

.document-content h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.document-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.document-content ul {
    color: #ccc;
    margin-left: 30px;
    margin-bottom: 15px;
}

.document-content li {
    margin-bottom: 10px;
}

/* Games Section */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.game-card {
    background: var(--dark-green);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    overflow: hidden;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.game-card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--emerald);
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.game-card:hover .game-card-image img {
    transform: scale(1.1);
}

.game-card h3 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.game-card p {
    color: #ccc;
    margin-bottom: 20px;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--dark-green);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.news-card-content {
    padding: 30px;
}

.news-card h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.news-card .news-date {
    color: var(--emerald);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.news-card p {
    color: #ccc;
    margin-bottom: 15px;
}

.news-card a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--dark-green);
    border-radius: 10px;
    padding: 30px;
    border: 2px solid transparent;
    transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-author {
    font-weight: bold;
    color: var(--gold);
}

.review-date {
    color: var(--emerald);
    font-size: 0.9rem;
}

.review-rating {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.review-text {
    color: #ccc;
    line-height: 1.8;
}

/* About Section */
.about-section {
    background: var(--black);
    padding: 80px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* News Section */
.news-section {
    background: var(--black);
    background-image: url('../image/molniya2.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.news-section .container {
    position: relative;
    z-index: 1;
}

/* Reviews Section */
.reviews-section {
    background: var(--black);
    padding: 80px 0;
}

/* Accordion */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--dark-green);
    border: 2px solid var(--emerald);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--gold);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--dark-green);
    transition: background 0.3s;
}

.accordion-header:hover {
    background: var(--dark-emerald);
}

.accordion-header h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0;
}

.accordion-icon {
    color: var(--gold);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
    padding: 20px;
}

.accordion-content p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 15px;
}

.accordion-content ul {
    color: #ccc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.accordion-content li {
    margin-bottom: 10px;
}

/* Tables */
.table-container {
    overflow-x: auto;
    margin: 30px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-green);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--emerald);
}

table thead {
    background: var(--dark-emerald);
}

table th {
    padding: 15px;
    text-align: left;
    color: var(--gold);
    font-weight: 600;
    border-bottom: 2px solid var(--emerald);
}

table td {
    padding: 15px;
    color: #ccc;
    border-bottom: 1px solid rgba(80, 200, 120, 0.2);
}

table tbody tr:hover {
    background: var(--dark-emerald);
    transition: background 0.3s;
}

table tbody tr:last-child td {
    border-bottom: none;
}

/* Stats Section Wrapper */
.stats-section-wrapper {
    margin: 30px 0;
}

/* Stats Cards Mobile */
.stats-cards-mobile {
    display: none;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.stat-card-mobile {
    background: var(--dark-green);
    border-radius: 10px;
    padding: 20px;
    border: 2px solid var(--emerald);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.stat-card-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-card-mobile-header h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin: 0;
    flex: 1;
    min-width: 150px;
}

.stat-value {
    color: var(--emerald);
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
}

.stat-description {
    color: #ccc;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    background: var(--dark-green);
    padding: 80px 0;
}

/* Stats/Info Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-card {
    background: var(--dark-green);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--emerald);
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.stat-number {
    font-size: 3rem;
    color: var(--gold);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: #ccc;
    font-size: 1.1rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    padding: 15px;
    margin-bottom: 10px;
    background: var(--dark-green);
    border-left: 4px solid var(--gold);
    border-radius: 5px;
    color: #ccc;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: "✓";
    color: var(--emerald);
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--emerald);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-content {
    background: var(--dark-green);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid var(--emerald);
    position: relative;
}

.timeline-content h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline-content p {
    color: #ccc;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--emerald);
    top: 20px;
}

.timeline-item:nth-child(odd)::before {
    right: -10px;
}

.timeline-item:nth-child(even)::before {
    left: -10px;
}

/* Comparison Table */
.comparison-table {
    margin: 30px 0;
}

.comparison-table table th:first-child {
    width: 30%;
}

.comparison-table table td:first-child {
    font-weight: 600;
    color: var(--gold);
}

/* Comparison Cards Mobile */
.comparison-cards-mobile {
    display: none;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.comparison-card-mobile {
    background: var(--dark-green);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid var(--emerald);
    transition: transform 0.3s, box-shadow 0.3s;
}

.comparison-card-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.comparison-card-mobile h4 {
    color: var(--gold);
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--emerald);
}

.comparison-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-info div {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.comparison-info strong {
    color: var(--emerald);
    margin-right: 8px;
}

/* Archive Section Wrapper */
.archive-wrapper {
    margin: 30px 0;
}

/* Archive Cards Mobile */
.archive-cards-mobile {
    display: none;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.archive-card-mobile {
    background: var(--dark-green);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid var(--emerald);
    transition: transform 0.3s, box-shadow 0.3s;
}

.archive-card-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.archive-date {
    color: var(--emerald);
    font-size: 0.95rem;
    font-weight: 500;
}

.archive-category {
    background: var(--emerald);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.archive-title {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.archive-footer {
    padding-top: 15px;
    border-top: 1px solid rgba(80, 200, 120, 0.2);
}

.archive-views {
    color: #ccc;
    font-size: 0.9rem;
}

/* Ratings Section Wrapper */
.ratings-wrapper {
    margin: 30px 0;
}

/* Ratings Cards Mobile */
.ratings-cards-mobile {
    display: none;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}

.rating-card-mobile {
    background: var(--dark-green);
    border-radius: 10px;
    padding: 25px;
    border: 2px solid var(--emerald);
    transition: transform 0.3s, box-shadow 0.3s;
}

.rating-card-mobile:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.2);
    border-color: var(--gold);
}

.rating-game-name {
    color: var(--gold);
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--emerald);
}

.rating-main-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-number {
    color: var(--gold);
    font-size: 2rem;
    font-weight: bold;
}

.rating-stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-total {
    color: var(--emerald);
    font-size: 1rem;
    font-weight: 500;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(80, 200, 120, 0.2);
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-label {
    color: #ccc;
    font-size: 0.95rem;
}

.rating-value {
    color: var(--emerald);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Mini Game Section */
.mini-game-section {
    background: var(--black);
    padding: 80px 0;
}

.mini-game-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--dark-green);
    border-radius: 15px;
    padding: 40px;
    border: 3px solid var(--gold);
}

.mini-game-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    padding: 20px;
    background: var(--black);
    border-radius: 10px;
    border: 2px solid var(--emerald);
}

.game-stat {
    text-align: center;
}

.game-stat .stat-label {
    display: block;
    color: #ccc;
    font-size: 1rem;
    margin-bottom: 8px;
}

.game-stat .stat-value {
    display: block;
    color: var(--gold);
    font-size: 2rem;
    font-weight: bold;
}

.mini-game-area {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f1419 100%);
    border-radius: 10px;
    border: 2px solid var(--emerald);
    overflow: hidden;
    margin-bottom: 20px;
    cursor: none;
}

.game-start-screen {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.game-start-screen h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.game-start-screen p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.basket {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    border-radius: 10px 10px 0 0;
    border: 3px solid var(--emerald);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
    transition: left 0.1s ease-out;
    z-index: 5;
}

.basket::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 10px;
    width: 60px;
    height: 8px;
    background: var(--gold);
    border-radius: 5px;
}

.ambrosia {
    position: absolute;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #ffd700 0%, #ff8c00 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: fall linear;
    z-index: 3;
}

.ambrosia::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.stone {
    position: absolute;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #555 0%, #333 100%);
    border-radius: 5px;
    border: 2px solid #222;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8), inset 0 0 5px rgba(255, 255, 255, 0.1);
    animation: fall linear;
    z-index: 3;
}

.stone::before {
    content: '⚫';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
}

@keyframes fall {
    from {
        top: -50px;
    }
    to {
        top: 400px;
    }
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 0.5s ease-out forwards;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px) scale(0);
    }
}

.game-result {
    text-align: center;
    padding: 30px;
    background: var(--black);
    border-radius: 10px;
    border: 2px solid var(--gold);
}

.game-result h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.game-result p {
    color: #ccc;
    font-size: 1.3rem;
    margin-bottom: 25px;
}

.game-result #finalScore {
    color: var(--gold);
    font-size: 2rem;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--dark-green);
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s;
        z-index: 1001;
        box-shadow: -2px 0 10px rgba(0,0,0,0.5);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .map-container iframe {
        height: 300px;
    }

    /* Comparison Section - Hide table, show cards on mobile */
    .comparison-table-desktop {
        display: none;
    }

    .comparison-cards-mobile {
        display: grid;
    }

    /* Archive Section - Hide table, show cards on mobile */
    .archive-table-desktop {
        display: none;
    }

    .archive-cards-mobile {
        display: grid;
    }

    /* Ratings Section - Hide table, show cards on mobile */
    .ratings-table-desktop {
        display: none;
    }

    .ratings-cards-mobile {
        display: grid;
    }

    /* Stats Section - Hide table, show cards on mobile */
    .stats-table-desktop {
        display: none;
    }

    .stats-cards-mobile {
        display: grid;
    }

    /* Mini Game Mobile */
    .mini-game-container {
        padding: 20px;
    }

    .mini-game-area {
        height: 300px;
    }

    .game-start-screen {
        padding: 20px;
        max-width: 90%;
    }

    .game-start-screen h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .game-start-screen p {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }

    .game-instructions {
        font-size: 0.8rem !important;
        margin-bottom: 15px !important;
    }

    .game-start-screen .btn {
        margin-top: 10px;
        padding: 12px 24px;
        font-size: 0.9rem;
        width: auto;
        min-width: 150px;
    }

    .basket {
        width: 70px;
        height: 35px;
    }

    .basket::before {
        width: 50px;
        left: 10px;
    }

    .ambrosia, .stone {
        width: 35px;
        height: 35px;
    }

    .ambrosia::before {
        font-size: 20px;
    }

    .stone::before {
        font-size: 22px;
    }

    .mini-game-area {
        cursor: default;
    }

    .game-stat .stat-value {
        font-size: 1.5rem;
    }

    .gods-grid,
    .games-grid,
    .news-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
    }

    .timeline-item::before {
        left: 10px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .table-container {
        overflow-x: scroll;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    section {
        padding: 50px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

