/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #f7fafc;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Main content wrapper */
main {
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Remove any default margins from sections */
section {
    margin: 0;
    padding: 0;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2d3748;
}

.section-description {
    text-align: center;
    font-size: 1.125rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

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

.logo__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.logo__subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

.logo__img {
    height: 40px;
    width: auto;
}

.footer__logo-img {
    height: 32px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: #718096;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav__link:hover {
    color: #3b82f6;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #4a5568;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.mobile-menu-btn--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn--active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn--active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    color: white;
    padding: 120px 0 80px;
    margin-top: 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.stat {
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat__label {
    font-size: 0.875rem;
    display: block;
    margin-bottom: 0.25rem;
}

.stat__value {
    font-weight: 600;
    font-size: 1rem;
}

.hero__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.intro {
    background: white;
    padding: 4rem 0;
}

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

.intro__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.info-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.info-label {
    font-weight: 500;
    color: #718096;
}

.info-value {
    color: #2d3748;
    font-weight: 500;
}

.info-value--highlight {
    color: #10b981;
    font-weight: 600;
}

.intro__video {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.intro__video-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: #e2e8f0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    position: relative;
    cursor: pointer;
}

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

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.video-play-btn {
    position: relative;
    z-index: 2;
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-title,
.video-subtitle {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-player {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    transition: opacity 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 1);
}

.video-title {
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.video-subtitle {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Mechanics Section */
.mechanics {
    background: #f7fafc;
    padding: 4rem 0;
}

.mechanics__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mechanics__subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.mechanics__card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mechanics__img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.mechanics__text {
    color: #718096;
    margin-bottom: 1rem;
}

.mechanics__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mechanics__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #718096;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot--green { background: #10b981; }
.dot--blue { background: #3b82f6; }
.dot--orange { background: #f59e0b; }
.dot--red { background: #ef4444; }

.mechanics__additional {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    border-radius: 8px;
    color: #1e293b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Verdict Section */
.verdict {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
}

.verdict__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.verdict__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.verdict__text {
    text-align: left;
    margin-bottom: 3rem;
}

.verdict__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.verdict__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.verdict__list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
}

.verdict__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

.verdict__rating {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.rating-item:last-child {
    border-bottom: none;
}

.rating-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    font-size: 1.5rem;
    color: #d1d5db;
    transition: color 0.3s ease;
}

.star.filled {
    color: #fbbf24;
}

.verdict__conclusion {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.conclusion-text {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.bonus-games {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bonus-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.bonus-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.bonus-multiplier {
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.bonus-description {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

/* Features */
.features {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.features__title {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

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

.feature {
    text-align: center;
}

.feature__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature__icon--blue { background: #dbeafe; color: #3b82f6; }
.feature__icon--green { background: #d1fae5; color: #10b981; }
.feature__icon--purple { background: #e9d5ff; color: #8b5cf6; }

.feature__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.feature__description {
    color: #718096;
}

/* Casinos Section */
.casinos {
    background: white;
    padding: 4rem 0;
}

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

.casino-card {
    background: linear-gradient(135deg, #fff, #f7fafc);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.casino-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px;
}

.casino-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.casino-logo--1win { background: #ff6b35; }
.casino-logo--turbowins { background: #6366f1; }
.casino-logo--pinup { background: #ec4899; }

.casino-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.casino-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #e2e8f0;
    font-size: 1rem;
}

.star--filled {
    color: #fbbf24;
}

.rating-value {
    font-size: 0.875rem;
    color: #718096;
}

.casino-bonus {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.bonus-label {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.bonus-amount {
    font-size: 1.125rem;
    font-weight: 700;
}

.casino-description {
    color: #718096;
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 1rem;
}

.casino-btn {
    display: block;
    width: 100%;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
}

.casino-btn:hover {
    background: #2563eb;
}

.responsible-gaming-notice {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.notice-title {
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.notice-text {
    color: #92400e;
    font-size: 0.875rem;
    margin: 0;
}

/* How to Play Section */
.how-to-play {
    background: #f7fafc;
    padding: 4rem 0;
}

.how-to-play__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step__number {
    width: 32px;
    height: 32px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step__title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.step__description {
    color: #718096;
}

.tips {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tips__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

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

.tip {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.tip__icon {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.tip__text {
    color: #718096;
    margin: 0;
}

/* Demo and Mobile Section */
.demo-mobile {
    background: white;
    padding: 4rem 0;
}

.demo-mobile__header {
    text-align: center;
    margin-bottom: 3rem;
}

.demo-mobile__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.demo-section,
.mobile-section {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    padding: 2rem;
    border-radius: 12px;
}

.mobile-section {
    background: linear-gradient(135deg, #fdf4ff, #fae8ff);
}

.demo-section__title,
.mobile-section__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #2d3748;
}

.demo-game {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.demo-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
}

.demo-play-btn {
    width: 80px;
    height: 80px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.demo-play-btn:hover {
    transform: scale(1.1);
}

.demo-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.demo-subtitle {
    color: #718096;
    margin: 0;
}

.demo-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.demo-btn:hover {
    background: #2563eb;
}

.demo-features,
.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.demo-feature,
.mobile-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #718096;
}

.feature-icon {
    color: #10b981;
    flex-shrink: 0;
}

.mobile-info {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mobile-devices {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.device {
    font-size: 3rem;
}

.mobile-description {
    color: #718096;
    margin-bottom: 1.5rem;
}

.app-stores {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.store-btn:hover {
    background: #374151;
}

/* Testimonials Section */
.testimonials {
    background: #f7fafc;
    padding: 4rem 0;
}

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

.testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.testimonial__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4f46e5;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial__avatar--pink { background: #ec4899; }
.testimonial__avatar--cyan { background: #06b6d4; }

.testimonial__name {
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.testimonial__city {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
}

.testimonial__rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
}

.testimonial__text {
    color: #718096;
    font-style: italic;
    font-size: 0.875rem;
    margin: 0 0 1rem 0;
}

.testimonial__experience {
    font-size: 0.75rem;
    color: #a0aec0;
    margin: 0;
}

.testimonial__stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.testimonial__stats .stat {
    font-size: 0.75rem;
    color: #4a5568;
    background: #f7fafc;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.testimonials__stats {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-grid .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stats-grid .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}

.stats-grid .stat-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.testimonials__cta {
    text-align: center;
}

.cta-box {
    background: #dbeafe;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    padding: 1.5rem;
    display: inline-block;
}

.cta-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.cta-description {
    color: #1e40af;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.cta-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.cta-btn:hover {
    background: #2563eb;
}

/* Gallery Section */
.gallery {
    background: white;
    padding: 4rem 0;
}

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

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery__img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.05);
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.gallery__description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

/* Demo Page Styles */
.hero--demo {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    padding: 6rem 0 4rem;
}

/* Demo Section Styles */
.demo-demo {
    background: #f8fafc;
    padding: 4rem 0;
}

.demo-demo .demo__content {
    max-width: 600px;
    margin: 0 auto;
}

.demo-demo .demo-game {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.demo-demo .demo-placeholder {
    padding: 2rem;
    text-align: center;
}

.demo-demo .demo-play-btn {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.demo-demo .demo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.demo-demo .demo-subtitle {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.demo-demo .demo-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.demo-demo .demo-btn:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

.demo-demo .demo-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.demo-demo .feature-icon {
    color: #10b981;
    flex-shrink: 0;
}

.demo-demo .demo-feature span {
    color: #64748b;
    font-size: 0.9rem;
}

.hero__demo {
    margin-top: 3rem;
}

.demo-container {
    max-width: 100%;
    margin: 0 auto;
}

.demo-game {
    position: relative;
    width: 100%;
}

.demo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.demo-video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.demo-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.demo-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.demo-play-btn {
    background: rgba(59, 130, 246, 0.9);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.demo-play-btn:hover {
    transform: scale(1.1);
    background: rgba(59, 130, 246, 1);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

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

.demo-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.demo-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.demo-btn {
    background: #fbbf24;
    color: #1e293b;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(251, 191, 36, 0.4);
}

.hero--demo .hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero--demo .hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero--demo .stat__number {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.hero--demo .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

.demo-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.demo-game {
    text-align: center;
}

.demo-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 3rem 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.demo-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.demo-play-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.demo-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.demo-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.demo-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.demo-btn {
    background: #fbbf24;
    color: #1e3a8a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Demo Features Section */
.demo-features {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* How to Play Demo Section */
.how-to-play-demo {
    background: white;
    padding: 4rem 0;
}

.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.step__number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step__text {
    color: #64748b;
    line-height: 1.6;
}

/* Demo Benefits Section */
.demo-benefits {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.benefits__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.benefits__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #10b981;
    flex-shrink: 0;
}

.benefit-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    color: #64748b;
    margin: 0;
}

.benefits__img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Demo Comparison Section */
.demo-comparison {
    background: white;
    padding: 4rem 0;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: #3b82f6;
    color: white;
    font-weight: 700;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-row:nth-child(even) {
    background: #f8fafc;
}

.comparison-cell {
    padding: 1.5rem;
    border-right: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-header .comparison-cell {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.comparison-header .comparison-cell:last-child {
    border-right: none;
}

/* Game Features Page Styles */
.hero--features {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 6rem 0 4rem;
}

.hero--features .hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero--features .hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero--features .stat__number {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.hero--features .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Game Mechanics Section */
.game-mechanics {
    background: white;
    padding: 4rem 0;
}

.mechanics-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.mechanics-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.mechanics-text h3:first-child {
    margin-top: 0;
}

.mechanics-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mechanics-list {
    color: #64748b;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.mechanics-list li {
    margin-bottom: 0.5rem;
}

.mechanics-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Fish Types Section */
.fish-types {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.fish-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.fish-card:hover {
    transform: translateY(-4px);
}

.fish-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.fish-icon {
    font-size: 2.5rem;
}

.fish-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
}

.fish-multiplier {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.fish-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.fish-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.fish-features li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.fish-features li:before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.fish-stats {
    display: flex;
    gap: 2rem;
}

.fish-stats .stat {
    text-align: center;
}

.fish-stats .stat-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.fish-stats .stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
}

/* Bonus Rounds Section */
.bonus-rounds {
    background: white;
    padding: 4rem 0;
}

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

.bonus-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

.bonus-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bonus-icon {
    font-size: 2.5rem;
}

.bonus-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    flex: 1;
}

.bonus-multiplier {
    background: #fbbf24;
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.bonus-description p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.bonus-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature {
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Game Rules Section */
.game-rules {
    background: #f8fafc;
    padding: 4rem 0;
}

.rules-content {
    margin-top: 3rem;
}

.rules-section {
    margin-bottom: 3rem;
}

.rules-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.rules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.rule-number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.rule-text h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.rule-text p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.special-rules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.special-rule {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.special-rule h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.special-rule p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Strategies Section */
.strategies {
    background: white;
    padding: 4rem 0;
}

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

.strategy-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.strategy-card:hover {
    border-color: #3b82f6;
    transform: translateY(-2px);
}

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

.strategy-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.strategy-content p {
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.strategy-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.strategy-content li {
    padding: 0.5rem 0;
    color: #64748b;
    position: relative;
    padding-left: 1.5rem;
}

.strategy-content li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* About Page Styles */
.hero--about {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 6rem 0 4rem;
}

.hero--about .hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero--about .hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero--about .stat__number {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.hero--about .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Mission Section */
.mission {
    background: white;
    padding: 4rem 0;
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.mission-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.mission-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mission-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Values Section */
.values {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
}

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

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value-description {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team {
    background: white;
    padding: 4rem 0;
}

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

.team-member {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
}

.member-avatar {
    margin-bottom: 1rem;
}

.member-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Offerings Section */
.offerings {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.offering-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.offering-item:hover {
    transform: translateY(-2px);
}

.offering-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.offering-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.offering-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact {
    background: white;
    padding: 4rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.method-info p {
    color: #64748b;
    margin: 0;
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
}

/* Download APK Page Styles */
.hero--download {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 6rem 0 4rem;
}

.hero--download .hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero--download .hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero--download .stat__number {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.hero--download .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

.download-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.download-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.app-icon {
    margin-bottom: 1rem;
}

.app-icon-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.app-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.app-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.download-btn--primary {
    background: #fbbf24;
    color: #1e293b;
}

.download-btn--primary:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.download-btn--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.download-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* App Features Section */
.app-features {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

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

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Installation Guide Section */
.installation-guide {
    background: white;
    padding: 4rem 0;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.step__number {
    background: #3b82f6;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.step__text {
    color: #64748b;
    line-height: 1.6;
}

/* System Requirements Section */
.system-requirements {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.requirements-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.requirements-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.requirement-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
}

.requirement-label {
    font-weight: 600;
    color: #1e293b;
}

.requirement-value {
    color: #3b82f6;
    font-weight: 700;
}

/* FAQ Section */
.faq {
    background: white;
    padding: 4rem 0;
}

.faq__list {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.faq__item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq__item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.faq__item--open {
    border-color: #4f46e5;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.2);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.faq__question:hover {
    background: #f7fafc;
    color: #4f46e5;
}

.faq__arrow {
    transition: transform 0.3s ease;
    color: #4f46e5;
    font-size: 1.2rem;
}

.faq__item--open .faq__arrow {
    transform: rotate(180deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #718096;
    line-height: 1.6;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq__item--open .faq__answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq__answer.show {
    display: block;
}

.faq__support {
    text-align: center;
    background: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.support-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.support-description {
    color: #718096;
    margin-bottom: 1.5rem;
}

.support-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.support-btn:hover {
    background: #2563eb;
}

/* Footer */
.footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0;
}

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

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

.footer__logo .logo__icon {
    width: 40px;
    height: 40px;
    background: #3b82f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.footer__logo .logo__text {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer__description {
    color: #a0aec0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer__link:hover {
    color: white;
}

.responsible-logos {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.responsible-logo {
    height: 32px;
    width: auto;
}

.responsible-text {
    color: #a0aec0;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.responsible-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.responsible-link {
    color: #60a5fa;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s;
}

.responsible-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright,
.footer__disclaimer {
    color: #a0aec0;
    font-size: 0.875rem;
}

.footer__disclaimer {
    font-size: 0.75rem;
}

/* Footer Regulations Section */
.footer__regulations {
    background: #2d3748;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.regulations-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.regulations-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.regulation-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 8px;
}

.logo-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e2e8f0;
    text-align: center;
}

.regulations-text {
    text-align: center;
    color: #a0aec0;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.regulations-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.regulation-link {
    color: #63b3ed;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.regulation-link:hover {
    color: #90cdf4;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        z-index: 999;
        transition: left 0.3s ease;
        overflow-y: auto;
        display: flex;
    }

    .nav--open {
        left: 0;
        display: flex;
    }

    .nav__link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid #e2e8f0;
        text-align: center;
        color: #2d3748;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .nav__link:hover {
        color: #3b82f6;
    }

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

    .hero__title {
        font-size: 2rem;
    }

    .hero__stats {
        justify-content: center;
    }

    .intro__content,
    .mechanics__content,
    .how-to-play__content,
    .demo-mobile__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .casinos__grid,
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery__img {
        height: 200px;
    }

    .gallery__overlay {
        padding: 1rem;
    }

    .gallery__title {
        font-size: 1rem;
    }

    .gallery__description {
        font-size: 0.8rem;
    }

    /* Demo page mobile styles */
    .hero--demo .hero__title {
        font-size: 2rem;
    }

    .hero--demo .hero__description {
        font-size: 1rem;
    }

    .demo-container {
        padding: 1rem;
    }

    .demo-placeholder {
        padding: 2rem 1rem;
    }

    .demo-play-btn {
        width: 60px;
        height: 60px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .benefits__title {
        font-size: 2rem;
    }

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

    .step__number {
        align-self: center;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    /* Game features mobile styles */
    .hero--features .hero__title {
        font-size: 2rem;
    }

    .hero--features .hero__description {
        font-size: 1rem;
    }

    .mechanics-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .fish-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .bonus-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rule-item {
        flex-direction: column;
        text-align: center;
    }

    .rule-number {
        align-self: center;
    }

    .special-rules {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fish-stats {
        flex-direction: column;
        gap: 1rem;
    }

    /* About page mobile styles */
    .hero--about .hero__title {
        font-size: 2rem;
    }

    .hero--about .hero__description {
        font-size: 1rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .offerings-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Download APK mobile styles */
    .hero--download .hero__title {
        font-size: 2rem;
    }

    .hero--download .hero__description {
        font-size: 1rem;
    }

    .download-container {
        padding: 1rem;
    }

    .download-card {
        padding: 1.5rem;
    }

    .download-buttons {
        gap: 0.75rem;
    }

    .download-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .step__number {
        align-self: center;
    }

    .requirements-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .requirement-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    /* Demo page mobile styles */
    .demo-placeholder {
        padding: 1rem;
        gap: 1.5rem;
    }

    .demo-video-container {
        aspect-ratio: 4/3;
    }

    .demo-play-btn {
        width: 60px;
        height: 60px;
    }

    .demo-play-btn svg {
        width: 40px;
        height: 40px;
    }

    .demo-title {
        font-size: 1.5rem;
    }

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

    .demo-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    /* CTA buttons mobile styles */
    .cta__title {
        font-size: 2rem;
    }

    .cta__description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta__buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .demo-cta-btn,
    .btn--primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    .btn--secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .casino-card__actions .btn--primary {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

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

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

    .app-stores {
        flex-direction: column;
        align-items: center;
    }

    .regulations-logos {
        flex-direction: row;
        gap: 1rem;
        justify-content: space-around;
    }

    .logo-group {
        flex: 1;
        min-width: 80px;
    }

    .regulation-logo {
        width: 50px;
        height: 50px;
    }

    .regulations-links {
        flex-direction: column;
        gap: 1rem;
    }

    .responsible-logos {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__description {
        font-size: 1rem;
    }
    
    .play-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        min-width: 70px;
    }
    
    .header__content {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }

    .stat {
        padding: 0.75rem;
    }

    .casino-card,
    .testimonial {
        padding: 1rem;
    }

    .testimonial__stats {
        padding: 1rem;
        margin: 1rem 0;
    }

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

    .stats-grid .stat-number {
        font-size: 1.5rem;
    }

    .demo-section,
    .mobile-section {
        padding: 1.5rem;
    }
}

/* Smooth animations */
.casino-card,
.testimonial,
.demo-play-btn,
.video-play-btn,
.casino-btn,
.demo-btn,
.cta-btn,
.support-btn {
    transition: all 0.2s ease;
}

/* Focus states for accessibility */
.nav__link:focus,
.casino-btn:focus,
.demo-btn:focus,
.cta-btn:focus,
.support-btn:focus,
.faq__question:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* How to Play Page Styles */
.hero--how-to-play {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 6rem 0 4rem;
}

.toc {
    background: #f8fafc;
    padding: 4rem 0;
}

.toc__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3rem;
}

.toc__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #1e293b;
}

.toc__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.toc__number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    background: #dbeafe;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toc__text {
    font-size: 1.1rem;
    font-weight: 600;
}

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

.basics-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.basics-card:hover {
    transform: translateY(-4px);
}

.basics-card__icon {
    width: 4rem;
    height: 4rem;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #3b82f6;
}

.basics-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.basics-card__text {
    color: #64748b;
    line-height: 1.6;
}

.rules-content {
    margin-top: 3rem;
}

.rules-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.rules-step__number {
    width: 4rem;
    height: 4rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.rules-step__content {
    flex: 1;
}

.rules-step__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.rules-step__text {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rules-step__list {
    color: #cbd5e1;
    list-style: none;
    padding: 0;
}

.rules-step__list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.rules-step__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.fish-types {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.fish-types__title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

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

.fish-type {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.fish-type:hover {
    transform: translateY(-4px);
}

.fish-type__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.fish-type__icon--blue {
    filter: hue-rotate(200deg);
}

.fish-type__icon--orange {
    filter: hue-rotate(30deg);
}

.fish-type__icon--red {
    filter: hue-rotate(0deg);
}

.fish-type__name {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.fish-type__multiplier {
    font-size: 1.1rem;
    font-weight: 600;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.fish-type__description {
    color: #cbd5e1;
    font-size: 0.9rem;
}

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

.bonus-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
}

.bonus-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.bonus-card__icon {
    font-size: 2rem;
}

.bonus-card__title {
    font-size: 1.5rem;
    font-weight: 700;
}

.bonus-card__content {
    padding: 2rem;
}

.bonus-card__description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.bonus-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.bonus-card__stats .stat {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
}

.bonus-card__stats .stat__label {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.bonus-card__stats .stat__value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.strategies-content {
    margin-top: 3rem;
}

.strategy-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.strategy-tab {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 8px;
    color: #cbd5e1;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.strategy-tab.active,
.strategy-tab:hover {
    background: #3b82f6;
    color: white;
}

.strategy-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.strategy-panel {
    display: none;
}

.strategy-panel.active {
    display: block;
}

.strategy-panel__title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.strategy-panel__description {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.strategy-point {
    margin-bottom: 2rem;
}

.strategy-point__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.strategy-point__list {
    color: #cbd5e1;
    list-style: none;
    padding: 0;
}

.strategy-point__list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.strategy-point__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
    font-size: 1.2rem;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
}

.tip-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.tip-card__list {
    color: #64748b;
    list-style: none;
    padding: 0;
}

.tip-card__list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.tip-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Enhanced CTA Button Styles */
.demo-cta-btn {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
    border: 2px solid transparent;
}

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

.demo-cta-btn:hover::before {
    left: 100%;
}

.demo-cta-btn:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.demo-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(251, 191, 36, 0.3);
}

/* Primary Button Styles */
.btn--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn--secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.btn--secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--secondary:hover::before {
    opacity: 1;
}

.btn--secondary:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    text-decoration: none;
}

.btn--secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.1);
}

/* CTA Section Enhanced Styles */
.cta {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness for How to Play */
@media (max-width: 768px) {
    .toc__list {
        grid-template-columns: 1fr;
    }
    
    .rules-step {
        flex-direction: column;
        text-align: center;
    }
    
    .strategy-tabs {
        flex-direction: column;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .verdict__title {
        font-size: 2rem;
    }
    
    .verdict__text p {
        font-size: 1rem;
    }
    
    .verdict__list li {
        font-size: 1rem;
    }
    
    .rating-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .conclusion-text {
        font-size: 1.1rem;
    }
}

/* Registration Page Styles */
.hero--registration {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
    padding: 6rem 0 4rem;
}

.choose-casino {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.choose-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-4px);
}

.choose-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.choose-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.choose-card__text {
    color: #64748b;
    line-height: 1.6;
}

.top-casinos {
    padding: 4rem 0;
    background: white;
}

.casinos-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

/* Компактные карточки казино */
.casinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.casino-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.casino-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.casino-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.casino-card__logo {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 8px;
    padding: 8px;
}

.casino-card__logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-card__info {
    flex: 1;
}

.casino-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.casino-card__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 0.9rem;
}

.rating-text {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.casino-card__features {
    margin-bottom: 1rem;
}

.casino-card__features .feature-item {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.casino-card__bonuses {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.casino-card__bonuses .bonuses-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.casino-card__bonuses .bonuses-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.casino-card__bonuses .bonuses-list li {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.25rem;
    padding-left: 0.5rem;
    position: relative;
}

.casino-card__bonuses .bonuses-list li:before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.casino-card__actions {
    margin-top: auto;
}

.casino-card__actions .btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.casino-card__actions .btn--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.casino-card__actions .btn--primary:hover {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    color: white;
    text-decoration: none;
}

.casino-card__actions .btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Pulsing effect for casino buttons */
.casino-card__actions .btn--primary {
    animation: pulse-glow 2s infinite;
}

/* CTA Button Styles */
.cta .btn--primary {
    animation: pulse-glow 2s infinite;
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3), 0 0 20px rgba(59, 130, 246, 0.4);
    }
    100% {
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }
}

/* Focus styles for accessibility */
.btn--primary:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.casino-card__actions .btn--primary:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.casino-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.casino-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

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

.casino-logo {
    width: 80px;
    height: 80px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.casino-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.casino-info {
    flex: 1;
}

.casino-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.rating-text {
    font-weight: 600;
    color: #64748b;
}

.casino-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #64748b;
}

.feature-icon {
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.casino-bonuses {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.bonuses-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.bonuses-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bonuses-list li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #64748b;
}

.bonuses-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.casino-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.registration-guide {
    background: #f8fafc;
    padding: 4rem 0;
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step__number {
    width: 4rem;
    height: 4rem;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step__content {
    flex: 1;
}

.step__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.step__text {
    color: #64748b;
    line-height: 1.6;
    font-size: 1.1rem;
}

.faq-section {
    padding: 4rem 0;
    background: white;
}

/* Mobile Responsiveness for Registration */
@media (max-width: 768px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .casino-card {
        padding: 1rem;
    }
    
    .casino-card__header {
        gap: 0.75rem;
    }
    
    .casino-card__logo {
        width: 40px;
        height: 40px;
    }
    
    .casino-card__name {
        font-size: 1rem;
    }
    
    .casino-header {
        flex-direction: column;
        text-align: center;
    }
    
    .casino-actions {
        flex-direction: column;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step__number {
        align-self: center;
    }
}

/* Header CTA Button Styles */
.header__cta {
    display: flex;
    align-items: center;
}

.play-btn {
    position: relative;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff4757 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    animation: pulse-glow 2s infinite;
}

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

.play-btn:hover::before {
    left: 100%;
}

.play-btn:hover {
    background: linear-gradient(135deg, #ff5252 0%, #d63031 50%, #e74c3c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.play-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.play-btn__text {
    position: relative;
    z-index: 2;
    display: block;
}

.play-btn__pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s infinite;
}

/* Pulse Animation */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 107, 107, 0.8), 0 0 0 10px rgba(255, 107, 107, 0.1);
    }
    100% {
        box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    }
}

@keyframes pulse-ring {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Privacy Policy Page Styles */
.hero--privacy {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
    padding: 6rem 0 4rem;
}

.hero--privacy .hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero--privacy .hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero--privacy .stat__number {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.hero--privacy .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

.privacy-content {
    background: white;
    padding: 4rem 0;
}

.privacy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.privacy-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    flex-shrink: 0;
}

.privacy-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.privacy-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-text li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.privacy-text strong {
    color: #1e293b;
    font-weight: 600;
}

/* Mobile styles for play button */
@media (max-width: 768px) {
    .header__cta {
        display: flex;
    }
    
    .play-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
        min-width: 80px;
        text-align: center;
        white-space: nowrap;
    }
    
    .header__content {
        padding: 0.75rem 0;
        gap: 1rem;
    }
    
    .logo__img {
        width: 32px;
        height: 32px;
    }

    .hero--privacy .hero__title {
        font-size: 2rem;
    }

    .hero--privacy .hero__description {
        font-size: 1rem;
    }

    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .privacy-text h3 {
        font-size: 1.125rem;
    }
}

/* Responsible Gaming Page Styles */
.hero--responsible {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    color: white;
    padding: 6rem 0 4rem;
}

.hero--responsible .hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero--responsible .hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero--responsible .stat__number {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.hero--responsible .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

.principles {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.principle-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #10b981;
}

.principle-card:hover {
    transform: translateY(-4px);
}

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

.principle-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.principle-description {
    color: #64748b;
    line-height: 1.6;
}

.warning-signs {
    background: white;
    padding: 4rem 0;
}

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

.warning-list {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
}

.warning-list h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.warning-list ul {
    list-style: none;
    padding: 0;
}

.warning-list li {
    color: #7f1d1d;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
    top: 0;
}

.tools {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #3b82f6;
}

.tool-card:hover {
    transform: translateY(-4px);
}

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

.tool-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.tool-description {
    color: #64748b;
    line-height: 1.6;
}

.help {
    background: white;
    padding: 4rem 0;
}

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

.help-card {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.help-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 1.5rem;
}

.help-item {
    margin-bottom: 1.5rem;
}

.help-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0c4a6e;
    margin-bottom: 0.5rem;
}

.help-item p {
    color: #0369a1;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.resources {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resource-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
}

.resource-card li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.resource-card li::before {
    content: '📚';
    position: absolute;
    left: 0;
    top: 0;
}

.resource-card strong {
    color: #1e293b;
    font-weight: 600;
}

/* Mobile styles for responsible gaming */
@media (max-width: 768px) {
    .hero--responsible .hero__title {
        font-size: 2rem;
    }

    .hero--responsible .hero__description {
        font-size: 1rem;
    }

    .principles-grid,
    .tools-grid,
    .help-cards,
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .warning-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .principle-card,
    .tool-card,
    .help-card,
    .resource-card {
        padding: 1.5rem;
    }
}

/* Affiliate Disclosure Page Styles */
.hero--affiliate {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
    color: white;
    padding: 6rem 0 4rem;
}

.hero--affiliate .hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero--affiliate .hero__description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero--affiliate .stat__number {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 700;
}

.hero--affiliate .stat__label {
    color: rgba(255, 255, 255, 0.8);
}

.disclosure-content {
    background: white;
    padding: 4rem 0;
}

.disclosure-sections {
    max-width: 800px;
    margin: 0 auto;
}

.disclosure-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #7c3aed;
}

.disclosure-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.disclosure-title::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    flex-shrink: 0;
}

.disclosure-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.disclosure-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.disclosure-text ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.disclosure-text li {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.disclosure-text strong {
    color: #1e293b;
    font-weight: 600;
}

.partners-list {
    margin-top: 2rem;
}

.partner-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 3px solid #7c3aed;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.partner-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.partner-item p {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.partner-item strong {
    color: #7c3aed;
    font-weight: 600;
}

/* Mobile styles for affiliate disclosure */
@media (max-width: 768px) {
    .hero--affiliate .hero__title {
        font-size: 2rem;
    }

    .hero--affiliate .hero__description {
        font-size: 1rem;
    }

    .disclosure-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .disclosure-title {
        font-size: 1.5rem;
    }

    .disclosure-text h3 {
        font-size: 1.125rem;
    }

    .partner-item {
        padding: 1rem;
    }
}

/* Text Link Styles */
.text-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #1e40af;
    border-bottom-color: #3b82f6;
    text-decoration: none;
}

.text-link:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 2px;
}

/* Promo Code Section */
.promo {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.promo__content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
}

.promo__code-box {
    display: inline-flex;
    align-items: stretch;
    border: 2px dashed #3b82f6;
    border-radius: 10px;
    overflow: hidden;
    margin: 1rem 0 1.5rem;
    background: #eff6ff;
}

.promo__code {
    display: inline-block;
    padding: 0.75rem 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #1e40af;
}

.promo__copy {
    padding: 0.75rem 1rem;
    background: #1e40af;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 700;
}

.promo__steps-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.promo__steps-list {
    margin-left: 1.25rem;
    color: #4b5563;
}

.promo__image {
    text-align: center;
}

.promo__img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.promo__cta {
    margin-top: 1rem;
    display: inline-block;
}

@media (max-width: 768px) {
    .promo__content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Mobile styles for demo section */
@media (max-width: 768px) {
    .demo-demo {
        padding: 2rem 0;
    }
    
    .demo-demo .demo__content {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .demo-demo .demo-play-btn {
        width: 100px;
        height: 100px;
    }
    
    .demo-demo .demo-title {
        font-size: 1.25rem;
    }
    
    .demo-demo .demo-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .demo-demo .demo-feature {
        padding: 0.5rem;
    }
}

/* Breadcrumb Styles */
.breadcrumb {
    background: #f8fafc;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-top: 0;
    position: sticky;
    top: 80px;
    z-index: 100;
    width: 100%;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    width: 100%;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.875rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: '›';
    color: #94a3b8;
    font-weight: 600;
    margin-left: 0.5rem;
}

.breadcrumb__link {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb__link:hover {
    color: #1e40af;
    text-decoration: underline;
}

.breadcrumb__text {
    color: #64748b;
    font-weight: 500;
}

.breadcrumb__item--current .breadcrumb__text {
    color: #1e293b;
    font-weight: 600;
}

/* Special styles for main page breadcrumb */
.breadcrumb__list--main {
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb__list--main .breadcrumb__item:not(:last-child)::after {
    content: '•';
    color: #94a3b8;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Active section highlighting */
.breadcrumb__link.active {
    color: #1e40af;
    font-weight: 600;
    background: rgba(59, 130, 246, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Mobile styles for breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.5rem 0;
        margin-top: 0;
        position: sticky;
        top: 70px;
        z-index: 100;
    }
    
    .breadcrumb__list {
        font-size: 0.8rem;
        gap: 0.25rem;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
    }
    
    .breadcrumb__item:not(:last-child)::after {
        margin-left: 0.25rem;
    }
}

/* Live Players Notification */
.live-players-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 0.75rem 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.live-players-notification.show {
    transform: translateY(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
}

.notification-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.notification-text {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    flex: 1;
}

.players-count {
    font-weight: 700;
    color: #fbbf24;
    font-size: 1.1rem;
}

.player-country {
    font-weight: 600;
    color: #fbbf24;
}

.notification-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Mobile styles for notification */
@media (max-width: 768px) {
    .live-players-notification {
        padding: 0.5rem 0;
    }
    
    .notification-content {
        gap: 0.5rem;
        padding: 0 0.5rem;
    }
    
    .notification-text {
        font-size: 0.8rem;
    }
    
    .players-count {
        font-size: 1rem;
    }
    
    .notification-close {
        right: 0.5rem;
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }
    
    .notification-icon {
        font-size: 1.2rem;
    }
}

/* iOS PWA Section Styles */
.ios-pwa-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    margin: 2rem 0;
}

.pwa-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pwa-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

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

.pwa-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.pwa-description {
    color: #718096;
    line-height: 1.6;
}

.pwa-features {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.pwa-features-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.pwa-features-list {
    list-style: none;
    padding: 0;
}

.pwa-features-list li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-weight: 500;
}

.ios-installation-guide {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-top: 2rem;
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 2rem;
    text-align: center;
}

.ios-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.ios-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.ios-step__number {
    background: #3b82f6;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.ios-step__content {
    flex: 1;
}

.ios-step__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.ios-step__text {
    color: #4a5568;
    line-height: 1.6;
}

.pwa-requirements {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.requirements-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

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

.requirements-list li {
    padding: 0.25rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.requirements-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.pwa-link {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.link-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pwa-link-btn {
    display: inline-block;
    background: white;
    color: #3b82f6;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pwa-link-btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.link-description {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    line-height: 1.6;
}

/* Mobile styles for PWA section */
@media (max-width: 768px) {
    .pwa-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pwa-card, .pwa-features, .ios-installation-guide {
        padding: 1.5rem;
    }
    
    .ios-step {
        flex-direction: column;
        text-align: center;
    }
    
    .ios-step__number {
        align-self: center;
    }
    
    .pwa-link {
        padding: 1.5rem;
    }
}
