* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: scroll;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

header {
    background: rgba(210, 210, 210, 0.2);
    color: #007cff;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

header h1 {
    font-size: 2.0rem;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: #7d7d7d;
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    padding: 10px 15px;
    border-radius: 5px;
}

header nav ul li a:hover {
    color: #007cff;
    transition: color 0.5s ease;
    text-shadow: 0 0 6px rgba(0, 124, 255, 0.8);
}

header nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 124, 255, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

header nav ul li a:hover::before {
    opacity: 1;
}

main {
    flex: 1;
}

section {
    padding: 2rem 0;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #007cff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #005bb5;
}

.no-link-style {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.glow-text {
    transition: text-shadow 0.5s ease;
}

.glow-text:hover {
    text-shadow: 0 0 14px rgba(0, 124, 255, 0.8);
}

.about-game {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    padding-right: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 8px rgba(0, 0, 0, 0.19);
}

.about-header {
    margin-bottom: 1rem;
    font-size: 1.6rem;
    color: #007cff;
    text-align: left;
}

.about-game p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    letter-spacing: 0.01rem;
    font-weight: 100;
}

.about-text ul {
    margin-bottom: 1.5rem;
}

.card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 6px 20px rgba(0, 0, 0, 0.4);
    padding: 4rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    max-width: 1000px;
    margin: 2rem auto;
}

.contact-email {
    color: #007cff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

footer {
    background: rgba(210, 210, 210, 0.2);
    color: #7d7d7d;
    text-align: center;
    padding: 1rem 0;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.animation-wrapper {
    flex: 1;
    overflow: hidden;
}

@keyframes fly-in {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fly-out {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.fly-in {
    animation: fly-in 0.5s forwards;
}

.fly-out {
    animation: fly-out 0.5s forwards;
}
