:root {
    --primary-color: #9d4edd;
    --primary-hover: #c77dff;
    --secondary-color: #ffd166;
    --bg-dark: #0f0c1b;
    --bg-card: rgba(36, 27, 59, 0.6);
    --text-main: #f8f9fa;
    --text-muted: #adb5bd;
    --border-glow: rgba(157, 78, 221, 0.5);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.gls-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.gls-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.gls-btn-primary {
    background: linear-gradient(45deg, #7209b7, #b5179e);
    color: white;
    box-shadow: 0 4px 15px rgba(114, 9, 183, 0.4);
}

.gls-btn-primary:hover {
    background: linear-gradient(45deg, #b5179e, #7209b7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 9, 183, 0.6);
}

.gls-btn-secondary {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.gls-btn-secondary:hover {
    background: rgba(255, 209, 102, 0.1);
    transform: translateY(-2px);
}

.gls-section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gls-section-heading h2 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #ffd166, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gls-separator {
    height: 3px;
    width: 80px;
    background: var(--primary-color);
    margin: 15px auto;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

.gls-separator-left {
    height: 3px;
    width: 60px;
    background: var(--primary-color);
    margin: 15px 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
}

.gls-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 12, 27, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 0;
    transition: var(--transition);
}

.gls-navbar .gls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gls-logo {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.gls-logo i {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color);
}

.gls-nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.gls-nav-link {
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.gls-nav-link:hover {
    color: var(--primary-hover);
    text-shadow: 0 0 8px var(--primary-hover);
}

.gls-hamburger {
    display: none;
    cursor: pointer;
}

.gls-hamburger .gls-bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-main);
    transition: all 0.3s ease-in-out;
}

.gls-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('assets/images/hero_bg.jpg') center/cover no-repeat;
}

.gls-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 12, 27, 0.5), var(--bg-dark));
}

.gls-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.gls-hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.gls-hero-slogan {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e9ecef;
}

.gls-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gls-video-section {
    padding: 80px 0;
}

.gls-video-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.3);
    border: 1px solid var(--border-glow);
}

.gls-gameplay-video {
    width: 100%;
    display: block;
}

.gls-story-section {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(15, 12, 27, 1), rgba(36, 27, 59, 0.3));
}

.gls-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gls-story-text h2 {
    font-size: 2.5rem;
}

.gls-story-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.gls-story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glow);
    transition: var(--transition);
}

.gls-story-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(157, 78, 221, 0.5);
}

.gls-characters-section {
    padding: 80px 0;
}

.gls-character-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 40px;
}

.gls-character-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.gls-character-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
}

.gls-character-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-bottom: 3px solid var(--primary-color);
}

.gls-dark-card img {
    border-bottom: 3px solid #f72585;
}

.gls-char-info {
    padding: 25px;
}

.gls-char-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.gls-char-role {
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gls-char-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gls-onboarding-section {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a103c 0%, var(--bg-dark) 70%);
}

.gls-carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    padding: 20px;
    overflow: hidden;
}

.gls-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.gls-carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.gls-carousel-slide.gls-active {
    opacity: 1;
}

.gls-slide-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.gls-slide-text {
    flex: 1;
}

.gls-slide-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.gls-slide-text p {
    font-size: 1.1rem;
    color: #e9ecef;
}

.gls-slide-image {
    flex: 1;
}

.gls-slide-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.gls-dialog-image img {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    object-fit: cover;
    margin: 0 auto;
    display: block;
    border: 4px solid var(--primary-color);
}

.gls-carousel-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.gls-carousel-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.gls-carousel-btn:hover {
    background: var(--primary-color);
}

.gls-carousel-indicators {
    display: flex;
    gap: 10px;
}

.gls-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.gls-dot.gls-active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.gls-features-section {
    padding: 80px 0;
}

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

.gls-feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid transparent;
    transition: var(--transition);
}

.gls-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.2);
}

.gls-feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(157, 78, 221, 0.5);
}

.gls-feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.gls-feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.gls-pre-register-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(15, 12, 27, 0.9), rgba(114, 9, 183, 0.2));
}

.gls-pre-register-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    text-align: center;
    backdrop-filter: blur(10px);
}

.gls-form-container h2,
.gls-wheel-container h2 {
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.gls-form-container p,
.gls-wheel-container p {
    margin-bottom: 30px;
    color: #e9ecef;
}

.gls-input-group {
    position: relative;
    margin-bottom: 20px;
}

.gls-input-group i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.gls-input-group input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.gls-input-group input:focus {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.gls-btn-block {
    width: 100%;
}

.gls-hidden {
    display: none !important;
}

.gls-wheel-box {
    position: relative;
    width: 100%;
    max-width: 300px;
    aspect-ratio: 1;
    margin: 0 auto 20px;
}

.gls-wheel-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 3s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.gls-spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    border: 3px solid #fff;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: var(--transition);
}

.gls-spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.gls-spin-btn:disabled {
    background: #555;
    cursor: not-allowed;
    transform: translate(-50%, -50%);
}

.gls-wheel-result {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
    min-height: 30px;
}

.gls-team-section {
    padding: 80px 0;
}

.gls-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 40px;
    text-align: center;
}

.gls-member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--primary-color);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary-color);
    transition: var(--transition);
    overflow: hidden;
}

.gls-member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gls-team-member:hover .gls-member-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
}

.gls-download-section {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.gls-download-section h2 {
    margin-bottom: 10px;
}

.gls-store-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gls-store-btn {
    display: flex;
    align-items: center;
    background: #000;
    border: 1px solid #333;
    padding: 10px 25px;
    border-radius: 10px;
    color: white;
    transition: var(--transition);
}

.gls-store-btn i {
    font-size: 2rem;
    margin-right: 15px;
}

.gls-store-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.gls-store-text span {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.gls-store-text strong {
    font-size: 1.2rem;
    font-family: var(--font-body);
}

.gls-store-btn:hover {
    background: #222;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.gls-footer {
    padding: 40px 0 20px;
    background: #07050f;
    border-top: 1px solid rgba(157, 78, 221, 0.3);
}

.gls-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.gls-footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.gls-footer-links {
    display: flex;
    gap: 20px;
}

.gls-footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.gls-footer-links a:hover {
    color: var(--primary-color);
}

.gls-footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.8rem;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}


.gls-partner-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gls-partner-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: 15px;
    border: 1px solid var(--border-glow);
    transition: var(--transition);
}

.gls-partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(157, 78, 221, 0.3);
    border-color: var(--primary-color);
}

.gls-partner-main {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr 0.8fr 1fr;
    gap: 20px;
    align-items: center;
    padding: 25px 30px;
}

.gls-partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gls-partner-rank {
    font-size: 0.8rem;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

.gls-partner-logo img {
    max-width: 130px;
    max-height: 50px;
    object-fit: contain;
}

.gls-partner-offer {
    text-align: center;
}

.gls-offer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.gls-offer-title {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.gls-partner-rating-col {
    text-align: center;
}

.gls-rating-label {
    font-size: 0.8rem;
    margin-bottom: 5px;
    color: var(--text-muted);
}

.gls-partner-rating {
    color: #ffc107;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.gls-partner-score {
    text-align: center;
}

.gls-score-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}

.gls-score-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.gls-partner-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.gls-visit-link {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: underline;
}

.gls-visit-link:hover {
    color: #fff;
}

.gls-partner-tcs {
    padding: 12px 30px;
    background: rgba(0, 0, 0, 0.4);
    font-size: 0.75rem;
    color: #888;
    border-top: 1px solid var(--border-glow);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    text-align: left;
    line-height: 1.5;
}


.gls-compliance-footer {
    background: #000;
    padding: 40px 20px;
    border-top: 2px solid var(--primary-color);
    color: var(--text-muted);
}

.gls-footer-logos-wrapper {
    max-width: 1200px;
    margin: 0 auto 30px auto;
    padding-bottom: 30px;
    border-bottom: 1px solid #222;
}

.gls-footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.gls-footer-logos img,
.gls-footer-logos svg {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.gls-casino-footer-logos img {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: invert(1);
}

.gls-casino-footer-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.gls-footer-disclaimer-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.gls-footer-disclaimer-text strong {
    color: var(--color-text);
}


.gls-game-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--color-primary);
    color: var(--color-background);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.gls-badge-new {
    background: var(--color-accent);
}

.gls-game-stars {
    color: var(--color-primary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
}

.gls-game-stars span {
    color: var(--color-text-muted);
    margin-left: 0.5rem;
    font-size: 0.85rem;
}

.gls-game-desc {
    margin-bottom: 1.5rem !important;
}

.gls-game-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gls-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.gls-stat span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
}

.gls-stat strong {
    color: var(--color-text);
    font-size: 1rem;
}

.gls-play-btn {
    width: 100%;
}

.gls-compliance-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.gls-compliance-text h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.gls-compliance-text p {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.gls-compliance-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.gls-compliance-links a {
    color: var(--primary-hover);
    font-size: 0.9rem;
    text-decoration: underline;
}

.gls-compliance-links a:hover {
    color: var(--secondary-color);
}

.gls-compliance-18plus {
    font-size: 2rem;
    color: #ff3333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

.gls-compliance-18plus span {
    font-size: 1rem;
    color: #fff;
}

@media (max-width: 991px) {
    .gls-hamburger {
        display: block;
    }

    .gls-hamburger.gls-active .gls-bar:nth-child(2) {
        opacity: 0;
    }

    .gls-hamburger.gls-active .gls-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .gls-hamburger.gls-active .gls-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .gls-nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: rgba(15, 12, 27, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        height: calc(100vh - 70px);
        backdrop-filter: blur(10px);
    }

    .gls-nav-menu.gls-active {
        left: 0;
    }

    .gls-nav-list {
        flex-direction: column;
        padding: 40px 0;
    }

    .gls-story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gls-separator-left {
        margin: 15px auto;
    }

    .gls-slide-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gls-hero-title {
        font-size: 2.8rem;
    }

    .gls-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .gls-store-links {
        flex-direction: column;
        align-items: center;
    }

    .gls-store-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .gls-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .gls-partner-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }

    .gls-partner-action {
        width: 100%;
    }

    .gls-partner-action .gls-btn {
        width: 100%;
    }

    .gls-partner-tcs {
        text-align: center;
    }

    .gls-footer-logos {
        gap: 15px;
    }
}

@media (max-width: 320px) {
    .gls-hero-title {
        font-size: 2rem;
    }

    .gls-section-heading h2 {
        font-size: 1.8rem;
    }

    .gls-carousel-container {
        padding: 20px 10px;
    }

    .gls-dialog-image img {
        width: 150px;
        height: 150px;
    }
}




.gls-casino-hero {
    min-height: 50vh;
}


.gls-disclaimer-section {
    padding: 3rem 0;
    background-color: var(--color-background);
}

.gls-disclaimer-box {
    background-color: rgba(220, 38, 38, 0.1);
    border-left: 4px solid var(--color-accent);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    border-radius: 0 12px 12px 0;
}

.gls-disclaimer-icon {
    font-size: 3rem;
    color: var(--color-accent);
    flex-shrink: 0;
}

.gls-disclaimer-content h2 {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.gls-disclaimer-content p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.gls-disclaimer-content p:last-child {
    margin-bottom: 0;
}


.gls-casino-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gls-casino-game-card {
    background-color: var(--color-surface);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.gls-casino-game-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.gls-casino-game-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gls-casino-game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gls-casino-game-card:hover .gls-casino-game-img img {
    transform: scale(1.05);
}

.gls-casino-game-info {
    padding: 1.5rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.gls-casino-game-info h3 {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.gls-casino-game-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    flex-grow: 1;
}


.gls-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gls-info-block {
    text-align: center;
    padding: 2rem;
    background-color: var(--color-surface);
    border-radius: 12px;
    border-top: 3px solid var(--color-primary);
}

.gls-info-block i {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.gls-info-block h3 {
    color: var(--color-text);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.gls-info-block p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.gls-casino-footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gls-age-limit {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-weight: 700;
    font-size: 1rem;
}


.gls-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gls-tip-card {
    background-color: var(--color-background);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.gls-tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
}

.gls-tip-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(157, 78, 221, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
    font-size: 1.5rem;
}

.gls-tip-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.gls-tip-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .gls-disclaimer-box {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .gls-disclaimer-icon {
        font-size: 2rem;
    }

    .gls-casino-footer-logos {
        flex-direction: column;
        gap: 1.5rem;
    }
}