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

:root {
    --primary-color: #8b2cf5;
    --secondary-color: #ff6b35;
    --accent-color: #f7b731;
    --dark-bg: #0a0e27;
    --card-bg: #1a1e3e;
    --text-light: #ffffff;
    --text-muted: #a8b2d1;
    --success-color: #26de81;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #ffc837 0%, #ff8008 100%);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(139, 44, 245, 0.4);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--dark-bg);
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(139, 44, 245, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(247, 183, 49, 0.08) 0%, transparent 70%);
    background-attachment: fixed;
}

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

.header {
    background: rgba(26, 30, 62, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 2px solid rgba(139, 44, 245, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.header-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.badge-18 {
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 900;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.badge-responsible {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 44, 245, 0.3);
}

.badge-responsible:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 44, 245, 0.5);
}

.logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(139, 44, 245, 0.5));
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    padding: 6rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(139,44,245,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(247, 183, 49, 0.3);
    position: relative;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(247, 183, 49, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(247, 183, 49, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.intro-section,
.tips-section,
.faq-section,
.regulators-section {
    padding: 4rem 0;
}

.features-showcase {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 44, 245, 0.05) 0%, rgba(255, 107, 53, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.features-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(247, 183, 49, 0.1) 0%, transparent 50%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.showcase-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.showcase-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(139, 44, 245, 0.3);
}

.showcase-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1;
}

.showcase-item h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.showcase-item p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.intro-section h2,
.casinos-section h2,
.info-section h2,
.tips-section h2,
.faq-section h2,
.regulators-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.casinos-section {
    padding: 4rem 0;
}

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

.casino-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.casino-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.casino-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(247, 183, 49, 0.05) 0%, rgba(26, 30, 62, 1) 100%);
}

.casino-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(247, 183, 49, 0.4);
}

.casino-image {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.casino-image img {
    max-width: 180px;
    max-height: 70px;
    object-fit: contain;
}

.casino-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.casino-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.rating-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--success-color);
}

.casino-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1.2rem;
    border-radius: 10px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
}

.feature-item .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-item .value {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.05rem;
}

.casino-highlights {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-casino {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 44, 245, 0.3);
}

.btn-casino:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 44, 245, 0.5);
}

.info-section {
    padding: 4rem 0;
    background: rgba(26, 30, 62, 0.5);
}

.bg-light {
    background: rgba(255, 255, 255, 0.02);
}

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

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 44, 245, 0.2);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.gambling-disclaimer {
    padding: 3rem 0;
    background: rgba(255, 107, 53, 0.05);
    border-top: 3px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    margin: 3rem 0;
}

.disclaimer-content {
    text-align: center;
}

.disclaimer-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.disclaimer-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.help-resources {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 800px;
    text-align: left;
}

.help-resources ul {
    list-style: none;
    margin-top: 1rem;
}

.help-resources li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.help-resources li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

.help-resources a {
    color: var(--primary-color);
    text-decoration: none;
}

.help-resources a:hover {
    text-decoration: underline;
}

.age-notice {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1.5rem;
}

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

.tip-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.tip-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.tip-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-section {
    background: rgba(26, 30, 62, 0.5);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(247, 183, 49, 0.2);
}

.faq-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

.regulators-section {
    background: rgba(26, 30, 62, 0.5);
}

.regulators-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

.regulator-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.regulator-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 44, 245, 0.2);
}

.regulator-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.regulator-logo img {
    max-width: 150px;
    max-height: 70px;
    object-fit: contain;
}

.regulator-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.regulator-item p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.regulator-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.regulator-link:hover {
    color: var(--accent-color);
}

.footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(139, 44, 245, 0.3);
}

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

.footer-badge-18 {
    background: var(--secondary-color);
    color: var(--text-light);
    font-weight: 900;
    font-size: 1.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.footer-badge-responsible,
.footer-badge-help {
    background: var(--gradient-primary);
    color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 44, 245, 0.3);
}

.footer-badge-help {
    background: var(--gradient-gold);
}

.footer-badge-responsible:hover,
.footer-badge-help:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 44, 245, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--text-light);
    padding-left: 5px;
}

.company-info,
.company-address,
.company-contact {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.company-info strong {
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

.company-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.company-contact a:hover {
    color: var(--accent-color);
    padding-left: 0;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-badge {
    height: 40px;
    object-fit: contain;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer {
    background: rgba(255, 107, 53, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--secondary-color);
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.age-modal,
.cookie-banner {
    position: fixed;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.age-modal {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.age-modal-content {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--secondary-color);
}

.age-modal-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.age-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.age-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.cookie-banner {
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--card-bg);
    border-top: 3px solid var(--primary-color);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.cookie-content p {
    color: var(--text-muted);
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 44, 245, 0.5);
}

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

.btn-secondary:hover {
    border-color: var(--text-light);
    background: rgba(255, 255, 255, 0.1);
}

.hidden {
    display: none !important;
}

.content-section {
    padding: 4rem 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--accent-color);
}

.content-wrapper h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-light);
}

.content-wrapper p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.content-wrapper ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-wrapper ul li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.content-wrapper ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.content-wrapper a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.content-wrapper a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.update-date {
    background: var(--card-bg);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 2rem;
}

.disclaimer-box {
    background: rgba(255, 107, 53, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    margin: 3rem 0;
}

.disclaimer-box p {
    margin-bottom: 0;
}

.company-details {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.company-details h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.company-details p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.company-details strong {
    color: var(--text-light);
}

.company-details a {
    color: var(--primary-color);
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 44, 245, 0.5);
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 30, 62, 0.98);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        display: none;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .header-badges {
        display: none;
    }

    .footer-top-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .casinos-grid {
        grid-template-columns: 1fr;
    }

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

    .age-buttons,
    .cookie-buttons {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
    }
}
