body {
    margin: 0;
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    color: #fff;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    min-height: 100vh;
    backdrop-filter: blur(2px);
}
header, .glass-header, .glass-footer {
    background: rgba(255,255,255,0.13);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    border-radius: 24px;
    padding: 24px 0;
    margin: 0 0 32px 0;
    text-align: center;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    letter-spacing: 1px;
    border-bottom: 1px solid #ffd600;
}
nav {
    margin-top: 10px;
}
nav a {
    color: #ffd600;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.2s;
}
nav a:hover {
    color: #e91e63;
}
.hero {
    text-align: center;
    margin: 60px auto;
    max-width: 600px;
    background: rgba(51,51,51,0.5);
    padding: 44px 34px;
    border-radius: 22px;
    box-shadow: 0 8px 32px #0008;
    backdrop-filter: blur(8px);
}
.hero h2 {
    font-size: 2em;
    margin-bottom: 16px;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 24px;
}
.play-btn {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 32px;
    background: linear-gradient(90deg,#ffd600 60%,#fff176 100%);
    color: #222;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.play-btn:hover {
    background: linear-gradient(90deg,#fff176 60%,#ffd600 100%);
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
    transform: scale(1.06);
}
.games-list {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}
.game-card, .glass-card {
    background: rgba(255,255,255,0.16);
    border-radius: 22px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.14);
    padding: 32px 18px;
    width: 270px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    font-family: 'Segoe UI', 'Arial', sans-serif;
    margin-bottom: 0;
    border: 1px solid #ffd600;
}
.game-card:hover, .glass-card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.22);
    transform: translateY(-6px) scale(1.04);
    background: rgba(255,255,255,0.22);
}
footer, .glass-footer {
    text-align: center;
    padding: 20px 0;
    background: rgba(34,34,34,0.7);
    color: #aaa;
    margin-top: 40px;
    font-size: 1em;
    box-shadow: 0 -2px 16px #0006;
    border-top: 1px solid #ffd600;
}
.nav-btn {
    padding: 10px 28px;
    border-radius: 12px;
    background: linear-gradient(90deg,rgba(255,255,255,0.18) 60%,#ffd600 100%);
    color: #ffd600;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    box-shadow: 0 2px 8px #0003;
    border: 1px solid #ffd600;
    margin: 0 8px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    backdrop-filter: blur(6px);
    display: inline-block;
}
.nav-btn:hover {
    background: linear-gradient(90deg,#ffd600 60%,rgba(255,255,255,0.18) 100%);
    color: #222;
    transform: scale(1.07);
    box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}
.hero .motivation {
    color: #ffd600 !important;
}
.games-list h2, h2 {
    color: #ffd600 !important;
}
.game-card h3 {
    color: #ffd600;
}
