:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ff3d7f;
    --accent-color: #8b6db5;
    --text-color: #ffffff;
    --card-bg: #ffffff;
    --rating-color: #ffd700;
    --shadow-color: rgba(139, 109, 181, 0.25);
    --gradient-start: #ff3d7f;
    --gradient-end: #ff8474;
}

body {
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    background: url('../img/back.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
   /* backdrop-filter: blur(5px); */
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header__logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
}

.header__logo {
    height: 90px;
    margin-right: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

.header__logo-text {
    font-family: 'Rowdies', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.header__nav {
    display: flex;
    gap: 15px;
}

.header__nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.header__nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: linear-gradient(
        45deg,
        rgba(255, 61, 127, 0.5),
        rgba(79, 195, 247, 0.5)
    );
    transform: translate(-50%, -50%) rotate(45deg) translateY(100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.header__nav-link:hover {
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.header__nav-link:hover::before {
    transform: translate(-50%, -50%) rotate(45deg) translateY(0);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff3d7f, #4fc3f7);
    border-radius: 30px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header__nav-link:hover::after {
    opacity: 1;
}

.header__nav-link.active {
    background: linear-gradient(45deg, #ff3d7f, #4fc3f7);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 5px 15px rgba(255, 61, 127, 0.3);
}

@media (max-width: 768px) {
    .header {
        padding: 10px 0;
        background: rgba(0,0,0,0.3);
    }

    .header__content {
        justify-content: space-between;
        padding: 0 15px;
    }

    .header__logo {
        height: 70px;
    }

    .header__logo-text {
        font-size: 1.3rem;
    }

    .header__nav {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .header__nav-link {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .header__burger {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .header__logo {
        height: 50px;
    }

    .header__logo-text {
        font-size: 1.1rem;
    }

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

    .header__nav-link {
        width: 80%;
        text-align: center;
    }

    .hero {
        padding-top: 180px; 
    }
}

.hero {
    padding: 100px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 109, 181, 0.9), rgb(153 217 255 / 47%));
    border-bottom: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.2)"/></svg>') 0 0/20px 20px;
    animation: starsMove 60s linear infinite;
    opacity: 0.5;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 
        2px 2px 0 #ff3d7f,
        4px 4px 0 #4fc3f7,
        6px 6px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

.hero__title::after {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 2px;
    background: linear-gradient(45deg, #ff3d7f, #4fc3f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.4;
    filter: blur(8px);
    z-index: -1;
}

.hero__title:hover {
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(255, 61, 127, 0.5));
    }
    100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }
}

.hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', Arial, sans-serif;
    color: #fff;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero__tags {
    margin-top: 1rem;
    gap: 0.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
}

.hero__tag {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
}

.hero__tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero__tag:first-child {
    background: rgba(255, 0, 102, 0.2);
    border-color: rgba(255, 0, 102, 0.3);
}

.hero__text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    z-index: 2;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero__link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 2px 5px;
    border-radius: 4px;
    background: rgba(255, 0, 102, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.hero__link:hover {
    text-decoration: none;
    background: rgba(255, 0, 102, 0.2);
    color: #ff1a75;
}

.casino-list {
    padding: 3rem 0;
}

.casino-card {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 1rem;
    padding: 0;
    display: flex;
    align-items: stretch;
    position: relative;
    box-shadow: 0 10px 20px rgba(139, 109, 181, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 109, 181, 0.1);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    min-height: 140px;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 109, 181, 0.15);
}

.casino-card__number {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.casino-card__logo-wrapper {
    width: 160px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
}

.casino-card__logo {
    max-width: 120px;
    height: auto;
    object-fit: contain;
}

.casino-card__content {
    flex-grow: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.casino-card__title {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.casino-card__bonus {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.casino-card__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.casino-card__features li {
    font-size: 0.85rem;
    color: var(--primary-color);
    opacity: 0.8;
    padding: 4px 0;
}

.casino-card__rating {
    width: 140px;
    padding: 15px;
    border-left: 1px solid rgba(111, 93, 132, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(111, 93, 132, 0.03);
}

.rating {
    font-family: 'Rowdies', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: #6f5d84;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff3d7f, #4fc3f7);
    color: #fff !important;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 61, 127, 0.2);
    -webkit-appearance: none;
    appearance: none;
    min-width: 120px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 61, 127, 0.3);
    background: linear-gradient(45deg, #ff2d6f, #3fb3e7);
}

.yellow-stars {
    color: #ffd700;
}

@media (max-width: 992px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .casino-card {
        flex-direction: row;
        min-height: auto;
    }

    .casino-card__logo-wrapper {
        width: 150px;
        padding: 15px;
    }

    .casino-card__logo {
        width: 120px;
        max-height: 80px;
    }

    .casino-card__content {
        padding: 1rem;
    }

    .casino-card__features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .casino-card__rating {
        width: 100%;
        border-left: none;
        border-top: 1px solid rgba(111, 93, 132, 0.1);
    }
}

@media (max-width: 576px) {
    .casino-card__logo-wrapper {
        width: 120px;
        padding: 10px;
    }

    .casino-card__logo {
        width: 100px;
        max-height: 60px;
    }

    .casino-card__content {
        padding: 1.5rem;
    }

    .casino-card__title {
        font-size: 1.2rem;
    }

    .casino-card__bonus {
        font-size: 1rem;
    }

    .casino-card__features li {
        font-size: 0.85rem;
    }

    .rating {
        font-size: 2rem;
    }
}

.footer {
    background-color: #6f5d84;
    padding: 60px 0 30px;
    color: var(--text-color);
}

.footer__info-block {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__logos-block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    padding: 20px;
}

.footer__logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer__logo:hover {
    transform: translateY(-5px);
}

.footer__text-block {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

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

.footer__copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.footer__links {
    display: flex;
    gap: 30px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer__links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__info-block {
        flex-direction: column;
        gap: 30px;
    }

    .footer__logos-block {
        gap: 20px;
    }

    .footer__logo {
        height: 50px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer__links {
        flex-direction: column;
        gap: 10px;
    }
}

.orange-bg {
    background: #ff8036;
}

.red-bg {
    background: #ff3636;
}

.black-bg {
    background: #333;
}

.green-bg {
    background: #4CAF50;
}

.purple-bg {
    background: #9c27b0;
}

.text-blocks {
    padding: 40px 0;
    margin-top: 40px;
    background: #fff;
    color: #333;
}

.text-block {
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.text-block:last-child {
    margin-bottom: 0;
}

.text-block p {
    margin-bottom: 15px;
}

.text-block p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .text-blocks {
        padding: 20px;
    }
    
    .text-block {
        padding: 15px 20px;
        margin-bottom: 15px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        backdrop-filter: blur(5px);
    }
}

@media (max-width: 480px) {
    .text-blocks {
        padding: 15px;
    }

    .text-block {
        padding: 12px 15px;
        margin-bottom: 12px;
    }
}

.container {
    max-width: 1000px !important;
    padding: 0 20px;
}

.page-title {
    color: var(--text-color);
    margin: 120px 0 40px;
    text-align: center;
    font-size: 2.5rem;
}

.policy-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 60px;
    color: #333;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        margin: 100px 0 30px;
    }

    .policy-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .header__logo {
        height: 70px;
    }

    .header__logo-text {
        font-size: 1.4rem;
    }

    .header__nav {
        padding: 8px 15px;
    }

    .header__nav-link {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
}

.header__burger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1001;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.header__burger span:first-child {
    top: 0;
}

.header__burger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__burger span:last-child {
    bottom: 0;
}

@media (max-width: 768px) {
    .header__burger {
        display: block;
    }

    .header__content {
        justify-content: space-between;
    }

    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(111, 93, 132, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 20px;
        z-index: 1000;
    }

    .header__nav.active {
        display: flex;
    }

    .header__nav-link {
        width: 90%;
        text-align: center;
        margin: 10px 0;
        font-size: 1.1rem;
        padding: 15px;
    }

    .header__burger.active span:first-child {
        transform: rotate(45deg);
        top: 50%;
        margin-top: -1px;
    }

    .header__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .header__burger.active span:last-child {
        transform: rotate(-45deg);
        bottom: 50%;
        margin-bottom: -1px;
    }

    body.no-scroll::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }
}

@media (max-width: 768px) {
    .casino-card {
        flex-direction: column;
        min-height: auto;
        margin: 0 10px 15px;
        border-radius: 15px;
    }

    .casino-card__logo-wrapper {
        width: 100%;
        height: 80px;
        padding: 10px;
        border-radius: 15px 15px 0 0;
    }

    .casino-card__logo {
        max-width: 120px;
        max-height: 60px;
    }

    .casino-card__content {
        padding: 15px;
        width: 100%;
    }

    .casino-card__title {
        font-size: 1.1rem;
        margin-bottom: 5px;
        text-align: center;
    }

    .casino-card__bonus {
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-align: center;
    }

    .casino-card__features {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 0;
        width: 100%;
        margin-bottom: 10px;
    }

    .casino-card__features li {
        font-size: 0.8rem;
        padding: 8px 12px;
        text-align: left;
        background: rgba(111, 93, 132, 0.05);
        border-radius: 6px;
        width: 100%;
        display: block;
    }

    .casino-card__features li:nth-child(n+4) {
        display: none;
    }

    .feature-star {
        display: none;
    }

    .casino-card__rating {
        width: 100%;
        padding: 12px 15px;
        border-top: 1px solid rgba(111, 93, 132, 0.1);
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 10px;
        background: none;
    }

    .rating {
        font-size: 1.6rem;
        margin: 0;
    }

    .stars {
        font-size: 0.9rem;
        margin: 0;
    }

    .btn-primary {
        padding: 8px 15px;
        font-size: 0.85rem;
        min-width: 100px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .casino-card {
        margin: 0 5px 12px;
    }

    .casino-card__logo-wrapper {
        height: 70px;
    }

    .casino-card__logo {
        max-width: 100px;
        max-height: 50px;
    }

    .casino-card__rating {
        padding: 10px;
    }

    .rating {
        font-size: 1.4rem;
    }

    .stars {
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 40px;
    }

    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-shadow: 
            1px 1px 0 #ff3d7f,
            2px 2px 0 #4fc3f7,
            3px 3px 10px rgba(0, 0, 0, 0.3);
    }

    .hero__subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero__text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero__tags {
        display: none; 
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 30px;
    }

    .hero__title {
        font-size: 1.8rem;
        text-shadow: 
            1px 1px 0 #ff3d7f,
            2px 2px 0 #4fc3f7,
            2px 2px 8px rgba(0, 0, 0, 0.3);
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero__text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .hero {
        padding: 120px 0 40px; 
    }

    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        text-shadow: 
            1px 1px 0 #ff3d7f,
            2px 2px 0 #4fc3f7,
            3px 3px 10px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px; 
    }

    .hero {
        padding: 140px 0 30px; 
    }

    .hero__title {
        font-size: 1.8rem;
        padding: 0 10px; 
    }

    .casino-card {
        margin: 0 0 15px;
        border-radius: 15px;
    }
}

.feature-star {
    color: var(--secondary-color);
    margin-right: 8px;
    display: inline-block;
}

@media (max-width: 768px) {
    .feature-star {
        display: none;
    }
}

.casino-card:nth-child(4) .casino-card__logo,
.casino-card:nth-child(5) .casino-card__logo {
    max-width: 100px;
    max-height: 50px;
}

@media (max-width: 768px) {
    .casino-card:nth-child(4) .casino-card__logo,
    .casino-card:nth-child(5) .casino-card__logo {
        max-width: 90px;
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .casino-card:nth-child(4) .casino-card__logo,
    .casino-card:nth-child(5) .casino-card__logo {
        max-width: 80px;
        max-height: 40px;
    }
}

.casino-card:nth-child(3) .casino-card__logo {
    max-width: 90px;
    max-height: 45px;
}

.casino-card:nth-child(4) .casino-card__logo {
    max-width: 110px;
    max-height: 55px;
}

@media (max-width: 768px) {
    .casino-card:nth-child(3) .casino-card__logo {
        max-width: 80px;
        max-height: 40px;
    }

    .casino-card:nth-child(4) .casino-card__logo {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .casino-card:nth-child(3) .casino-card__logo {
        max-width: 70px;
        max-height: 35px;
    }

    .casino-card:nth-child(4) .casino-card__logo {
        max-width: 90px;
        max-height: 45px;
    }
}

.about-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 109, 181, 0.9), rgba(79, 195, 247, 0.8));
    position: relative;
    overflow: hidden;
}

.about-hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero__subtitle {
    font-size: 1.2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
}

.about-section {
    margin-bottom: 60px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 109, 181, 0.1);
}

.about-section__title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.about-section__content {
    color: #444;
    line-height: 1.8;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.mission-card {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 109, 181, 0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
}

.mission-card__icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.mission-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.evaluation-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.evaluation-step {
    text-align: center;
    padding: 20px;
    background: rgba(139, 109, 181, 0.05);
    border-radius: 15px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-weight: bold;
}

.responsible-gaming {
    background: rgba(79, 195, 247, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-top: 20px;
}

.responsible-gaming__tips {
    margin-top: 20px;
}

.responsible-gaming__tips ul {
    list-style: none;
    padding: 0;
}

.responsible-gaming__tips li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.responsible-gaming__tips li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.contact-section {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(45deg, rgba(139, 109, 181, 0.1), rgba(79, 195, 247, 0.1));
}

.contact-section__title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-section__text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.contact-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .about-hero__title {
        font-size: 2rem;
    }

    .mission-cards,
    .evaluation-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .contact-section {
        padding: 40px 0;
    }
}

.contact-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 109, 181, 0.9), rgba(79, 195, 247, 0.8));
    position: relative;
    overflow: hidden;
}

.contact-hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero__subtitle {
    font-size: 1.2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 109, 181, 0.1);
}

.contact-form__title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(139, 109, 181, 0.2);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 61, 127, 0.1);
}

.contact-form__submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 20px;
}

.contact-info {
    color: var(--primary-color);
}

.contact-info__section {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(139, 109, 181, 0.1);
}

.contact-info__section h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-info__link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info__link:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    padding: 8px 20px;
    background: rgba(139, 109, 181, 0.1);
    border-radius: 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-info__section {
        padding: 20px;
    }

    .social-links {
        flex-wrap: wrap;
    }
}

.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.thank-you-popup.active {
    opacity: 1;
    visibility: visible;
}

.thank-you-popup__content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thank-you-popup.active .thank-you-popup__content {
    transform: translateY(0);
}

.thank-you-popup h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.thank-you-popup p {
    color: #666;
    margin-bottom: 25px;
}

.thank-you-popup__close {
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thank-you-popup__close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 61, 127, 0.3);
}

@media (max-width: 768px) {
    .thank-you-popup__content {
        padding: 30px;
    }

    .thank-you-popup h3 {
        font-size: 1.5rem;
    }
}

.terms-hero,
.responsible-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 109, 181, 0.9), rgba(79, 195, 247, 0.8));
    position: relative;
    overflow: hidden;
}

.terms-hero__title,
.responsible-hero__title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.terms-hero__subtitle,
.responsible-hero__subtitle {
    font-size: 1.2rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.terms-content,
.responsible-content {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
}

.terms-section,
.responsible-section {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(139, 109, 181, 0.1);
}

.terms-section h2,
.responsible-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.terms-section p,
.responsible-section p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 15px;
}

.terms-section ul {
    padding-left: 20px;
    color: #444;
}

.terms-section ul li {
    margin-bottom: 10px;
}

.warning-section {
    background: linear-gradient(45deg, #ff6b6b, #ff8787);
    color: #fff;
}

.warning-section h2,
.warning-section p {
    color: #fff;
}

.alert-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.alert-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 109, 181, 0.1);
}

.alert-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.alert-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.tips-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tip-item {
    background: rgba(139, 109, 181, 0.05);
    padding: 25px;
    border-radius: 15px;
}

.tip-item h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.help-resources {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.help-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(139, 109, 181, 0.1);
}

.help-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.help-card .btn {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .terms-hero__title,
    .responsible-hero__title {
        font-size: 2rem;
    }

    .terms-section,
    .responsible-section {
        padding: 20px;
    }

    .alert-cards,
    .help-resources {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tips-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.cookie-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.cookie-type {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(139, 109, 181, 0.1);
}

.cookie-type h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.cookie-type ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.cookie-type ul li {
    padding: 5px 0;
    color: #666;
}

.cookie-management {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.management-option {
    background: rgba(139, 109, 181, 0.05);
    padding: 25px;
    border-radius: 15px;
}

.management-option h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.management-option ul {
    list-style: none;
    padding: 0;
}

.management-option ul li {
    margin: 10px 0;
}

.management-option ul li a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.management-option ul li a:hover {
    color: var(--accent-color);
}

#openCookieSettings {
    margin-top: 15px;
}

@media (max-width: 768px) {
    .cookie-types {
        grid-template-columns: 1fr;
    }

    .cookie-management {
        grid-template-columns: 1fr;
    }

    .cookie-type,
    .management-option {
        padding: 20px;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(26, 26, 26, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 400px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner__buttons {
    display: flex;
    gap: 10px;
}

.cookie-banner__buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.age-verification__content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideIn 0.5s ease;
}

.age-verification__title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.age-verification__text {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.age-verification__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-verification__buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    min-width: 120px;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .age-verification__content {
        padding: 30px;
    }

    .age-verification__title {
        font-size: 1.5rem;
    }

    .age-verification__text {
        font-size: 1rem;
    }

    .age-verification__buttons {
        flex-direction: column;
    }
} 