* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
}
header {
    background-color: #610C9F;
    color: white;
    padding: 20px;
}
header {
    background-color: #610C9F;
    color: white;
    padding: 20px;
    position: sticky; 
    top: 0; 
    z-index: 1000;
}
.main-title {
    text-align: center;
    font-size: 3.5em; 
    margin-bottom: 30px; 
    color: #610C9F; 
    text-transform: uppercase; 
    letter-spacing: 2px;
    font-weight: bold; 
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
} 
.logo img {
    max-height: 40px;
    width: auto;
}
.navbar ul {
    list-style: none;
}
.navbar ul li {
    display: inline-block;
    margin-right: 20px;
}
.navbar ul li:last-child {
    margin-right: 0;
}
.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}
.navbar ul li a:hover {
    color: #DA0C81;
    font-size: 20px;
    transition: 0.3s;
}

main {
    padding: 20px;
}

h1, h2 {
    color: #940B92; 
}

.games-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
}

.game {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
}

.game img {
    max-width: 100%;
    height: auto;
}

.game button {
    background-color: #DA0C81;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.game button:hover {
    background-color: #E95793;
}



footer {
    background-color: #610C9F;
    color: white;
    padding: 20px;
    text-align: center;
}
.game button {
    background-color: #DA0C81;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.game button:hover {
    background-color: #E95793;
    transform: scale(1.05); 
}

.special-offers .game button {
    background-color: #940B92; 
}

.special-offers .game button:hover {
    background-color: #E95793; 
}


.about-section {
    background-color: #610C9F; 
    color: white; 
    padding: 50px;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.contact-form h1 {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    background-color: #610C9F;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button[type="submit"]:hover {
    background-color: #940B92;
}



footer {
    background-color: #610C9F; 
    color: white; 
    padding: 30px 0;
    text-align: center;
}


.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}


.footer-info {
    text-align: center;
}

.footer-info h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.footer-info p {
    margin-bottom: 5px;
}
