@import url('https://fonts.googleapis.com/css2?family=Righteous:wght@700&family=Quicksand:wght@400&display=swap');

html {
    box-sizing: border-box;
}
*,
*::before,
::after {
    box-sizing: inherit;
}
a {
    color: inherit;
    text-decoration: none;
}
body {
    margin: 0 auto;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    font-weight: 400;
    background-color: #333;
}
ul {
    display: inline-block;
    margin: 0;
    padding: 0;
}
li {
    list-style-type: none;
}

.angel__header {
    width: 100%;
    height: 80px;
    background: linear-gradient(90deg, #3a3a6a, #1e1e2f);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.angel__nav {
    display: flex;
    gap: 20px;
}

.angel__nav-lst {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.angel__nav-item a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
    position: relative;
}

.angel__nav-item a:hover {
    color: #ffcc00;
}

.angel__nav-item a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.3s;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.angel__nav-item a:hover::after {
    width: 100%;
}

.angel__logo img {
    height: 50px;
}

.angel__burger {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.angel__burger div {
    width: 30px;
    height: 4px;
    
    background: #ffcc00;
    border-radius: 5px;
    transition: 0.3s;
}

.angel__mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(30, 30, 47, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: 0.5s;
}

.angel__mobile-nav a {
    color: #ffcc00;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.angel__mobile-nav a:hover {
    color: #fff;
}

.angel__mobile-nav.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 760px) {
    .angel__nav,
    .angel__logo {
        display: none;
    }
    
    .angel__burger {
        display: flex;
        position: relative;
        left: 48%;
        z-index: 11;
    }
}

.angel__welcome-section {
    background-image: url('../angels-images/angel-bg-img-1.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.angel__overlay {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.angel__content {
    text-align: center;
    color: #ffde59;
    max-width: 700px;
    padding: 20px;
    z-index: 2;
}

.angel__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-family: 'Righteous', sans-serif;
    text-shadow: 2px 2px 4px #000;
}

.angel__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.5;
    text-shadow: 1px 1px 3px #000;
}

.angel__play-button {
    padding: 15px 30px;
    background-color: #ff3b3b;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    border-radius: 25px;
    transition: background-color 0.3s;
}

.angel__play-button:hover {
    background-color: #ff6961;
    cursor: pointer;
}

.angel__advantages {
    background-color: #262626;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.angel__adv-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    font-family: 'Righteous', sans-serif;
    color: #ffde59;
}

.angel__adv-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.angel__adv-block {
    background-color: #333;
    padding: 20px;
    width: 22%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.angel__adv-block:hover {
    transform: scale(1.05);
}

.angel__adv-heading {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #ffde59;
    font-family: 'Quicksand', sans-serif;
}

.angel__adv-text {
    font-size: 1em;
    color: #e0e0e0;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
}

@media (max-width: 760px) {
    .angel__adv-container {
        flex-direction: column;
        align-items: center;
    }

    .angel__adv-block {
        width: 80%;
        margin-bottom: 20px;
    }

    .angel__title {
        font-size: 2.5em;
    }

    .angel__description {
        font-size: 1em;
    }

    .angel__play-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

.angel__game-section {
    background-color: #2b2b2b;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.angel__game-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1.5s ease-in-out;
}

.angel__game-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.angel__game-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.angel__game-title {
    font-size: 2.5em;
    color: #ffde59;
    font-family: 'Righteous', sans-serif;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px #000;
}

.angel__game-button {
    margin-top: 25px;
    padding: 15px 30px;
    align-items: center;
    background-color: #ff3b3b;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
    text-decoration: none;
    border-radius: 25px;
    transition: background-color 0.3s;
    font-family: 'Quicksand', sans-serif;
}

.angel__game-button:hover {
    background-color: #ff6961;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.angel__reviews-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #1f1f1f;
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.angel__reviews-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #ffde59;
    font-family: 'Righteous', sans-serif;
}

.angel__reviews-container {
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.angel__review-block {
    background-color: #333;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    animation: bounceIn 1s ease-in-out;
}

.angel__review-block:hover {
    transform: scale(1.05);
}

.angel__review-block img {
    width: 35%;
}

.angel__review-text {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #e0e0e0;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
}

.angel__review-author {
    font-size: 0.9em;
    color: #ffde59;
    font-family: 'Quicksand', sans-serif;
}

@keyframes bounceIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 760px) {
    .angel__reviews-container {
        grid-template-columns: 1fr;
    }

    .angel__game-image img {
        width: 200px;
    }

    .angel__game-title {
        font-size: 2em;
    }

    .angel__game-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

.angel__about-section {
    background-color: #1c1c1c;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.angel__about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    animation: fadeIn 1.5s ease-in-out;
}

.angel__about-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffde59;
    font-family: 'Quicksand', sans-serif;
}

.angel__about-title {
    font-size: 2.5em;
    font-family: 'Righteous', sans-serif;
    margin-bottom: 15px;
    text-shadow: 2px 2px 5px #000;
}

.angel__about-text {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #ddd;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
}

.angel__about-button {
    padding: 12px 25px;
    background-color: #ff3b3b;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.angel__about-button:hover {
    background-color: #ff6961;
    cursor: pointer;
}

.angel__about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.angel__faq-section {
    background-image: url('../angels-images/angel-bg-img-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.angel__faq-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #ffde59;
    font-family: 'Righteous', sans-serif;
    text-shadow: 2px 2px 5px #000;
}

.angel__faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.angel__faq-block {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    animation: bounceIn 1s;
    transition: transform 0.3s;
}

.angel__faq-block:hover {
    transform: scale(1.05);
}

.angel__faq-question {
    font-size: 1.3em;
    color: #ffde59;
    margin-bottom: 10px;
    font-family: 'Righteous', sans-serif;
}

.angel__faq-answer {
    font-size: 1em;
    color: #ddd;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.6;
}

@keyframes bounceIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 760px) {
    .angel__about-container {
        grid-template-columns: 1fr;
    }

    .angel__faq-container {
        grid-template-columns: 1fr;
    }

    .angel__about-title {
        font-size: 2em;
    }

    .angel__about-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

.angel__contacts-section {
    background-color: #1c1c1c;
    padding: 60px 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 55vh;
    position: relative;
}

.angel__contacts-title {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #ffde59;
    font-family: 'Righteous', sans-serif;
    text-shadow: 2px 2px 5px #000;
}

.angel__contacts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 80%;
    max-width: 1000px;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    animation: fadeIn 1.5s ease-in-out;
}

.angel__form-block {
    display: flex;
    flex-direction: column;
}

.angel__form-label {
    margin-bottom: 5px;
    font-size: 1.2em;
    color: #ffde59;
}

.angel__form-input,
.angel__form-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 2px solid #ffde59;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    font-size: 1em;
    font-family: 'Quicksand', sans-serif;
    outline: none;
    transition: border-color 0.3s;
}

.angel__form-input:hover,
.angel__form-textarea:hover {
    border-color: #ff3b3b;
}

.angel__submit-button {
    padding: 12px 25px;
    background-color: #ff3b3b;
    color: #fff;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.angel__submit-button:hover {
    background-color: #ff6961;
}

.angel__info-block {
    color: #ddd;
    font-family: 'Quicksand', sans-serif;
}

.angel__info-item {
    margin-bottom: 10px;
    font-size: 1.1em;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.angel__modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.angel__modal-content {
    background-color: #2a2a2a;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.5s;
}

.angel__modal-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff3b3b;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.angel__modal-button:hover {
    background-color: #ff6961;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 760px) {
    .angel__contacts-container {
        width: 100%;
        height: auto;
        grid-template-columns: 1fr;
        padding: 5px;
    }

    .angel__contacts-section {
        padding: 60px 5px;
    }
    .angel__form-block {
        margin-bottom: 20px;
    }
}

.angel__disclaimer-section {
    margin: 0 auto;
    padding: 40px;
    background-color: #2e2e48;
    text-align: center;
    color: #f4f4f9;
}

.angel__disclaimer-title {
    font-size: 2.2em;
    font-family: 'Righteous', sans-serif;
    margin-bottom: 20px;
    color: #f4a261;
}

.angel__disclaimer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.angel__disclaimer-block, .angel__disclaimer-logos {
    min-width: 290px;
    background-color: #3a3a5c;
    padding: 15px;
    margin: 0 auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

.angel__disclaimer-logos img {
    width: 300px; 
    height: 83px;
}

.angel__disclaimer-logos a:hover {
    transform: scale(1.05);
    background-color: #4f4f76;
}

.angel__disclaimer-age {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    margin-top: 30px;
    background-color: #3a3a5c;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}
.angel__disclaimer-block:hover {
    transform: scale(1.05);
    background-color: #4f4f76;
}

.angel__disclaimer-heading {
    font-size: 1.4em;
    color: #e76f51;
    margin-bottom: 10px;
}

.angel__disclaimer-text {
    font-size: 1em;
    color: #f4f4f9;
}

@media (max-width: 760px) {
    .angel__disclaimer-section, .angel__disclaimer-logos {
        padding: 5px;
    }
}

.angel__footer {
    padding: 30px;
    background-color: #1c1c32;
    color: #ccc;
    text-align: center;
}

.angel__footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 20px;
}

.angel__footer-block {
    margin: 10px;
    padding: 15px;
    background-color: #2b2b46;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0,0,0,0.5);
}

.angel__footer-heading {
    font-size: 1.6em;
    color: #f4a261;
    margin-bottom: 10px;
}

.angel__footer-text {
    font-size: 1em;
    color: #ddd;
    line-height: 1.6;
}

.angel__footer-links a {
    color: #61dafb;
    font-weight: bold;
    padding-top: 15px;
    margin-top: 15px;
}

.angel__footer-rights {
    grid-column: span 2;
    font-size: 0.9em;
    color: #999;
    margin-top: 20px;
}

@media (max-width: 760px) {
    .angel__footer {
        padding: 5px;
    }
    .angel__footer-container {
        display: flex;
        flex-direction: column;
    }
}

.age-restriction-icon {
    width: 70px;
    height: 70px;
    margin: 25px 0 25px 0;
}

.angel__page-title-top {    
    font-family: 'Righteous', sans-serif;
    font-size: 35px;
    color: #aaa;
    text-align: center;
    margin: 0;
    padding-bottom: 20px;
    text-shadow: 0 0 6px #cecb0d, 0 0 10px #310abe88;
}
.angel__page-container {
    max-width: 100%;
    background-color: #42f5b0;
    color: rgb(126, 84, 84);
    text-align: center;
    padding: 20px 0px;
    margin-top: 60px;
}
.angel__page-section {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}
.angel__page-titlelow {
    font-family: 'Righteous', sans-serif;
    font-size: 35px;
    color: #fff;
    text-align: left;
    margin-bottom: 40px;
    text-shadow: 0 0 8px #41850a, 0 0 10px #ce5f1f88;
}

.angel__page-text {
    font-size: 20px;
    color: #fff;
    text-align: left;

}

.angel__page-text-high {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 8px #41850a, 0 0 10px #ce5f1f88;
}

.angel__page-item {
    color: #000;
    text-align: left;
}

.angel__page-list {
    padding-left: 15px;
    font-size: 20px;
    text-shadow: 0 0 8px #41850a, 0 0 10px #ce5f1f88;
    color: #444;
    text-align: left;
}

.angel__page-footer-text {
    font-size: 20px;
    color: #fff;
    text-align: center;
}

@media(max-width: 950px) {
    .angel__page-container {
        padding: 15px;
    }
}

@media(max-width: 350px) {
    .angel__page-container {
        padding: 15px;
    }

    .angel__page-title-top {
        font-size: 25px;
        padding-top: 5px;
        text-align: center;
    }

    .angel__page-section {
        padding: 10px;
    }

    .angel__page-titlelow {
        font-size: 20px;
    }

    .angel__page-text {
        font-size: 16px;
    }

    .angel__page-list {
        font-size: 15px;
        padding-bottom: 15px;
    }

    .angel__page-footer-text {
        font-size: 15px;
    }
}

#cookiesAngel {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    background: #333;
    margin: 15px;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    justify-content: flex-end;
    align-items: flex-end;
    max-width: 600px;
    width: 100%;
}

.angel__cookies-style {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    color: #fff;
}

@media (max-width: 760px) {
    .angel__cookies-style {
        flex-direction: column;
        justify-content: center;
    }

    .angel__cokies-text {
        text-align: center;
    }
}

.angel__cokies-text {
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
}

.angel__cokies-text a {
    color: #00ffff;
}

.angel__page-link {
    color: #eeff00;
}
.angel__modal-thanks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.angel__modal-block {
    background-color: #333;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    animation: appear 0.5s ease;
}

.angel__modal-title {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Righteous', sans-serif;
}

.angel__modal-text {
    font-size: 16px;
    margin-bottom: 20px;
}

.angel__modal-buttons button {
    margin: 5px;
    padding: 10px 20px;
    border: none;
    background-color: #ff3c00;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.angel__modal-buttons button:hover {
    background-color: #82e600;
}

@keyframes appear {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
