:root {
    --bg-body: #0F1B2E;
    --bg-block: #152238;
    --bg-footer: #050A14;
    --text-primary: #E0F2FE;
    --text-secondary: #94A3B8;
    --accent: #00D9FF;
    --button: #00E5FF;
    --secondary: #5B8FA8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 8px 12px rgba(0, 0, 0, 0.4), 0 16px 32px rgba(0, 0, 0, 0.3);
    --border: 1px solid rgba(91, 143, 168, 0.2);
    --shadow-glow: 0 0 30px rgba(0, 229, 255, 0.4);
    --elevation-1: 0 2px 4px rgba(0, 0, 0, 0.2);
    --elevation-2: 0 4px 6px rgba(0, 0, 0, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
    --elevation-3: 0 8px 12px rgba(0, 0, 0, 0.4), 0 16px 32px rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0F1B2E 0%, #152238 50%, #050A14 100%);
    background-attachment: fixed;
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(91, 143, 168, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.glWrap {
    max-width: 1360px;
    width: 98%;
    margin: 20px auto;
    border-radius: 22px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-body);
    border: 2px solid rgba(91, 143, 168, 0.3);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 229, 255, 0.2);
}

h1,
h2,
h3,
h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.glContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.glButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 32px;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.glButtonPrimary {
    background-color: var(--button);
    color: var(--bg-body);
    box-shadow: var(--elevation-2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glButtonPrimary:hover {
    box-shadow: var(--elevation-3);
    transform: translateY(-2px);
    background-color: #00D9FF;
}

.glButtonSecondary {
    background-color: var(--secondary);
    color: var(--text-primary);
    box-shadow: var(--elevation-2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glButtonSecondary:hover {
    box-shadow: var(--elevation-3);
    transform: translateY(-2px);
    background-color: #4A7A8F;
}

.glButton:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.glHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(15, 27, 46, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 2px solid rgba(91, 143, 168, 0.3);
    box-shadow: var(--elevation-2);
}

.glHeaderInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.glLogo {
    display: flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--text-primary);
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.glLogo img {
    height: 35px;
    margin-top: -2px;
}

.glNav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.glNavLinks {
    display: flex;
    gap: 30px;
}

.glNavLink {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.glNavLink:hover {
    color: var(--button);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.glMobileMenuToggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.glMobileMenuToggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

.glHeroSection {
    padding: 200px 0 120px;
    background: linear-gradient(135deg, rgba(15, 27, 46, 0.95) 0%, rgba(21, 34, 56, 0.95) 100%);
    text-align: center;
    position: relative;
}

.glHeroSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 30% 30%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.glHeroTitle {
    font-size: 64px;
    margin-bottom: 24px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
    position: relative;
    z-index: 1;
}

.glHeroTitle span {
    color: var(--button);
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.6);
}

.glHeroText {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.8s ease 0.2s both;
    position: relative;
    z-index: 1;
}

.glHeroButtons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s both;
    position: relative;
    z-index: 1;
}

.glFeaturesSection {
    padding: 100px 0;
}

.glSectionTitle {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.glSectionTitle span {
    color: var(--button);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.glFeaturesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.glFeatureCard {
    background: var(--bg-block);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--elevation-2);
    border: 1px solid rgba(91, 143, 168, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glFeatureCard::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.glFeatureCard:hover {
    transform: translateY(-8px);
    border-color: var(--button);
    box-shadow: var(--elevation-3);
}

.glFeatureIcon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    border-radius: 50%;
}



.glFeatureTitle {
    font-size: 24px;
    margin-bottom: 16px;
}

.glStatsSection {
    padding: 50px 0;
    background-color: var(--bg-block);
    position: relative;
    border-top: 2px solid rgba(91, 143, 168, 0.2);
    border-bottom: 2px solid rgba(91, 143, 168, 0.2);
}

.glStatsSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.glStatsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glStatCard {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: var(--bg-block);
    box-shadow: var(--elevation-1);
}

.glStatCard:hover {
    background: rgba(0, 229, 255, 0.05);
    transform: translateY(-4px);
    box-shadow: var(--elevation-2);
}

.glStatNumber {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    color: var(--button);
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
    letter-spacing: 1px;
}

.glStatLabel {
    font-size: 18px;
    color: var(--text-primary);
}

.glGameSection,
.glAboutSection,
.glCtaSection {
    padding: 100px 0;
}

.glGameContent,
.glAboutContent {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glGameImage,
.glAboutImage {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--elevation-2);
    animation: float 3s ease-in-out infinite;
    border: 1px solid rgba(91, 143, 168, 0.3);
}

.glGameTitle,
.glAboutTitle {
    font-size: 42px;
    margin-bottom: 24px;
}

.glGameTitle span,
.glAboutTitle span {
    color: var(--button);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.glGameText,
.glAboutText {
    font-size: 18px;
    margin-bottom: 32px;
}

.glCtaSection {
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 27, 46, 0.95) 0%, rgba(21, 34, 56, 0.95) 100%);
    position: relative;
}

.glCtaSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 50%, rgba(91, 143, 168, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 70% 70%, rgba(0, 229, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.glCtaTitle {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    position: relative;
    z-index: 1;
}

.glCtaText {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.glFooter {
    background-color: var(--bg-footer);
    padding: 60px 0 30px;
    border-top: 2px solid rgba(91, 143, 168, 0.3);
    position: relative;
}

.glFooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(91, 143, 168, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.glFooterInner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.glFooterInner h3 {
    margin-bottom: 16px;
}

.glFooterLogo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.glFooterLogo img {
    height: 40px;
}

.glFooterText {
    max-width: 300px;
    margin-top: 16px;
}

.glFooterColumn h3 {
    font-size: 20px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.glFooterLinks {
    list-style: none;
}

.glFooterLinks li {
    margin-bottom: 12px;
}

.glFooterLinks a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.glFooterLinks a:hover {
    color: var(--button);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.glFooterBottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(91, 143, 168, 0.2);
    position: relative;
}

.glFooterLegal {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.glFooterLegal a {
    color: #ccc;
}

.glDisclaimer {
    max-width: 1100px;
    margin: 20px auto;
    padding: 20px;
    background-color: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    font-size: 14px;
    color: var(--button);
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: var(--elevation-1);
}

.glDisclaimer p{
    margin: 8px 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 229, 255, 0.6), 0 0 60px rgba(0, 229, 255, 0.3);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.glContactSection {
    padding: 140px 0 100px 0;
    background-color: var(--bg-block);
}

.glContactText {
    text-align: center;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 50px;
    color: var(--text-secondary);
}

.glContactForm {
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

.glFormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.glFormGroup {
    margin-bottom: 20px;
}

.glContactForm input,
.glContactForm textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glContactForm input::placeholder,
.glContactForm textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.glContactForm input:focus,
.glContactForm textarea:focus {
    outline: none;
    border-color: var(--button);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2), 0 0 20px rgba(0, 229, 255, 0.3);
}

.glContactForm textarea {
    resize: vertical;
    min-height: 120px;
}

.glFormSubmit {
    margin-top: 10px;
}

.glThankYouMessage {
    max-width: 700px;
    margin: 40px auto 0;
    text-align: center;
    padding: 40px;
    background: rgba(0, 229, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 229, 255, 0.3);
    box-shadow: var(--elevation-2);
    animation: fadeInUp 0.6s ease;
}

.glThankYouMessage h3 {
    font-size: 32px;
    color: var(--button);
    margin-bottom: 16px;
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.glThankYouMessage p {
    font-size: 18px;
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .glFormRow {
        grid-template-columns: 1fr;
    }

    .glContactSection {
        padding: 120px 0 80px 0;
    }
}

.glTextPageSection {
    padding: 140px 0 80px;
    min-height: 100vh;
    background-color: var(--bg-body);
}

.glPageTitle {
    font-size: 48px;
    margin-bottom: 10px;
    text-align: center;
}

.glPageDate {
    text-align: center;
    color: var(--button);
    margin-bottom: 50px;
    font-size: 16px;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.glPageContent {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-block);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--elevation-2);
    border: 1px solid rgba(91, 143, 168, 0.3);
}

.glPageContent h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--button);
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.glPageContent h2:first-child {
    margin-top: 0;
}

.glPageContent p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.glPageContent ul {
    margin: 20px 0;
    padding-left: 20px;
}

.glPageContent li {
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .glTextPageSection {
        padding: 120px 20px 40px;
    }

    .glPageTitle {
        font-size: 36px;
    }

    .glPageContent {
        padding: 30px;
    }

    .glPageContent h2 {
        font-size: 24px;
    }
}


.glGame{
    padding: 140px 0 70px 0;
    position: relative;
}

.glGame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.glGame iframe{
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    max-width: 1100px;
    width: 98%;
    height: 570px;
    border: 1px solid rgba(91, 143, 168, 0.3);
    box-shadow: var(--elevation-3);
    position: relative;
    z-index: 1;
}































@media (max-width: 1024px) {

    .glFeaturesGrid,
    .glStatsGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .glGameContent,
    .glAboutContent {
        gap: 40px;
    }

    .glHeroTitle {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .glMobileMenuToggle {
        display: flex;
    }

    .glNav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-block);
        flex-direction: column;
        padding: 30px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-bottom: var(--border);
    }

    .glNavActive {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .glNavLinks {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .glHeroSection {
        padding: 150px 0 80px;
    }

    .glHeroTitle {
        font-size: 36px;
    }

    .glHeroText {
        font-size: 18px;
    }

    .glHeroButtons {
        flex-direction: column;
        align-items: center;
    }

    .glGameContent,
    .glAboutContent {
        grid-template-columns: 1fr;
    }

    .glFeaturesGrid,
    .glStatsGrid {
        grid-template-columns: 1fr;
    }

    .glFooterInner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glSectionTitle,
    .glCtaTitle {
        font-size: 36px;
    }
}

@media(max-width: 520px){
    .glFooterLegal{
        gap: 20px;
    }
}

.glResponsibleGamingSection {
    padding: 80px 0;
    background-color: var(--bg-block);
    text-align: center;
    position: relative;
    border-top: 2px solid rgba(91, 143, 168, 0.3);
    border-bottom: 2px solid rgba(91, 143, 168, 0.3);
}

.glResponsibleGamingSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(91, 143, 168, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.glResponsibleGamingTitle {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
}

.glResponsibleGamingText {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glResponsibleGamingLogos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.glResponsibleLogo {
    width: 150px;
    height: 80px;
    object-fit: contain;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
    padding: 10px;
    border-radius: 12px;
    background: rgba(0, 229, 255, 0.05);
    border: 1px solid rgba(91, 143, 168, 0.2);
    box-shadow: var(--elevation-1);
}

.glResponsibleLogo:hover {
    transform: scale(1.05) translateY(-2px);
    filter: brightness(1.1);
    box-shadow: var(--elevation-2);
    border-color: var(--button);
}

.glReviewsSection {
    padding: 100px 0;
    background-color: var(--bg-block);
}

.glReviewsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glReviewCard {
    background: var(--bg-body);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--elevation-2);
    border: 1px solid rgba(91, 143, 168, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.glReviewCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--elevation-3);
}

.glReviewAvatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 2px solid var(--button);
}

.glReviewName {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.glReviewStars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
}

.glReviewText {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.glPopularGamesSection {
    padding: 100px 0;
}

.glGamesGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glGameCard {
    background: var(--bg-block);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--elevation-2);
    border: 1px solid rgba(91, 143, 168, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glGameCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--elevation-3);
}

.glGameCardImage {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.glGameCardContent {
    padding: 25px;
}

.glGameCardTitle {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.glGameCardText {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.glHowItWorksSection {
    padding: 100px 0;
    background-color: var(--bg-block);
}

.glHowItWorksGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.glHowItWorksCard {
    background: var(--bg-body);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--elevation-2);
    border: 1px solid rgba(91, 143, 168, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.glHowItWorksCard:hover {
    transform: translateY(-8px);
    box-shadow: var(--elevation-3);
}

.glHowItWorksIcon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    object-fit: contain;
    border-radius: 50%;
}

.glHowItWorksTitle {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.glHowItWorksText {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.glPartnersSection {
    padding: 100px 0;
}

.glPartnersGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.glPartnerLogo {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: var(--bg-block);
    box-shadow: var(--elevation-1);
    border: 1px solid rgba(91, 143, 168, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glPartnerLogo:hover {
    transform: translateY(-4px);
    box-shadow: var(--elevation-2);
}

.glPartnerImage {
    width: 100%;
    max-width: 150px;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.glPartnerLogo:hover .glPartnerImage {
    filter: brightness(1.1);
}

@media (max-width: 1024px) {
    .glReviewsGrid,
    .glGamesGrid,
    .glHowItWorksGrid,
    .glPartnersGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.glReviewsPageSection {
    padding: 140px 0 100px;
    background-color: var(--bg-body);
}

.glPageSubtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.glReviewsPageGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.glReviewDate {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 15px;
    opacity: 0.7;
}

.glAddReviewSection {
    max-width: 800px;
    margin: 60px auto 0;
    padding: 60px 50px;
    background: var(--bg-block);
    border-radius: 16px;
    box-shadow: var(--elevation-3);
    border: 1px solid rgba(91, 143, 168, 0.3);
    position: relative;
    overflow: hidden;
}

.glAddReviewSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--button), var(--accent), var(--button));
    opacity: 0.8;
}

.glAddReviewSection .glSectionTitle {
    margin-bottom: 20px;
    text-align: center;
}

.glAddReviewText {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.glReviewForm {
    max-width: 100%;
    margin-top: 30px;
}

.glReviewForm .glFormRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.glReviewForm .glFormGroup {
    margin-bottom: 25px;
}

.glReviewForm input,
.glReviewForm textarea,
.glReviewForm select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glReviewForm input::placeholder,
.glReviewForm textarea::placeholder {
    color: rgba(148, 163, 184, 0.5);
}

.glReviewForm input:focus,
.glReviewForm textarea:focus,
.glReviewForm select:focus {
    outline: none;
    border-color: var(--button);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2), 0 0 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.glReviewForm textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.glReviewRatingLabel {
    display: block;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 0.3px;
}

.glReviewRatingSelect {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300E5FF' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.glReviewRatingSelect:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.4);
}

.glReviewRatingSelect:focus {
    outline: none;
    border-color: var(--button);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 2px rgba(0, 229, 255, 0.2), 0 0 20px rgba(0, 229, 255, 0.3);
    transform: translateY(-2px);
}

.glReviewRatingSelect option {
    background: var(--bg-block);
    color: var(--text-primary);
    padding: 12px;
}

.glReviewForm .glFormSubmit {
    width: 100%;
    margin-top: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glReviewForm .glFormSubmit:hover {
    transform: translateY(-3px);
    box-shadow: var(--elevation-3);
}

@media (max-width: 1024px) {
    .glReviewsPageGrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glResponsibleGamingLogos {
        gap: 20px;
    }
    
    .glResponsibleLogo {
        width: 120px;
        height: 60px;
    }
    
    .glResponsibleGamingTitle {
        font-size: 28px;
    }
    
    .glReviewsGrid,
    .glGamesGrid,
    .glHowItWorksGrid,
    .glPartnersGrid {
        grid-template-columns: 1fr;
    }
    
    .glReviewsPageGrid {
        grid-template-columns: 1fr;
    }
    
    .glAddReviewSection {
        padding: 40px 25px;
        margin-top: 40px;
    }
    
    .glReviewForm .glFormRow {
        grid-template-columns: 1fr;
    }
    
    .glAddReviewText {
        font-size: 16px;
        margin-bottom: 30px;
    }
}