/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --gold-color: #f5a623;
    --text-light: #ffffff;
    --text-dark: #333333;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fffacd;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: var(--gold-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--gold-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(233, 69, 96, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 166, 35, 0.3) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,600 300,400 600,500 900,300 1200,450 1200,600"/><polygon fill="%23ffffff" fill-opacity="0.03" points="0,600 200,350 500,450 800,250 1200,400 1200,600"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-small {
    height: 60vh;
    min-height: 400px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.5"><animate attributeName="opacity" values="0.5;1;0.5" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="40" r="1" fill="%23ffffff" opacity="0.7"><animate attributeName="opacity" values="0.7;1;0.7" dur="2s" repeatCount="indefinite"/></circle><circle cx="50" cy="70" r="1" fill="%23ffffff" opacity="0.6"><animate attributeName="opacity" values="0.6;1;0.6" dur="4s" repeatCount="indefinite"/></circle></svg>');
    opacity: 0.3;
    animation: twinkle 20s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #f5a623 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-demo {
    background: var(--gradient-2);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.4);
}

.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.6);
}

.btn-register {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--gold-color);
}

.btn-register:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-light);
    opacity: 0.7;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Section Styles */
section {
    padding: 80px 0;
    background-color: #fffacd;
    border-top: 1px solid #e0e0e0;
}

section:first-of-type,
.hero {
    border-top: none;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Game Section */
.game-section {
    background: #fffacd;
    color: var(--text-dark);
}

.game-section .section-title,
.game-section .section-subtitle {
    color: var(--text-dark);
}

.game-section .section-title::after {
    background: var(--gold-color);
}

.game-container {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
}

.game-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.score-board {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.score-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    border-radius: 10px;
}

.score-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.score-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--gold-color);
}

.btn-start {
    background: var(--gold-color);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-start:hover {
    background: #e0941a;
    transform: translateY(-2px);
}

.game-area {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    cursor: crosshair;
}

.game-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    text-align: center;
    z-index: 10;
}

.target {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #f5a623 0%, #e94560 100%);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.6);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.target:hover {
    transform: scale(1.2);
}

.target::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
}

/* Structure Section */
.structure-section {
    background: #fffacd;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.level-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-3);
}

.level-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.level-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.level-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.level-description {
    color: #666;
    line-height: 1.8;
}

/* Gods Section */
.gods-section {
    background: #fffacd;
    color: var(--text-dark);
}

.gods-section .section-title,
.gods-section .section-subtitle {
    color: var(--text-dark);
}

.gods-section .section-title::after {
    background: var(--gold-color);
}

.table-container {
    overflow-x: auto;
    margin-top: 2rem;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 1rem;
}

.gods-table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.gods-table thead {
    background: rgba(245, 166, 35, 0.2);
}

.gods-table th {
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--gold-color);
    border-bottom: 2px solid var(--gold-color);
}

.gods-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.gods-table tbody tr:hover {
    background: #f8f9fa;
}

.gods-table td strong {
    color: var(--gold-color);
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    background: #fffacd;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: #f8f9fa;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
    font-weight: bold;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* Features Section */
.features-section {
    background: #fffacd;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.8;
}

/* Quick Access Section */
.quick-access-section {
    background: #fffacd;
    color: var(--text-dark);
    padding: 80px 0;
}

.quick-access-section .section-title,
.quick-access-section .section-subtitle {
    color: var(--text-dark);
}

.quick-access-section .section-title::after {
    background: var(--gold-color);
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quick-access-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick-access-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.quick-access-card:hover::before {
    left: 100%;
}

.quick-access-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-color);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quick-access-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.quick-access-card h3 {
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quick-access-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.quick-access-arrow {
    font-size: 2rem;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.quick-access-card:hover .quick-access-arrow {
    transform: translateX(10px);
}

/* Stats Section */
.stats-section {
    background: #fffacd;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 500;
}

/* How to Play Section */
.how-to-play-section {
    background: #fffacd;
    padding: 80px 0;
}

.how-to-play-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.how-to-play-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-color);
    position: relative;
}

.how-to-play-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.how-to-play-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.how-to-play-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.how-to-play-card p {
    color: #666;
    line-height: 1.8;
}

/* Leaderboard Section */
.leaderboard-section {
    background: #fffacd;
    color: var(--text-dark);
    padding: 80px 0;
}

.leaderboard-section .section-title,
.leaderboard-section .section-subtitle {
    color: var(--text-dark);
}

.leaderboard-section .section-title::after {
    background: var(--gold-color);
}

.leaderboard-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.leaderboard-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.leaderboard-item:hover {
    background: #ffffff;
    transform: translateX(10px);
    border-left-color: var(--gold-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.leaderboard-item.leaderboard-top {
    background: #fff8e1;
    border-left-color: var(--gold-color);
    box-shadow: 0 5px 20px rgba(245, 166, 35, 0.2);
}

.leaderboard-rank {
    font-size: 2rem;
    min-width: 60px;
    text-align: center;
}

.leaderboard-info {
    flex: 1;
}

.leaderboard-info h3 {
    color: var(--gold-color);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.leaderboard-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.leaderboard-score {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold-color);
    min-width: 100px;
    text-align: right;
}

/* Tips Section */
.tips-section {
    background: #fffacd;
    padding: 80px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-color);
}

.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tip-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.tip-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.8;
}

/* Facts Section */
.facts-section {
    background: #fffacd;
    padding: 80px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.fact-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-color);
}

.fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.fact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.fact-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fact-card p {
    color: #666;
    line-height: 1.8;
}

/* Historical Section */
.historical-section {
    background: #fffacd;
    color: var(--text-dark);
    padding: 80px 0;
}

.historical-section .section-title,
.historical-section .section-subtitle {
    color: var(--text-dark);
}

.historical-section .section-title::after {
    background: var(--gold-color);
}

.historical-content {
    max-width: 900px;
    margin: 3rem auto 0;
}

.historical-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.historical-item:hover {
    background: #ffffff;
    transform: translateX(10px);
    border-left-color: var(--gold-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.historical-icon {
    font-size: 3rem;
    min-width: 80px;
    text-align: center;
}

.historical-text {
    flex: 1;
}

.historical-text h3 {
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.historical-text p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Symbols Section */
.symbols-section {
    background: #fffacd;
    padding: 80px 0;
}

.symbols-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.symbol-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-color);
}

.symbol-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.symbol-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.symbol-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.symbol-card p {
    color: #666;
    line-height: 1.8;
}

/* Additional FAQ Section */
.additional-faq-section {
    background: #fffacd;
    padding: 80px 0;
}

/* Help Section */
.help-section {
    background: #fffacd;
    color: var(--text-dark);
    padding: 80px 0;
}

.help-section .section-title,
.help-section .section-subtitle {
    color: var(--text-dark);
}

.help-section .section-title::after {
    background: var(--gold-color);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.help-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--gold-color);
}

.help-card:hover {
    transform: translateY(-10px);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.help-card h3 {
    color: var(--gold-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.help-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.help-link {
    color: var(--gold-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.help-link:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

/* Resources Section */
.resources-section {
    background: #fffacd;
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold-color);
    display: block;
    text-align: center;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-left-color: var(--accent-color);
}

.resource-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.resource-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
    padding: 2rem 0;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--gold-color);
}

.footer-links span {
    color: var(--text-light);
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .game-info {
        flex-direction: column;
        align-items: stretch;
    }

    .score-board {
        justify-content: center;
    }

    .game-area {
        height: 400px;
    }

    .levels-grid {
        grid-template-columns: 1fr;
    }

    .gods-table {
        font-size: 0.9rem;
    }

    .gods-table th,
    .gods-table td {
        padding: 1rem;
    }

    /* Mobile only - no scrollbars for tables */
    @media (max-width: 768px) {
        .table-container {
            overflow-x: visible !important;
        }
    }

    .features-grid,
    .quick-access-grid,
    .stats-grid,
    .how-to-play-grid,
    .tips-grid,
    .facts-grid,
    .symbols-grid,
    .help-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .tips-section-image {
        margin-bottom: 2rem !important;
    }

    .tips-section-image img {
        min-height: 200px !important;
    }

    .historical-item {
        flex-direction: column;
        text-align: center;
    }

    .historical-icon {
        min-width: auto;
    }

    .leaderboard-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .leaderboard-score {
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .game-area {
        height: 300px;
    }
}

