@font-face {
    font-family: 'Daydream';
    src: url('../fonts/Daydream.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
    font-family: 'Jersey 20', monospace;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
    padding: 20px;
}

.title-section {
    margin-bottom: 40px;
    margin-top: 35px;
}

.game-title {
    font-family: 'Daydream', Arial, sans-serif;
    font-size: 48px;
    font-weight: normal;
    line-height: 1;
    white-space: nowrap;
}

.bang-bang {
    color: red;
}

.tanks {
    color: white;
}

.marquee-container {
    margin-top: 20px;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    color: #ccc;
    font-size: 18px;
    font-family: 'Jersey 20', monospace;
    animation: marquee 40s linear infinite;
    padding-left: 100%;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.game-section {
    margin: 40px 0;
}

.game-window {
    width: 800px;
    height: 600px;
    margin: 0 auto;
    border: 2px solid #333;
    background-color: #111;
    overflow: hidden;
}

.game-window iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-section {
    margin-top: 40px;
}

.contact-info {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: red;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}
