body {
    margin: 0;
    font-family: 'Anton', sans-serif;
    background: linear-gradient(135deg, #101820, #1E3C72);
    color: #fff;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 500px;
    width: 100%;
    padding: 20px;
}

.title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.input-box {
    padding: 10px;
    width: 80%;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.buttons button {
    background: #FFD700;
    color: #101820;
    border: none;
    margin: 5px;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.buttons button:hover {
    transform: scale(1.05);
}

.tile {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 5px;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 6px;
    animation: pop 0.3s ease-in-out;
}

.green { background-color: #28a745; }
.yellow { background-color: #ffc107; }
.gray { background-color: #6c757d; }

@keyframes pop {
    0% { transform: scale(0.5); }
    100% { transform: scale(1); }
}

.stats-box {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
}

.social-buttons button {
    background: #1DA1F2;
    color: white;
    margin: 5px;
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
}

.how-to-play {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.how-to-play h2 {
    margin-top: 0;
    color: #FFD700;
}

.how-to-play ul {
    list-style-type: none;
    padding: 0;
}

.color-box {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-right: 5px;
    vertical-align: middle;
    border-radius: 3px;
}

.logo-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.logo-icon {
    height: 40px;
    margin-right: 10px;
}
@media screen and (max-width: 600px) {
    .title {
        font-size: 2rem;
    }
    .input-box {
        font-size: 1rem;
        width: 100%;
    }
    .buttons button {
        width: 100%;
        margin: 5px 0;
    }
}

.word-length-notice {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.top-ad {
    margin-bottom: 10px;
}