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

:root {
    --primary-color: #28a745;
    --secondary-color: #20c997;
    --accent-color: #ffd700;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #666666;
    --light-gray: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --gold-color: #ffd700;
    --emerald-color: #50c878;
    --gradient-bg: linear-gradient(135deg, #28a745 0%, #20c997 50%, #ffd700 100%);
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

img {
    max-width: 100%;
    height: auto;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: var(--gradient-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
    font-size: 1.1rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-bg);
    color: var(--light-color);
    box-shadow: var(--box-shadow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.3);
}

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

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

.play-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: var(--gradient-bg);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

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

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

/* Header Styles */
.header {
    background: var(--light-color);
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header__cta {
    flex-shrink: 0;
}

.header__logo {
    flex-shrink: 0;
}

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

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

.nav__link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-bg);
    transition: var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
    display: block;
}

.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);
}

/* Breadcrumb */
.breadcrumb {
    background: var(--light-gray);
    padding: 1rem 0;
}

.breadcrumb__list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb__item:not(:last-child)::after {
    content: '>';
    margin-left: 0.5rem;
    color: var(--gray-color);
}

.breadcrumb__link {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb__link:hover {
    text-decoration: underline;
}

.breadcrumb__text {
    color: var(--gray-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 100%);
    padding: 4rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.hero__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

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

.stat__label {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.stat__value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hero__image {
    text-align: center;
}

.hero__img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

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

.section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section__description {
    font-size: 1.2rem;
    color: var(--gray-color);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    text-align: center;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

/* Game Focus Section */
.game-focus__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.game-focus__card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.game-focus__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.game-focus__card > div:first-child {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.game-focus__card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    max-height: 80px;
}

.game-focus__card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Overview Section */
.overview {
    padding: 4rem 0;
}

.overview__content {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.overview__info {
    max-width: 800px;
    width: 100%;
}

.overview__subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.overview__description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
}

.text-link {
    color: var(--primary-color);
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.info-table {
    background: var(--light-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    max-width: 100%;
    margin: 0 auto;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 600;
    color: var(--dark-color);
}

.info-value {
    color: var(--gray-color);
}

.info-value--highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Symbols Section */
.symbols {
    padding: 4rem 0;
}

.symbols__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.symbol-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.symbol-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.symbol-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.symbol-icon img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.symbol-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.payout-list {
    list-style: none;
    text-align: left;
}

.payout-list li {
    padding: 0.5rem 0;
    color: var(--gray-color);
}

/* Features Section */
.features {
    padding: 4rem 0;
}

.features__content {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.feature-item__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.feature-item__icon img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
}

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

.feature-item p {
    line-height: 1.8;
}

/* Feature Section (for game-features page) */
.feature-section {
    padding: 4rem 0;
}

.feature-section--alt {
    background: var(--light-gray);
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-text {
    max-width: 100%;
}

.feature-image {
    text-align: center;
}

.feature-img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.feature-title {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

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

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

/* CTA Section */
.cta {
    background: var(--gradient-bg);
    color: var(--light-color);
    padding: 4rem 0;
    text-align: center;
}

.cta__title {
    color: var(--light-color);
    margin-bottom: 1rem;
}

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

.cta__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta .btn--primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

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

.cta .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
}

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

.faq__item {
    background: var(--light-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.faq__question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq__question:hover {
    background: var(--light-gray);
}

.faq__arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq__answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
}

.faq__item--open .faq__answer {
    max-height: 500px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

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

.footer__logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer__description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer__title {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer__nav {
    list-style: none;
}

.footer__nav li {
    margin-bottom: 0.5rem;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--primary-color);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__copyright,
.footer__disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* How to Play Page Styles */
.hero--how-to-play,
.hero--features {
    min-height: 40vh;
}

.quick-start {
    padding: 4rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--gradient-bg);
    color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-card h3 {
    margin-top: 1rem;
    color: var(--primary-color);
}

.interface-guide,
.mechanics-guide,
.free-spins-guide,
.irish-spins-guide,
.buy-spins-guide,
.game-rules,
.strategies,
.values,
.coverage,
.privacy-content,
.disclosure-content,
.warning-signs,
.tools,
.help-resources,
.demo-benefits,
.demo-comparison {
    padding: 4rem 0;
}

.interface-content,
.mechanic-section,
.guide-steps,
.irish-spins-content,
.buy-spins-content,
.rules-content {
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.interface-item,
.mechanic-section,
.guide-step {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
}

.interface-item h3,
.mechanic-section h3,
.guide-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.interface-item ul,
.mechanic-section ul,
.guide-step ul,
.irish-spins-content ul,
.buy-spins-content ul,
.rules-content ul {
    list-style: none;
    margin: 1rem 0;
}

.interface-item ul li,
.mechanic-section ul li,
.guide-step ul li,
.irish-spins-content ul li,
.buy-spins-content ul li,
.rules-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-color);
}

.interface-item ul li::before,
.mechanic-section ul li::before,
.guide-step ul li::before,
.irish-spins-content ul li::before,
.buy-spins-content ul li::before,
.rules-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

.strategy-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.strategy-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.strategy-card ul {
    list-style: none;
    margin-top: 1rem;
}

.strategy-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-color);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header__content {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .header__cta {
        order: 2;
        flex: 1 1 auto;
        min-width: 120px;
        display: flex;
        justify-content: flex-end;
    }
    
    .play-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        white-space: nowrap;
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .play-btn__text {
        font-size: 0.85rem;
    }
    
    @media (max-width: 480px) {
        .header__cta {
            min-width: 100px;
            flex: 0 0 auto;
        }
        
        .play-btn {
            padding: 8px 16px;
            font-size: 0.8rem;
        }
        
        .play-btn__text {
            font-size: 0.75rem;
        }
    }
    
    .header__logo {
        order: 1;
        flex: 0 0 auto;
    }
    
    .mobile-menu-btn {
        order: 3;
        flex: 0 0 auto;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem;
        z-index: 999;
        transition: var(--transition);
        order: 4;
        flex: 1 1 100%;
    }
    
    .nav--open {
        left: 0;
    }
    
    .nav__link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta__buttons {
        flex-direction: column;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Promo Code Section */
.promo-code-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.95) 0%, rgba(32, 201, 151, 0.9) 50%, rgba(255, 215, 0, 0.95) 100%);
    margin: 3rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.promo-code-card {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(40, 167, 69, 0.3), 0 0 0 1px rgba(255, 215, 0, 0.1) inset;
    padding: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.promo-code-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.promo-code-icon {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(255, 215, 0, 0.4));
}

.promo-code-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin: 0;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    letter-spacing: 0.5px;
}

.promo-code-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.promo-code-box {
    background: rgba(15, 15, 15, 0.8);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.2);
}

.promo-code-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.promo-code-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    letter-spacing: 1px;
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    background: rgba(15, 15, 15, 0.6);
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.promo-code-copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3);
    letter-spacing: 0.5px;
}

.promo-code-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #34ce57 0%, #2dd4aa 100%);
    border-color: rgba(255, 215, 0, 0.5);
}

.promo-code-copy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.promo-code-copy-btn.copied {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.promo-code-copy-btn svg {
    flex-shrink: 0;
}

.promo-code-instructions {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.2);
}

.instructions-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 1px;
}

.instructions-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.instructions-list li {
    counter-increment: step-counter;
    padding: 1rem 0 1rem 3rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 1rem;
}

.instructions-list li:last-child {
    border-bottom: none;
}

.instructions-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffd700;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.instructions-list li strong {
    color: #7CB342;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.promo-code-note {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-left: 4px solid rgba(255, 215, 0, 0.5);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.2);
}

.promo-code-note p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 0.95rem;
}

.promo-code-note strong {
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    font-weight: 700;
}

/* Top Casinos Section */
.top-casinos {
    padding: 4rem 0;
    background: var(--light-gray);
}

.casinos-grid,
.casinos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Casino Cards - по образцу minedropslot.com */
.casino-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.casino-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.casino-card__logo {
    width: 80px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
}

.casino-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: #111827;
    text-align: center;
}

.casino-card__rating {
    font-size: 1rem;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 1rem;
}

.rating-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin-left: 0.375rem;
}

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

.casino-card__features .feature {
    padding: 0.375rem 0;
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.casino-card__bonuses {
    padding: 1rem;
    background: rgba(40, 167, 69, 0.05);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.bonuses-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 0.75rem 0;
}

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

.bonuses-list li {
    padding: 0.375rem 0 0.375rem 1.25rem;
    color: #4b5563;
    font-size: 0.875rem;
    position: relative;
}

.bonuses-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.vip-club {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e7eb;
}

.vip-club strong {
    color: #111827;
    font-weight: 700;
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
}

.vip-club p {
    color: #4b5563;
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
}

.vip-link {
    margin-top: 0.5rem;
}

.vip-link a {
    color: #3b82f6;
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
}

.vip-link a:hover {
    text-decoration: underline;
}

.casino-card__btn {
    display: block;
    width: 100%;
    background: #3b82f6;
    color: white;
    text-decoration: none;
    padding: 0.875rem;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
    font-size: 0.9375rem;
}

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

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

/* What to Look For Section */
.what-to-look-for {
    padding: 4rem 0;
    background: var(--light-gray);
}

.what-to-look-for__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.look-for-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.look-for-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.look-for-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 50%;
}

.look-for-card__icon svg {
    width: 48px;
    height: 48px;
}

.look-for-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.look-for-card__text {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Demo Section */
.demo-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(32, 201, 151, 0.05) 50%, rgba(255, 215, 0, 0.05) 100%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.demo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.demo-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.demo-features-list li {
    padding: 0.75rem 0;
    color: var(--gray-color);
    font-size: 1rem;
}

.demo-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

/* Mobile Section */
.mobile-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(40, 167, 69, 0.05) 50%, rgba(32, 201, 151, 0.05) 100%);
}

.mobile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    align-items: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-visual {
    order: 1;
}

.mobile-text {
    order: 2;
}

.mobile-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.mobile-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mobile-features-list li {
    padding: 0.75rem 0;
    color: var(--gray-color);
    font-size: 1rem;
}

.mobile-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.15);
    border-color: var(--accent-color);
}

.testimonial__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    display: block;
    border: 3px solid var(--accent-color);
}

.testimonial__content {
    display: flex;
    flex-direction: column;
}

.testimonial__text {
    color: var(--gray-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial__name {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.testimonial__role {
    font-size: 0.875rem;
    color: var(--gray-color);
}

/* Section Footer */
.section__footer {
    text-align: center;
    margin-top: 3rem;
    margin-top: 3rem;
    text-align: center;
}

/* Responsive Styles for New Sections */
@media (max-width: 968px) {
    .demo-content,
    .mobile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .casinos-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-visual {
        order: 1;
    }
    
    .mobile-text {
        order: 2;
    }
}

@media (max-width: 768px) {
    .promo-code-section {
        padding: 2rem 0;
        margin: 2rem 0;
    }
    
    .promo-code-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .promo-code-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .promo-code-icon {
        font-size: 2.5rem;
    }
    
    .promo-code-title {
        font-size: 1.5rem;
    }
    
    .promo-code-box {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-code-value {
        font-size: 1.25rem;
        width: 100%;
    }
    
    .demo-section,
    .mobile-section {
        padding: 2rem 0;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .top-casinos {
        padding: 2rem 0;
    }
}

/* Installation Guide Section */
.installation-guide {
    padding: 4rem 0;
    background: var(--light-color);
}

.guide-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.step:hover {
    transform: translateX(5px);
    box-shadow: var(--box-shadow);
}

.step__number {
    background: var(--primary-color);
    color: var(--light-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.step__content {
    flex: 1;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.step__text {
    color: var(--gray-color);
    line-height: 1.6;
}

/* System Requirements Section */
.system-requirements {
    background: var(--light-gray);
    padding: 4rem 0;
}

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

.requirements-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.requirements-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.requirements-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    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: var(--light-gray);
    border-radius: 8px;
}

.requirement-label {
    font-weight: 600;
    color: var(--dark-color);
}

.requirement-value {
    color: var(--primary-color);
    font-weight: 700;
}

/* App Features Section */
.app-features {
    padding: 4rem 0;
    background: var(--light-color);
}

/* Additional Sections Centering */
.values .game-focus__grid,
.coverage .feature-content,
.privacy-content .feature-content,
.disclosure-content .feature-content,
.warning-signs .feature-content,
.help-resources .feature-content,
.demo-benefits .feature-content {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.demo-comparison .info-table {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* App Features Section */
.app-features {
    padding: 4rem 0;
    background: var(--light-color);
}

/* Responsive Styles for Installation Guide and System Requirements */
@media (max-width: 768px) {
    .installation-guide,
    .system-requirements {
        padding: 2rem 0;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step__number {
        margin: 0 auto;
    }
    
    .requirements-content {
        grid-template-columns: 1fr;
    }
}

/* Verdict Section */
.verdict {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(32, 201, 151, 0.1) 50%, rgba(255, 215, 0, 0.1) 100%);
    padding: 4rem 0;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
}

.verdict__content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.verdict__header {
    margin-bottom: 2rem;
}

.verdict__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(40, 167, 69, 0.2);
}

.verdict__text {
    text-align: left;
    margin-bottom: 3rem;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

.verdict__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
}

.verdict__text p:last-child {
    margin-bottom: 0;
}

.verdict__rating {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

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

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

.rating-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

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

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

.star.filled {
    color: var(--accent-color);
}

.verdict__conclusion {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
}

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

/* Responsive Styles for Verdict Section */
@media (max-width: 768px) {
    .verdict {
        padding: 2rem 0;
    }
    
    .verdict__title {
        font-size: 1.75rem;
    }
    
    .verdict__text {
        padding: 1.5rem;
    }
    
    .verdict__text p {
        font-size: 1rem;
    }
    
    .verdict__rating {
        padding: 1.5rem;
    }
    
    .rating-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .conclusion-text {
        font-size: 1.1rem;
    }
}

/* Features Overview Section */
.features-overview {
    padding: 4rem 0;
    background: var(--light-gray);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.feature-icon-large img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.hero--features .hero__image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero--features .hero__img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
}

