/* Polish Version - Unique Dark Card Design */
:root {
    --primary: #9333EA;
    --primary-dark: #7E22CE;
    --secondary: #10B981;
    --accent: #F59E0B;
    --dark-bg: #0F172A;
    --card-bg: #1E293B;
    --card-hover: #334155;
    --text: #F1F5F9;
    --text-gray: #94A3B8;
    --border: #334155;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

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

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

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

/* Header */
.header {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1E293B 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--primary);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 50px;
}

.nav {
    display: none;
    gap: 1.5rem;
}

.nav-link {
    color: var(--text);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--card-hover);
    color: var(--primary);
}

.btn-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--text);
}

.hero-accent {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: grid;
    /*grid-template-columns: repeat(3, 1fr);*/
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-box {
    background-color: var(--card-bg);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    font-size: 1.75rem;
}

.feature-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.feature-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--secondary);
    color: var(--secondary);
}

.btn-secondary:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

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

.hero-visual {
    text-align: center;
}

.hero-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-card img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.stat-icon {
    font-size: 1.25rem;
}

/* Section Styling */
.section-head {
    margin-bottom: 3rem;
}

.section-head.centered {
    text-align: center;
}

.section-badge {
    display: inline-block;
    background-color: var(--card-bg);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
}

.section-head h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.section-head p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.demo-box {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.demo-frame {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
    background-color: var(--dark-bg);
}

.demo-game {
    width: 100%;
    min-height: 500px;
    border: none;
}

.demo-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.benefit-card {
    background-color: var(--dark-bg);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.benefit-icon {
    color: var(--success);
    font-size: 1.25rem;
}

.demo-action {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
}

.demo-action h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.btn-action {
    display: inline-block;
    background-color: white;
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-action:hover .arrow {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    padding: 4rem 0;
    background-color: #0A1020;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--card-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    border: 1px solid var(--border);
}

.badge-icon {
    font-size: 1.25rem;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-item {
    background-color: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.about-item:hover {
    background-color: var(--card-hover);
    transform: translateY(-5px);
}

.about-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.about-item h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.about-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Rules Section */
.rules-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.rules-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.rule-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-direction: column;
}

.rule-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
    margin: 0 auto;
}

.rule-content {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.rule-content h3 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rule-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.difficulty-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.diff-card {
    background-color: var(--dark-bg);
    border-radius: 12px;
    padding: 1.25rem;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.diff-card.easy { border-left: 4px solid var(--success); }
.diff-card.medium { border-left: 4px solid var(--accent); }
.diff-card.hard { border-left: 4px solid var(--warning); }
.diff-card.hardcore { border-left: 4px solid var(--danger); }

.diff-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.diff-icon {
    font-size: 1.5rem;
}

.diff-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--text);
}

.diff-info {
    display: flex;
    justify-content: space-between;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.rule-img {
    width: 100%;
    border-radius: 12px;
    margin-top: 1.5rem;
    border: 1px solid var(--border);
}

.tips-box {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-top: 1.5rem;
}

.tips-box h4 {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tips-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

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

.info-box:hover {
    background-color: var(--card-hover);
    transform: translateY(-5px);
}

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

.info-box h3 {
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Casinos Section */
.casinos-section {
    padding: 4rem 0;
    background-color: #0A1020;
}

.casinos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.casino-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
}

.casino-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(147, 51, 234, 0.2);
}

.casino-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.casino-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.casino-logo {
    max-width: 150px;
    height: auto;
}

.casino-rating {
    text-align: right;
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.rating-value {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 600;
}

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

.casino-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background-color: var(--dark-bg);
    color: var(--text-gray);
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--border);
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.bonus-amount {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.bonus-extras {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-details {
    list-style: none;
    padding: 0;
}

.bonus-details li {
    color: var(--text-gray);
    font-size: 0.9rem;
    padding: 0.25rem 0;
}

.casino-btn {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.casino-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

.casinos-disclaimer {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 12px;
    border-left: 4px solid var(--warning);
}

.casinos-disclaimer p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Bonuses Section */
.bonuses-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.bonuses-carousel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.bonus-item {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.bonus-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--dark-bg);
    padding: 0.4rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid var(--border);
}

.bonus-tag.hot {
    background: linear-gradient(135deg, var(--danger) 0%, var(--warning) 100%);
    color: white;
    border: none;
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

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

.bonus-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.bonus-features li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.bonus-features li:last-child {
    border-bottom: none;
}

.bonus-claim {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.bonus-claim:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #0A1020;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-box {
    background-color: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-box:hover {
    border-color: var(--primary);
}

.faq-q {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-q h3 {
    color: var(--text);
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-box.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-box.active .faq-a {
    max-height: 500px;
}

.faq-a p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: var(--dark-bg);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.cta-btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background-color: white;
    color: var(--primary);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background-color: white;
    color: var(--primary);
}

.cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #0A0E1A;
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.social-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 1rem auto 0;
}

.footer-disclaimer p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.footer-disclaimer a {
    color: var(--primary);
}

/* Cookie Bar */
.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--card-bg);
    padding: 1rem;
    border-top: 2px solid var(--primary);
    z-index: 9999;
    display: none;
}

.cookie-bar.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

/* Desktop Styles */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-cta {
        flex-direction: row;
    }
    
    .demo-benefits {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rule-item {
        flex-direction: row;
    }
    
    .rule-number {
        margin: 0;
    }
    
    .difficulty-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-info-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bonuses-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .faq-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-top {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .section-head h2 {
        font-size: 2.5rem;
    }
}
