body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #cffcf7;
    text-align: center;
}

.starttitle {
    font-size: 80px;
    margin-top: 40px;
}

.subtitle {
    font-size: 40px;
    margin-bottom: 40px;
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20%;
}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 40%
}

.peach1 {
    width: 250px;
    margin-bottom: 20px;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
}

.play-button {
    font-size: 40px;
    padding: 15px 40px;
    background-color: #d6fccc;
    border: 4px solid #7abf69;
    border-radius: 12px;
    cursor: pointer;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
    transition: transform 0.05s ease, drop-shadow 0.05s ease;
}

.play-button:hover {
    background-color: #d6fccc;
    transform: scale(0.9);
    filter: drop-shadow(-10px -3px 2px rgba(0,0,0, 0.3));
}

.right {
    max-width: 1000px;
    text-align: center;
    font-size: 20px;
    align-item: center;
}

.footer-left {
    position: absolute;
    left: 0px;
    bottom: -100px;
}

.footer-right {
    position: absolute;
    right: 0px;
    bottom: -100px;
}

/* ВЫШЕ — ХАРАКТЕРИСТИКИ СТАРТОВОГО ЭКРАНА */

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
}

.game-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.column-left .item:nth-child(1) {
    transform: translateX(200px);
}

.column-left .item:nth-child(2) {
    transform: translateX(100px);
}

.column-left .item:nth-child(3) {
    transform: translateX(50px);
}

.column-right .item:nth-child(1) {
    transform: translateX(-200px);
}

.column-right .item:nth-child(2) {
    transform: translateX(-100px);
}

.column-right .item:nth-child(3) {
    transform: translateX(-50px);
}

.rules-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.rules-center img {
    width: 350px;
    height: 350px;
}

.check-button {
    font-size: 40px;
    padding: 15px 40px;
    background-color: #d6fccc;
    border: 4px solid #7abf69;
    border-radius: 12px;
    cursor: pointer;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
    transition: transform 0.05s ease, drop-shadow 0.05s ease;
}

.check-button:hover {
    background-color: #d6fccc;
    transform: scale(0.9);
    filter: drop-shadow(-10px -3px 2px rgba(0,0,0, 0.3));
}

.answer {
    width: 120px;
    padding: 8px 10px;
    font-size: 18px;
    background-color: #fff8dc;
    border: 3px solid #ffb347;
    border-radius: 12px;
    text-align: center;
    outline: none;
    transition: transform 0.05s ease, 
                box-shadow 0.05s ease,
                border-color 0.05s ease;
}

.answer:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(255, 179, 71, 0.6);
}

.answer:focus {
    border-color: #ffb347;
    box-shadow: 0px 0px 15px rgba(255, 179, 71, 0.8);
    transform: scale(1.08);
}

/* ВЫШЕ — ХАРАКТЕРИСТИКИ ИГРОВОГО ЭКРАНА */

.sectitle {
    font-size: 80px;
    margin-top: 40px;
}

.seccontent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 20px;
}

.peach2 {
    width: 250px;
    margin-bottom: 20px;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
}

.secright {
    max-width: 1000px;
    text-align: center;
    font-size: 20px;
    align-item: center;
}

.secbutton {
    font-size: 40px;
    padding: 15px 40px;
    background-color: #d6fccc;
    border: 4px solid #7abf69;
    border-radius: 10px;
    cursor: pointer;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
    transition: transform 0.05s ease, drop-shadow 0.05s ease;
}

.secbutton:hover {
    background-color: #d6fccc;
    transform: scale(0.9);
    filter: drop-shadow(-10px -3px 2px rgba(0,0,0, 0.3));
}

/* ВЫШЕ — ХАРАКТЕРИСТИКИ СЕКРЕТНОГО ЭКРАНА */

.lostitle {
    font-size: 80px;
    margin-top: 40px;
}

.loscontent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 20px;
}

.peach3 {
    width: 250px;
    margin-bottom: 20px;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
}

.losright {
    max-width: 1000px;
    text-align: center;
    font-size: 20px;
    align-item: center;
}

.losbutton {
    font-size: 40px;
    padding: 15px 40px;
    background-color: #d6fccc;
    border: 4px solid #7abf69;
    border-radius: 10px;
    cursor: pointer;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
    transition: transform 0.05s ease, drop-shadow 0.05s ease;
}

.losbutton:hover {
    background-color: #d6fccc;
    transform: scale(0.9);
    filter: drop-shadow(-10px -3px 2px rgba(0,0,0, 0.3));
}

/* ВЫШЕ — ХАРАКТЕРИСТИКИ ЭКРАНА ПРОИГРЫША */

.wintitle {
    font-size: 80px;
    margin-top: 40px;
}

.wincontent {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 20px;
}

.peach4 {
    width: 250px;
    margin-bottom: 20px;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
}

.winright {
    max-width: 1000px;
    text-align: center;
    font-size: 20px;
    align-item: center;
}

.winbutton {
    font-size: 40px;
    padding: 15px 40px;
    background-color: #d6fccc;
    border: 4px solid #7abf69;
    border-radius: 10px;
    cursor: pointer;
    filter: drop-shadow(-20px -5px 5px rgba(0, 0, 0, 0.25));
    transition: transform 0.05s ease, drop-shadow 0.05s ease;
}

.winbutton:hover {
    background-color: #d6fccc;
    transform: scale(0.9);
    filter: drop-shadow(-10px -3px 2px rgba(0,0,0, 0.3));
}

/* ВЫШЕ — ХАРАКТЕРИСТИКИ ЭКРАНА ВЫИГРЫША */