/* 全局样式重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基础样式 */
:root {
    --primary-color: #7C4DFF;
    --secondary-color: #FF4081;
    --accent-color: #00E5FF;
    --text-color: #FFFFFF;
    --background-dark: #0C0E2B;
    --background-light: #1A1D4C;
    --border-color: #2A2E6E;
    --success-color: #30FFAC;
    --container-width: 1200px;
    --header-height: 80px;
    --nav-item-height: 90px;
    --game-thumb-width: 80px;
    --game-thumb-height: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-dark);
    background-image: linear-gradient(135deg, var(--background-dark) 0%, var(--background-light) 100%);
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

h1, h2, h3 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

button {
    cursor: pointer;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

/* 页眉样式 */
header {
    background-color: rgba(12, 14, 43, 0.9);
    backdrop-filter: blur(10px);
    color: var(--text-color);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--accent-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container a {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.logo-image {
    height: 50px;
    margin-right: 1rem;
    filter: drop-shadow(0 0 8px var(--accent-color));
}

.site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 2rem;
    position: relative;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

nav a:hover::after {
    width: 100%;
}

/* 主要内容区域 */
main {
    padding: 2rem 0;
}

section {
    margin-bottom: 3rem;
}

/* 游戏区域样式 */
.game-section {
    background-color: var(--background-light);
    padding: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    border: 1px solid var(--border-color);
}

.game-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.7);
}

/* 新的游戏区域布局 */
.game-layout {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "left-nav game-area right-nav"
        "bottom-nav bottom-nav bottom-nav";
    gap: 1.5rem;
}

/* 游戏导航区域通用样式 */
.game-nav {
    background-color: rgba(26, 29, 76, 0.7);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.game-nav h3 {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.game-nav-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--text-color);
    background-color: rgba(12, 14, 43, 0.5);
    margin-bottom: 0.75rem;
}

.game-nav-item:hover {
    background-color: rgba(124, 77, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game-nav-item img {
    width: var(--game-thumb-width);
    height: var(--game-thumb-height);
    object-fit: cover;
    border-radius: 12px;
    margin-right: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.game-nav-item:hover img {
    transform: scale(1.05);
    border-color: var(--accent-color);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.game-nav-item span {
    font-weight: 500;
    transition: color 0.3s ease;
}

.game-nav-item:hover span {
    color: var(--accent-color);
}

/* 左侧游戏导航 */
.left-nav {
    grid-area: left-nav;
}

/* 右侧游戏导航 */
.right-nav {
    grid-area: right-nav;
}

/* 底部游戏导航 */
.bottom-nav {
    grid-area: bottom-nav;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.bottom-nav .game-nav-item {
    flex-direction: column;
    text-align: center;
    width: calc(20% - 0.8rem); /* 5个游戏每排，均匀分布 */
}

.bottom-nav .game-nav-item img {
    margin-right: 0;
    margin-bottom: 0.5rem;
    width: 100%;
    height: 100px;
    border-radius: 16px;
}

/* 主游戏区域 */
.game-container {
    grid-area: game-area;
    display: flex;
    flex-direction: column;
    align-items: center;
}

canvas {
    background-color: var(--background-dark);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    max-width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--accent-color);
}

.game-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 800px;
}

.game-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    background-color: rgba(42, 46, 110, 0.5);
    padding: 1rem;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

/* SEO 内容区域样式 */
.seo-section {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.seo-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.7);
}

/* 各个SEO部分的通用样式 */
.hero-section,
.feature-section,
.what-is-section,
.how-to-section,
.faq-section {
    margin-bottom: 4rem;
    padding: 1.5rem;
    background-color: rgba(12, 14, 43, 0.4);
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

/* Hero区域样式 */
.hero-section {
    text-align: left;
    padding: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(12, 14, 43, 0.9) 0%, rgba(26, 29, 76, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-text {
    flex: 1;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.1);
    transform: perspective(800px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: perspective(800px) rotateY(0deg) scale(1.02);
}

.hero-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(0, 229, 255, 0.4);
}

.hero-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.hero-features li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 50px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(124, 77, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 20px rgba(124, 77, 255, 0.6);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 5px 10px rgba(124, 77, 255, 0.4);
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: all 0.6s ease;
}

.cta-button:hover::after {
    left: 100%;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 响应式设计 - Hero部分 */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-image {
        order: 0;
        margin-bottom: 2rem;
    }
    
    .hero-section h2 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        align-items: center;
    }
}

/* Feature区域样式 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: rgba(12, 14, 43, 0.6);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 77, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    border-color: rgba(124, 77, 255, 0.5);
}

.feature-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(26, 29, 76, 0.7);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--accent-color);
    position: relative;
}

.feature-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    z-index: -1;
    opacity: 0.7;
}

.feature-icon-large {
    font-size: 2rem;
}

.feature-card h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--accent-color);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* What Is区域样式 */
.what-is-content {
    max-width: 900px;
    margin: 0 auto;
}

.what-is-intro, 
.what-is-history, 
.what-is-components {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.what-is-components {
    border-bottom: none;
}

.what-is-section h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1rem;
}

.what-is-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    bottom: 0.3rem;
    width: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.what-is-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.components-list {
    padding-left: 1.2rem;
    margin: 1.5rem 0;
}

.components-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.components-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.components-list li strong {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* How To区域样式 */
.how-to-content {
    max-width: 900px;
    margin: 0 auto;
}

.how-to-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to-controls, 
.how-to-mechanics, 
.how-to-advanced {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to-advanced {
    border-bottom: none;
}

.how-to-section h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 1rem;
}

.how-to-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.3rem;
    bottom: 0.3rem;
    width: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.how-to-section h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.how-to-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* 控制方式网格 */
.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.control-item {
    display: flex;
    background-color: rgba(12, 14, 43, 0.6);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid rgba(124, 77, 255, 0.2);
    transition: all 0.3s ease;
}

.control-item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 77, 255, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.control-icon {
    font-size: 2rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.control-info {
    flex: 1;
}

/* 游戏机制和技巧列表 */
.mechanics-list,
.techniques-list {
    margin: 1.5rem 0;
}

.mechanics-list li,
.techniques-list li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.mechanics-list li::before,
.techniques-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.mechanics-list li strong,
.techniques-list li strong {
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 0.3rem;
}

.techniques-list li::before {
    content: '★';
    font-size: 1rem;
}

/* FAQ Section Styles */
.faq-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.faq-section h2 {
    color: #ff9800;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-container {
    background: linear-gradient(145deg, #2a2c3d, #1e1f2c);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.faq-item {
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 152, 0, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.25rem;
    color: #e0e0e0;
    flex: 1;
}

.faq-toggle {
    color: #ff9800;
    font-size: 1.5rem;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background-color: rgba(30, 31, 44, 0.6);
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 5px 25px 25px;
}

.faq-answer p {
    margin: 15px 0;
    line-height: 1.6;
    color: #b0b0b0;
}

.faq-answer p:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* 页脚样式 */
footer {
    background-color: var(--background-dark);
    color: var(--text-color);
    padding: 2rem 0 1rem;
    border-top: 2px solid var(--primary-color);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo,
.footer-links,
.footer-social {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 0.8rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-color: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .game-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto;
        grid-template-areas:
            "game-area"
            "left-nav"
            "right-nav"
            "bottom-nav";
    }
    
    .bottom-nav .game-nav-item {
        width: calc(50% - 0.5rem);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: auto;
    }
    
    header {
        padding: 1rem 0;
    }
    
    header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-container {
        justify-content: center;
    }
    
    nav ul {
        margin-top: 1rem;
        justify-content: center;
    }
    
    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    canvas {
        width: 100%;
        height: auto;
    }
    
    .game-section h2,
    .seo-section h2 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .controls-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .game-stats {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        padding: 1rem 0.5rem;
    }
    
    .site-name {
        font-size: 1.2rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    nav a {
        font-size: 0.9rem;
    }
    
    .game-controls {
        gap: 1rem;
    }
    
    button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .bottom-nav .game-nav-item {
        width: 100%;
    }
}

/* 返回游戏按钮样式 */
.back-to-game {
    text-align: center;
    margin: 2rem 0;
}

.back-to-game-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    border-radius: 30px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.back-to-game-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: white;
}

.game-icon {
    margin-right: 8px;
    font-size: 1.3rem;
} 