@font-face {
    font-family: 'Rubik Bubbles';
    src: url('/core-assets/font-repo/rubik-bubbles.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Hind Madurai';
    src: url('/core-assets/font-repo/hind-madurai.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Font Awesome Icons';
    src: url('/core-assets/font-repo/font-awesome-icons.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: block;
}

:root {
    --primary-hue: 205;
    --primary-saturation: 85%;
    --primary-lightness: 40%;
    --secondary-hue: 45;
    --secondary-saturation: 95%;
    --secondary-lightness: 55%;
    --accent-hue: 150;
    --accent-saturation: 75%;
    --accent-lightness: 40%;
    --background-hue: 210;
    --background-saturation: 20%;
    --background-lightness: 98%;
    --text-hue: 220;
    --text-saturation: 25%;
    --text-lightness: 15%;
    
    --primary-color: hsl(var(--primary-hue), var(--primary-saturation), var(--primary-lightness));
    --secondary-color: hsl(var(--secondary-hue), var(--secondary-saturation), var(--secondary-lightness));
    --accent-color: hsl(var(--accent-hue), var(--accent-saturation), var(--accent-lightness));
    --background-color: hsl(var(--background-hue), var(--background-saturation), var(--background-lightness));
    --text-color: hsl(var(--text-hue), var(--text-saturation), var(--text-lightness));
    
    --grunge-dark: hsl(0, 0%, 10%);
    --grunge-light: hsl(0, 0%, 95%);
    --grunge-border: hsl(0, 0%, 70%);
    
    --max-width-large: 1178px;
    --max-width-medium: 892px;
    --border-radius-grunge: 3px 12px 8px 5px;
    --border-radius-alternate: 0 15px 0 15px;
    
    --grunge-texture: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind Madurai', system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.grunge-texture::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--grunge-texture);
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
}

.grunge-texture {
    border: 1px solid var(--grunge-border);
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.2);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik Bubbles', system-ui, -apple-system, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3.5vw, 2rem);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

button, 
input, 
select, 
textarea {
    font-family: 'Hind Madurai', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.icon-font {
    font-family: 'Font Awesome Icons';
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
}

.no-mobile-anim * {
    animation: none !important;
    transition: none !important;
}

@media (max-width: 768px) {
    .no-mobile-anim * {
        animation: none !important;
        transition: none !important;
    }
    
    body {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.grunge-border {
    border: 2px solid var(--grunge-border);
    border-radius: var(--border-radius-grunge);
    position: relative;
    overflow: hidden;
}

.grunge-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    pointer-events: none;
}

.texture-overlay {
    position: relative;
}

.texture-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 95%, rgba(0,0,0,0.1) 95%),
        linear-gradient(-45deg, transparent 95%, rgba(0,0,0,0.1) 95%);
    background-size: 20px 20px;
    pointer-events: none;
    opacity: 0.3;
    z-index: 1;
}

.combined-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 100px;
    transition: height 0.5s ease;
    overflow: hidden;
    background-color: hsl(210, 20%, 98%);
    border-top: 4px solid hsl(205, 85%, 40%);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
}

.combined-modal:hover,
.combined-modal:active,
.combined-modal:focus {
    height: 55vh;
}

.combined-modal:hover .modal-tab {
    opacity: 0;
    transform: translateY(-20px);
}

#combined-accepted:target ~ .combined-modal {
    display: none !important;
}

.modal-tab {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, hsl(205, 85%, 40%), hsl(150, 75%, 40%));
    padding: 12px 25px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid hsl(0, 0%, 10%);
    border-bottom: none;
    z-index: 10000;
}

.tab-icon {
    font-size: 1.2rem;
}

.tab-text {
    font-size: 0.95rem;
}

.modal-container {
    max-width: 1178px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.98);
    height: calc(55vh - 20px);
    overflow-y: auto;
    border: 3px solid hsl(0, 0%, 10%);
    border-top: none;
}

.modal-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px dashed hsl(0, 0%, 70%);
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, hsl(205, 85%, 40%), hsl(150, 75%, 40%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid hsl(0, 0%, 10%);
}

.header-icon .icon-font {
    font-size: 2rem;
    color: white;
}

.modal-title {
    color: hsl(205, 85%, 40%);
    margin: 0;
    font-size: 2.2rem;
}

.modal-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.age-section,
.cookie-section {
    padding: 25px;
    background-color: rgba(210, 20%, 98%, 0.3);
    border-radius: 3px 12px 8px 5px;
    border: 2px solid hsl(0, 0%, 70%);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, hsl(45, 95%, 55%), hsl(150, 75%, 40%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid hsl(0, 0%, 10%);
}

.section-icon .icon-font {
    font-size: 1.5rem;
    color: hsl(0, 0%, 10%);
}

.section-title {
    color: hsl(0, 0%, 10%);
    margin: 0;
    font-size: 1.6rem;
}

.section-content {
    margin-bottom: 25px;
}

.section-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.age-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background-color: rgba(255, 0, 0, 0.05);
    border-radius: 3px 12px 8px 5px;
    border-left: 4px solid #ff0000;
    margin-top: 15px;
}

.warning-icon {
    color: #ff0000;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.warning-text {
    color: #555;
    font-size: 0.9rem;
    font-weight: 600;
}

.cookie-link {
    font-weight: 600;
    text-decoration: underline dotted;
    color: hsl(205, 85%, 40%);
}

.cookie-link:hover {
    color: hsl(150, 75%, 40%);
}

.age-action,
.cookie-action {
    text-align: center;
}

.age-decline-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, hsl(0, 0%, 70%), #999);
    color: hsl(0, 0%, 10%);
    border-radius: 3px 12px 8px 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.age-decline-btn:hover {
    background: linear-gradient(135deg, #999, #777);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-accept-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    background: linear-gradient(to right, hsl(205, 85%, 40%), hsl(45, 95%, 55%));
    color: white;
    border-radius: 0 15px 0 15px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cookie-accept-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.action-icon {
    font-size: 1.3rem;
}

.action-text {
    font-size: 1rem;
}

.modal-footer {
    padding-top: 20px;
    border-top: 1px dashed hsl(0, 0%, 70%);
}

.footer-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

@media (max-width: 992px) {
    .modal-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-container {
        padding: 25px;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .combined-modal:hover {
        height: 90vh;
    }
    
    .modal-container {
        padding: 20px;
        margin: 0 10px;
        height: calc(90vh - 70px);
    }
    
    .modal-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-icon {
        width: 50px;
        height: 50px;
    }
    
    .header-icon .icon-font {
        font-size: 1.6rem;
    }
    
    .modal-title {
        font-size: 1.6rem;
    }
    
    .age-section,
    .cookie-section {
        padding: 20px;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .cookie-accept-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
    
    .age-decline-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

@media (max-width: 480px) {
    .combined-modal {
        height: 60px;
    }
    
    .combined-modal:hover {
        height: 95vh;
    }
    
    .modal-tab {
        top: 0px;
        padding: 10px 20px;
    }
    
    .tab-text {
        font-size: 0.85rem;
    }
    
    .modal-container {
        margin: 0;
        padding: 15px;
        height: calc(95vh - 60px);
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .section-content p {
        font-size: 0.9rem;
    }
    
    .cookie-accept-btn {
        font-size: 0.95rem;
        padding: 14px 15px;
    }
}

.site-header {
    background-color: rgba(255, 255, 255, 0.97);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    z-index: 100;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    border-bottom: 1px dashed var(--grunge-border);
}

.top-left,
.top-right {
    flex: 1;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    background: linear-gradient(90deg, rgba(205, 85%, 40%, 0.1), transparent);
    border-radius: var(--border-radius-grunge);
    transition: all 0.3s ease;
}

.site-brand:hover {
    background: linear-gradient(90deg, rgba(205, 85%, 40%, 0.2), transparent);
    transform: translateX(5px);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--grunge-dark);
}

.brand-icon .icon-font {
    font-size: 1.5rem;
    color: white;
}

.brand-name {
    font-family: 'Rubik Bubbles', system-ui, -apple-system, sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.top-right {
    text-align: right;
}

.nav-list {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: inline-block;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background-color: rgba(210, 20%, 98%, 0.8);
    border-radius: var(--border-radius-alternate);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.4) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.nav-link:hover::before {
    transform: translateX(100%);
}

.nav-link:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.link-icon {
    font-size: 1.1rem;
}

.link-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.header-middle {
    padding: 20px 25px;
    border-bottom: 1px dashed var(--grunge-border);
}

.warning-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(45, 95%, 55%, 0.1), rgba(205, 85%, 40%, 0.1));
    max-width: var(--max-width-medium);
    margin: 0 auto;
    position: relative;
}

.warning-banner::after {
    content: '';
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: inherit;
    pointer-events: none;
}

.warning-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #ff9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--grunge-dark);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.warning-icon .icon-font {
    font-size: 1.8rem;
    color: var(--grunge-dark);
}

.warning-content {
    flex: 1;
}

.warning-title {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1.4rem;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.warning-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.header-bottom {
    padding: 15px 25px;
}

.disclaimer-box {
    max-width: var(--max-width-medium);
    margin: 0 auto;
    text-align: center;
    padding: 15px;
    background-color: rgba(150, 75%, 40%, 0.05);
    border-radius: var(--border-radius-grunge);
    border: 1px dashed var(--grunge-border);
}

.disclaimer-text {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
}

.disclaimer-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }
    
    .top-left,
    .top-right {
        width: 100%;
        text-align: center;
    }
    
    .site-brand {
        justify-content: center;
        padding: 10px 20px;
    }
    
    .nav-list {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .warning-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    
    .warning-icon {
        margin: 0 auto;
    }
    
    .disclaimer-text {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .header-top,
    .header-middle,
    .header-bottom {
        padding: 15px;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .nav-link {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .warning-title {
        font-size: 1.2rem;
    }
    
    .warning-text {
        font-size: 0.9rem;
    }
}

.welcome-gateway {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-bottom: 3px solid var(--secondary-color);
}

.gateway-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.1);
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(205, 85%, 40%, 0.4) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    animation: overlay-pulse 8s infinite alternate;
    z-index: 2;
}

@keyframes overlay-pulse {
    0% {
        background: linear-gradient(
            45deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(205, 85%, 40%, 0.4) 50%,
            rgba(0, 0, 0, 0.85) 100%
        );
    }
    100% {
        background: linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(45, 95%, 55%, 0.5) 50%,
            rgba(0, 0, 0, 0.9) 100%
        );
    }
}

.gateway-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content-container {
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius-alternate);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 30px rgba(255, 255, 255, 0.3);
    text-align: center;
}

.gateway-title {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.8rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 15px;
}

.gateway-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.gateway-description {
    margin-bottom: 30px;
}

.gateway-description p {
    margin-bottom: 15px;
    color: #444;
    font-size: 1.05rem;
    line-height: 1.6;
}

.gateway-action {
    margin-bottom: 40px;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--border-radius-grunge);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--grunge-dark);
}

.action-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--accent-color), var(--secondary-color));
    background-size: 400% 400%;
    z-index: -1;
    border-radius: inherit;
    animation: link-border 3s infinite linear;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes link-border {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 400% 50%;
    }
}

.action-link:hover::before {
    opacity: 1;
}

.action-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    color: white;
}

.action-icon {
    font-size: 1.3rem;
}

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

.arrow-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
    gap: 20px;
    margin-top: 30px;
}

.advantage-card {
    padding: 25px 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: var(--border-radius-grunge);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--grunge-dark);
}

.advantage-icon .icon-font {
    font-size: 1.8rem;
    color: white;
}

.advantage-title {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .welcome-gateway {
        max-height: 100% !important;
    }
    
    .content-container {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .gateway-title {
        font-size: 2rem;
    }
    
    .gateway-description p {
        font-size: 1rem;
    }
    
    .action-link {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .advantage-card {
        padding: 20px 10px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon .icon-font {
        font-size: 1.5rem;
    }
    
    .advantage-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .gateway-content {
        padding: 20px 10px;
    }
    
    .content-container {
        padding: 25px 15px;
    }
    
    .gateway-title {
        font-size: 1.7rem;
    }
    
    .action-link {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.games-showcase {
    padding: 80px 20px;
    background-color: rgba(210, 20%, 98%, 0.7);
    position: relative;
}

.games-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(205, 85%, 40%, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 95%, 55%, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.showcase-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.showcase-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), var(--accent-color), transparent);
    border-radius: 2px;
}

.showcase-description p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
}

.game-card {
    background-color: white;
    border-radius: var(--border-radius-alternate);
    overflow: hidden;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 2px solid transparent;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid var(--grunge-border);
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.25),
        0 0 0 3px var(--secondary-color);
    border-color: var(--primary-color);
}

.card-visual {
    position: relative;
    height: 100%;
    min-height: 330px;
    overflow: hidden;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.game-image {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.game-card:hover .game-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 30px;
    text-align: center;
}

.game-name {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.game-card:hover .game-name {
    transform: translateY(-15px);
}

.game-link-container {
    height: 50px;
}

.game-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border-radius: var(--border-radius-grunge);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.game-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.game-link:hover::before {
    left: 100%;
}

.game-link:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.link-icon {
    font-size: 1.1rem;
}

.link-text {
    font-size: 0.95rem;
}

.arrow-icon {
    font-size: 0.9rem;
}

@media (max-width: 1178px) {
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .games-showcase {
        padding: 60px 15px;
    }
    
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-description p {
        font-size: 1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 40px;
    }
    
    .card-visual {
        height: 220px;
    }
    
    .game-name {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .games-showcase {
        padding: 50px 10px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .card-visual {
        height: 200px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .game-name {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .game-link {
        padding: 10px 20px;
    }    
}

.dual-content-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(210, 20%, 98%, 0.9), rgba(205, 85%, 40%, 0.05));
    position: relative;
}

.dual-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 0, 0, 0.02) 10px,
            rgba(0, 0, 0, 0.02) 20px
        );
    z-index: 0;
}

.dual-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    display: flex;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-block {
    flex: 1;
}

.about-content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: var(--border-radius-grunge);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 
        10px 10px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.about-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.about-text {
    margin-bottom: 35px;
    flex: 1;
}

.about-text p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-action {
    margin-top: auto;
}

.games-jump-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 35px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    border-radius: var(--border-radius-alternate);
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--grunge-dark);
}

.games-jump-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.games-jump-link:hover::before {
    left: 100%;
}

.games-jump-link:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 0 3px var(--secondary-color);
}

.jump-icon {
    font-size: 1.3rem;
}

.jump-text {
    font-size: 1.05rem;
}

.arrow-jump-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.advantages-block {
    flex: 1;
}

.advantages-header {
    margin-bottom: 30px;
    text-align: center;
}

.advantages-title {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.advantages-subtitle {
    color: #666;
    font-size: 1rem;
    font-style: italic;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.advantage-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius-alternate);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.08),
        inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.advantage-item:hover::before {
    transform: scaleY(1);
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 0 2px var(--secondary-color);
}

.item-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--grunge-dark);
    transition: all 0.3s ease;
}

.advantage-item:hover .item-icon {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.item-icon .icon-font {
    font-size: 1.4rem;
    color: white;
}

.item-content {
    flex: 1;
}

.item-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.item-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 992px) {
    .dual-container {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .advantages-block {
        order: -1;
    }
    
    .about-content {
        padding: 35px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dual-content-section {
        padding: 60px 15px;
    }
    
    .about-title {
        font-size: 1.9rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .advantage-item {
        padding: 20px;
    }
    
    .games-jump-link {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .dual-content-section {
        padding: 50px 10px;
    }
    
    .about-content {
        padding: 25px 20px;
    }
    
    .about-title {
        font-size: 1.7rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .advantages-title {
        font-size: 1.6rem;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .item-icon {
        margin: 0 auto;
    }
    
    .jump-text {
        font-size: 1rem;
    }
}

.faq-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(210, 20%, 98%, 0.8), rgba(150, 75%, 40%, 0.08));
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(205, 85%, 40%, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(45, 95%, 55%, 0.05) 0%, transparent 30%);
    z-index: 0;
}

.faq-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 25%;
    right: 25%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--secondary-color), transparent);
    border-radius: 2px;
}

.faq-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-blocks {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.faq-block {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 35px;
    border-radius: var(--border-radius-grunge);
    box-shadow: 
        8px 8px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.block-header {
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.block-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--grunge-border), transparent);
}

.block-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid var(--grunge-dark);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.block-icon .icon-font {
    font-size: 1.8rem;
    color: white;
}

.block-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.block-subtitle {
    color: #777;
    font-size: 1rem;
    font-style: italic;
    margin: 0;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.faq-item {
    border-bottom: 1px dashed var(--grunge-border);
    padding-bottom: 25px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.question-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.question-marker {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.question-marker .icon-font {
    font-size: 0.9rem;
    color: white;
}

.question-text {
    color: var(--grunge-dark);
    font-size: 1.2rem;
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

.answer-content {
    padding-left: 45px;
}

.answer-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.faq-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 2px dashed var(--grunge-border);
}

.more-questions {
    max-width: 600px;
    margin: 0 auto;
}

.full-faq-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: var(--border-radius-alternate);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--grunge-dark);
}

.full-faq-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s ease;
}

.full-faq-link:hover::before {
    left: 100%;
}

.full-faq-link:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 3px var(--secondary-color);
}

.link-icon {
    font-size: 1.3rem;
}

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

.arrow-icon {
    font-size: 1rem;
    opacity: 0.8;
}

.more-info {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .faq-blocks {
        flex-direction: column;
        gap: 50px;
    }
    
    .faq-block {
        padding: 30px;
    }
    
    .block-icon {
        width: 55px;
        height: 55px;
    }
    
    .block-icon .icon-font {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 15px;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-intro p {
        font-size: 1rem;
    }
    
    .block-title {
        font-size: 1.6rem;
    }
    
    .question-text {
        font-size: 1.1rem;
    }
    
    .answer-content {
        padding-left: 0;
    }
    
    .question-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .question-marker {
        align-self: flex-start;
    }
    
    .full-faq-link {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 50px 10px;
    }
    
    .faq-title {
        font-size: 1.8rem;
    }
    
    .faq-block {
        padding: 25px 20px;
    }
    
    .block-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .block-icon .icon-font {
        font-size: 1.4rem;
    }
    
    .block-title {
        font-size: 1.4rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .more-info {
        font-size: 0.9rem;
    }
}

.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(210, 20%, 98%, 0.9), rgba(45, 95%, 55%, 0.08));
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 15px,
            rgba(0, 0, 0, 0.02) 15px,
            rgba(0, 0, 0, 0.02) 30px
        );
    z-index: 0;
}

.testimonials-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 30%;
    right: 30%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.testimonials-intro p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.97);
    padding: 30px;
    border-radius: var(--border-radius-alternate);
    box-shadow: 
        5px 5px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        15px 15px 0 rgba(0, 0, 0, 0.15),
        0 0 0 3px var(--secondary-color);
}

.card-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.avatar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.avatar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--grunge-dark);
    flex-shrink: 0;
}

.avatar-icon .icon-font {
    font-size: 1.8rem;
    color: white;
}

.reviewer-meta {
    flex: 1;
    min-width: 0;
}

.reviewer-name {
    color: var(--grunge-dark);
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-weight: 600;
    line-height: 1.3;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.reviewer-city {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.review-date {
    color: #888;
    font-size: 0.8rem;
    font-style: italic;
}

.rating-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.stars-rating {
    display: flex;
    gap: 2px;
    justify-content: flex-end;
}

.star-icon {
    color: var(--secondary-color);
    font-size: 1rem;
}

.star-icon-half {
    color: var(--secondary-color);
    font-size: 1rem;
    opacity: 0.7;
}

.rating-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.card-body {
    flex: 1;
    margin-bottom: 25px;
    min-height: 120px;
}

.testimonial-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    padding-left: 25px;
    padding-top: 5px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 3.5rem;
    color: var(--grunge-border);
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
}

.card-footer {
    border-top: 1px dashed var(--grunge-border);
    padding-top: 15px;
}

.review-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background-color: rgba(205, 85%, 40%, 0.08);
    border-radius: var(--border-radius-grunge);
    border: 1px solid rgba(205, 85%, 40%, 0.2);
}

.highlight-icon {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.highlight-text {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1178px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-intro p {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .card-header {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .avatar-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .avatar-icon .icon-font {
        font-size: 1.5rem;
    }
    
    .reviewer-details {
        align-items: center;
        margin-bottom: 10px;
    }
    
    .rating-container {
        align-items: center;
        margin-top: 5px;
    }
    
    .stars-rating {
        justify-content: center;
    }
    
    .testimonial-text {
        padding-left: 20px;
        font-size: 0.95rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        top: -10px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 50px 10px;
    }
    
    .testimonials-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .reviewer-name {
        font-size: 1.15rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
        padding-left: 15px;
    }
    
    .highlight-text {
        font-size: 0.8rem;
    }
}

.responsible-play-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(150, 75%, 40%, 0.1), rgba(210, 20%, 98%, 0.9));
    position: relative;
}

.responsible-play-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(205, 85%, 40%, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(45, 95%, 55%, 0.08) 0%, transparent 40%);
    z-index: 0;
}

.responsible-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.responsible-blocks {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.text-block {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: var(--border-radius-grunge);
    box-shadow: 
        -8px 8px 0 rgba(0, 0, 0, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--grunge-border);
}

.warning-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #ff6600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 3px solid var(--grunge-dark);
    box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.warning-icon .icon-font {
    font-size: 2rem;
    color: white;
}

.block-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin: 0;
}

.text-content {
    color: #555;
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.age-warning {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, #ff0000, #ff6600);
    color: white;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 4px;
    border: 2px solid var(--grunge-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    animation: age-pulse 2s infinite alternate;
}

@keyframes age-pulse {
    0% {
        transform: scale(1);
        box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1.05);
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
    }
}

.responsibility-list {
    margin: 20px 0 25px 25px;
    list-style-type: none;
}

.responsibility-list li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}

.responsibility-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.partner-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline dotted;
    transition: all 0.3s ease;
    position: relative;
}

.partner-link:hover {
    color: var(--accent-color);
    text-decoration: underline solid;
}

.disclaimer-box {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(205, 85%, 40%, 0.08);
    border-left: 4px solid var(--secondary-color);
    border-radius: var(--border-radius-grunge);
}

.disclaimer-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.images-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.age-restriction-display {
    background: linear-gradient(135deg, #ff0000, #ff6600, #ff0000);
    border-radius: var(--border-radius-alternate);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 3px solid var(--grunge-dark);
    box-shadow: 
        0 10px 25px rgba(255, 0, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: age-badge-glow 3s infinite alternate;
}

@keyframes age-badge-glow {
    0% {
        box-shadow: 
            0 10px 25px rgba(255, 0, 0, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 
            0 15px 35px rgba(255, 0, 0, 0.5),
            0 0 30px rgba(255, 102, 0, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
}

.age-badge {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, white, #ffcccc);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 5px solid white;
    box-shadow: 
        0 0 0 3px var(--grunge-dark),
        inset 0 0 20px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.age-badge::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(from 0deg, #ff0000, #ff6600, #ff0000, #ff6600, #ff0000);
    border-radius: 50%;
    z-index: -1;
    animation: rotate-border 4s linear infinite;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.age-number {
    font-family: 'Rubik Bubbles', system-ui, -apple-system, sans-serif;
    font-size: 3.5rem;
    color: #ff0000;
    font-weight: 900;
    line-height: 1;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.age-plus {
    font-family: 'Rubik Bubbles', system-ui, -apple-system, sans-serif;
    font-size: 2.5rem;
    color: #ff6600;
    font-weight: 900;
    margin-top: -10px;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.age-text {
    flex: 1;
}

.age-title {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.age-description {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.partner-item {
    border-radius: var(--border-radius-grunge);
    overflow: hidden;
    position: relative;
    border: 2px solid var(--grunge-border);
    transition: all 0.4s ease;
}

.partner-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 0 0 3px var(--accent-color);
}

.partner-link-image {
    display: block;
    position: relative;
    height: 130px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.partner-image {
    width: 160px;
    height: 70px;
    text-align: center;
    transition: transform 0.6s ease;
}

.partner-item:hover .partner-image {
    transform: scale(1.1);
}

.partner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: rgb(221, 221, 221);
    text-align: center;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-overlay {
    background: linear-gradient(to top, rgba(205, 85%, 40%, 0.9), transparent);
}

.partner-name {
    font-weight: 600;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 992px) {
    .responsible-blocks {
        flex-direction: column;
        gap: 40px;
    }
    
    .text-block {
        padding: 35px;
    }
    
    .age-restriction-display {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .age-badge {
        width: 100px;
        height: 100px;
    }
    
    .age-number {
        font-size: 3rem;
    }
    
    .age-plus {
        font-size: 2rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .responsible-play-section {
        padding: 60px 15px;
    }
    
    .block-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .block-title {
        font-size: 1.9rem;
    }
    
    .warning-icon {
        width: 55px;
        height: 55px;
    }
    
    .warning-icon .icon-font {
        font-size: 1.8rem;
    }
    
    .age-title {
        font-size: 1.6rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .partner-link-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .responsible-play-section {
        padding: 50px 10px;
    }
    
    .text-block {
        padding: 25px 20px;
    }
    
    .block-title {
        font-size: 1.7rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    .age-badge {
        width: 90px;
        height: 90px;
    }
    
    .age-number {
        font-size: 2.5rem;
    }
    
    .age-plus {
        font-size: 1.8rem;
    }
    
    .age-title {
        font-size: 1.4rem;
    }
    
    .age-description {
        font-size: 1rem;
    }
}

.site-footer {
    background-color: var(--grunge-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 50px 20px 30px;
    position: relative;
    border-top: 3px solid var(--primary-color);
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(205, 85%, 40%, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(45, 95%, 55%, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.footer-container {
    max-width: var(--max-width-large);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-top {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-brand {
    display: inline-block;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-grunge);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.brand-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.brand-icon .icon-font {
    font-size: 1.3rem;
    color: white;
}

.brand-text {
    font-family: 'Rubik Bubbles', system-ui, -apple-system, sans-serif;
    font-size: 1.8rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer-middle {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-navigation {
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-item {
    display: inline-block;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
}

.copyright-info {
    padding: 20px 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 300;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 15px 25px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .brand-link {
        padding: 12px 25px;
    }
    
    .brand-text {
        font-size: 1.6rem;
    }
    
    .copyright-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 30px 10px 20px;
    }
    
    .footer-top {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .footer-middle {
        padding-bottom: 25px;
        margin-bottom: 25px;
    }
    
    .brand-link {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .brand-text {
        font-size: 1.4rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
    }
    
    .copyright-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

.freeplay-age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.freeplay-age-card {
    background: #1b1b1f;
    padding: 40px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.freeplay-age-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.freeplay-age-text {
    font-size: 15px;
    color: #cccccc;
    margin-bottom: 25px;
}

.freeplay-age-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.freeplay-age-btn {
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s ease;
}

.freeplay-age-accept {
    background: #28a745;
    color: #fff;
}

.freeplay-age-accept:hover {
    background: #23923d;
}

.freeplay-age-decline {
    background: #dc3545;
    color: #fff;
}

.freeplay-age-decline:hover {
    background: #c82333;
}

.freeplay-cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9998;
}

.freeplay-cookie-text {
    color: #ddd;
    font-size: 14px;
}

.freeplay-cookie-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.freeplay-cookie-btn:hover {
    background: #0069d9;
}