* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    background: url('../content/bg.jpg') center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    color: #333;
    line-height: 1.4;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
}

.mainBlock {
    max-width: 1199px;
    width: 100%;
    margin: 25px auto;
    border-radius: 30px;
    background: #fff;
    padding: 10px 20px;
    box-sizing: border-box;
    box-shadow: 2px 2px 30px rgba(0, 0, 0, 0.7);
    border-top: 5px solid #fc5004;
    border-bottom: 5px solid #fc5004;

}

.joyContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.joyHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.joyLogo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    text-decoration: none;
    font-weight: 400;
    color: #fc5004;
}

.joyNav {
    display: flex;
    align-items: center;
}

.joyMenu {
    display: flex;
    list-style: none;
    margin-right: 20px;
}

.joyMenu li {
    margin-left: 25px;
}

.joyMenu a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: color 0.3s;
}

.joyMenu a:hover {
    color: #fc5004;
}

.joyButton {
    background-color: #fc5004;
    color: white;
    border: none;
    padding: 13px 30px;
    border-radius: 30px;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
}

.joyButton:hover {
    background-color: #e04803;
}

.joyBanner {
    padding: 120px 0;
    background: url('../content/heroes.jpg') left center no-repeat;
    background-size: cover;
    border-radius: 20px;
}

.joyBanner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    max-width: 500px;
    width: 100%;
    color: #111;
}

.joyBanner p {
    font-size: 18px;
    max-width: 560px;
    margin: 0 0 30px;
    color: #111;
}

.joyGameSection {
    padding: 60px 0;
}

.joyGameCard {
    display: flex;
    align-items: stretch;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.joyGameImage {
    flex: 1;
    line-height: 0;
}

.joyGameImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.joyGameContent {
    flex: 1;
    padding: 40px;
    text-align: center;
}

.joyGameContent h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #fc5004;
}

.joyAbout {
    padding: 80px 0;
    text-align: center;
}

.joyAboutSubtitle {
    font-size: 18px;
    color: #fc5004;
    margin-bottom: 10px;
}

.joyAboutTitle {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.joyAboutText {
    max-width: 700px;
    margin: 0 auto 20px;
    color: #666;
}

.joyStats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.joyStat {
    text-align: center;
}

.joyStatNumber {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #fc5004;
    margin-bottom: 10px;
}

.joyStatLabel {
    font-size: 16px;
    color: #666;
}

.joyReviews {
    padding: 50px 0;
    background-color: #f9f9f9;
    border-radius: 20px;
}

.joyReviewTitle {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

.joyReviewContainer {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.joyReviewCard {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 30px;
    max-width: 350px;
    text-align: center;
}

.joyReviewAvatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    line-height: 0;
}

.joyReviewAvatar img {
    width: 100%;
}


.joyReviewName {
    font-weight: bold;
    margin-bottom: 10px;
}

.joyReviewStars {
    color: #fc5004;
    margin-bottom: 15px;
    font-size: 20px;
}

.joyReviewText {
    color: #666;
    font-style: italic;
}

.joyFooter {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
    border-radius: 20px;
}

.joyFooterContent {
    margin-bottom: 40px;
}

.joyFooterLogo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #fc5004;
    margin-bottom: 15px;
}

.joySupport {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    margin-top: 25px;
}

.joySupport a {
    line-height: 0;
}

.joySupport img {
    max-width: 190px;
    width: auto;
    max-height: 50px;
    height: auto;
}

.joyFooterAbout {
    color: #ccc;
    margin-bottom: 20px;
}

.joyFooterAbout p {
    margin-bottom: 12px;
}

.joyFooterLinks {
    display: flex;
    gap: 50px;
}

.joyFooterColumn h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.joyFooterColumn ul {
    list-style: none;
}

.joyFooterColumn li {
    margin-bottom: 10px;
}

.joyFooterColumn a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.joyFooterColumn a:hover {
    color: #fc5004;
}

.joyCopyright {
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 14px;
}


.joyInfo {
    padding: 30px 0 52px 0;
}

.joyInfo h1,
.joyInfo h2,
.joyInfo h3 {
    margin: 18px 0 14px 0;
}

.joyInfo ul {
    padding-left: 22px;
    margin: 18px 0;
}

.joyInfo a {
    color: #111;
}

.joyGame {
    padding: 50px 0;
}

.joyGame iframe {
    max-width: 880px;
    height: 530px;
    border-radius: 16px;
    display: block;
    margin: 0 auto;
    width: 100%;
}


.joyBreadcrumbs {
    padding: 20px 0;
    font-size: 14px;
    color: #666;
}

.joyBreadcrumbs a {
    color: #fc5004;
    text-decoration: none;
}

.joyBreadcrumbs span {
    color: #999;
}

.joyContactSection {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.joyContactContainer {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.joyContactTitle {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #fc5004;
}

.joyContactForm {
    display: grid;
    gap: 20px;
}

.joyFormGroup {
    display: flex;
    flex-direction: column;
}

.joyFormGroup label {
    margin-bottom: 5px;
    font-weight: bold;
}

.joyFormGroup input,
.joyFormGroup textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
}

.joyFormGroup textarea {
    min-height: 120px;
    resize: vertical;
}

.joySubmitButton {
    background-color: #fc5004;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    justify-self: start;
}

.joySubmitButton:hover {
    background-color: #e04803;
}

.joySuccessMessage {
    background-color: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
    text-align: center;
    display: none;
}

@media (max-width: 768px) {
    .joyContactContainer {
        padding: 20px;
        margin: 0 20px;
    }
}





















@media (max-width: 768px) {
    .joyHeader {
        flex-direction: column;
        padding: 15px 0;
    }

    .joyNav {
        margin-top: 15px;
        flex-direction: column;
    }

    .joyMenu {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .joyMenu li {
        margin: 0 10px;
    }

    .joyBanner h1 {
        font-size: 36px;
    }

    .joyGameCard {
        flex-direction: column;
    }

    .joyStats {
        flex-direction: column;
        gap: 30px;
    }

    .joyFooterContent {
        flex-direction: column;
    }

    .joyFooterLinks {
        margin-top: 30px;
        gap: 30px;
    }
}