:root {
    --color-primary: #00b67a;
    --color-primary-hover: #00d68f;
    --color-secondary: #2c3862;
    --color-background-dark: #0b0c15;
    --color-background-card: #1c1f33;
    --color-background-info: #2f334e;
    --color-background-legal: #262a40;
    --color-text-white: #ffffff;
    --color-text-light: #e6e6e6;
    --color-text-muted: #99a5c5;
    --color-text-link: #63bcff;
    --color-text-link-hover: #a5d8ff;
    --color-border: #2f334e;
    --color-stars: #f5c22a;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --container-max-width: 970px;
    --border-radius-lg: 16px;
    --border-radius-md: 10px;
    --border-radius-sm: 8px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    font-family: var(--font-family);
    background: linear-gradient(180deg, #0f0f16 0%, #0a0b12 70%, var(--color-background-card) 100%);
    color: var(--color-text-white);
    min-height: 100vh;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}
ul, ol {
    list-style: none;
}
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
}
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
}
.background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background: url("https://top10bestcasinoirish.com/wp-content/themes/top10bestcasinoirish-com/img/left.png") no-repeat left top;
    background-size: auto 100%;
    opacity: 0.5;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}
.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 350px;
    height: 100%;
    background: url("https://top10bestcasinoirish.com/wp-content/themes/top10bestcasinoirish-com/img/right.png") no-repeat right top;
    background-size: auto 100%;
    opacity: 0.5;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}
@media screen and (min-width: 1400px) {
    .background-overlay::before,
    .background-overlay::after {
        width: 450px;
        opacity: 0.55;
    }
}
@media screen and (max-width: 1200px) {
    .background-overlay::before,
    .background-overlay::after {
        width: 280px;
        opacity: 0.4;
    }
}
@media screen and (max-width: 992px) {
    .background-overlay::before,
    .background-overlay::after {
        width: 220px;
        opacity: 0.35;
    }
}
@media screen and (max-width: 768px) {
    .background-overlay::before,
    .background-overlay::after {
        width: 150px;
        opacity: 0.25;
        background-size: auto 80%;
    }
}
@media screen and (max-width: 480px) {
    .background-overlay::before,
    .background-overlay::after {
        width: 100px;
        opacity: 0.2;
        background-size: auto 60%;
    }
}
@media screen and (max-width: 360px) {
    .background-overlay::before,
    .background-overlay::after {
        display: none;
    }
}
.disclaimer-banner {
    background-color: var(--color-background-dark);
    border-bottom: 1px solid var(--color-border);
    padding: 8px 0;
    position: relative;
    z-index: 100;
}
.disclaimer-banner p {
    font-size: 13px;
    line-height: 1.4;
    color: var(--color-text-white);
    text-align: center;
    margin-bottom: 4px;
}
.disclaimer-banner .age-notice {
    margin-bottom: 0;
}
.disclosure-trigger {
    text-decoration: underline;
    cursor: pointer;
    transition: color var(--transition-fast);
}
.disclosure-trigger:hover {
    color: var(--color-text-link);
}
.disclosure-popup {
    display: none;
    position: absolute;
    top: 100%;
    right: 15px;
    width: 375px;
    max-width: calc(100vw - 30px);
    background: var(--color-text-white);
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 200;
}
.disclosure-popup.active {
    display: block;
}
.disclosure-content {
    position: relative;
}
.disclosure-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: left;
}
.close-disclosure {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--color-secondary);
    color: var(--color-text-white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.close-disclosure:hover {
    background: var(--color-primary);
}
.site-header {
    position: relative;
    z-index: 50;
    padding: 20px 0;
}
.site-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    width: 230px;
    height: auto;
}
.main-content {
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}
.hero-section {
    padding: 20px 0 30px;
}
.hero-section .current-date {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}
.hero-section h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
}
.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    display: none;
}
.casino-listings {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 14px 7px rgba(0, 0, 0, 0.5);
    padding: 16px 0;
}
.casino-card {
    display: flex;
    flex-wrap: wrap;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
}
.casino-card.featured::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 20px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    z-index: -1;
}
.casino-card:last-child {
    margin-bottom: 0;
}
.card-logo-section {
    width: 40%;
    background-color: var(--color-background-card);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-lg) 0 0 0;
}
.logo-link {
    display: block;
    margin-bottom: 10px;
}
.casino-logo {
    max-height: 65px;
    max-width: 140px;
    width: auto;
}
.mobile-rating {
    text-align: center;
}
.mobile-rating .score {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.2;
}
.stars {
    color: var(--color-stars);
    font-size: 14px;
    letter-spacing: 2px;
}
.desktop-rating {
    display: none;
    text-align: center;
}
.desktop-rating .score {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.2;
    margin-bottom: 6px;
}
.card-info-section {
    width: 60%;
    background-color: var(--color-background-info);
    border-radius: 0 var(--border-radius-lg) 0 0;
}
.card-content {
    padding: 16px 9px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bonus-info {
    text-align: center;
    margin-bottom: 12px;
}
.bonus-info p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-text-white);
}
.divider {
    display: none;
}
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.btn-bonus {
    display: inline-block;
    width: 160px;
    height: 40px;
    background-color: var(--color-primary);
    color: var(--color-text-white);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    line-height: 40px;
    border-radius: var(--border-radius-md);
    transition: filter var(--transition-fast);
}
.btn-bonus:hover {
    filter: brightness(1.15);
}
.btn-bonus:active {
    filter: brightness(0.91);
}
.visit-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: var(--color-text-link);
    transition: color var(--transition-fast);
}
.visit-link:hover {
    color: var(--color-text-link-hover);
}
.legal-text {
    width: 100%;
    background-color: var(--color-background-legal);
    padding: 10px 13px;
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}
.legal-text p {
    font-size: 9px;
    line-height: 1.5;
    color: var(--color-text-white);
    text-align: center;
}
.cross-banner-section {
    margin-top: 30px;
}
.cross-banner-section h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.96px;
    margin-bottom: 24px;
}
.secondary-list {
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 14px 7px rgba(0, 0, 0, 0.5);
    padding: 16px 0;
}
.content-section {
    background-color: var(--color-background-card);
    border-radius: var(--border-radius-sm);
    padding: 32px 16px;
    margin-top: 30px;
}
.content-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text-white);
}
.content-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--color-text-white);
}
.content-section p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--color-text-light);
}
.content-section ul.featured-list {
    margin: 16px 0;
    padding-left: 20px;
}
.content-section ul.featured-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}
.content-section ul.featured-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-text-link);
    font-weight: bold;
}
.content-section ul.featured-list a {
    color: var(--color-text-link);
    font-size: 16px;
    line-height: 1.8;
    transition: color var(--transition-fast);
}
.content-section ul.featured-list a:hover {
    color: var(--color-text-link-hover);
}
.responsible-gaming {
    margin-top: 24px;
}
.responsible-gaming img {
    width: 215px;
}
.site-footer {
    background-color: #151724;
    padding: 60px 0;
    margin-top: 64px;
    position: relative;
    z-index: 20;
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer-links h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: 16px;
    text-transform: uppercase;
}
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links a {
    font-size: 14px;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}
.footer-links a:hover {
    color: var(--color-text-link);
}
.footer-logo {
    margin-bottom: 24px;
}
.footer-logo img {
    width: 182px;
}
.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}
.footer-badges {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 20px 0;
}
.footer-badges .age-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-white);
}
.footer-badges img {
    height: 50px;
    width: auto;
}
.copyright {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .hero-section .current-date {
        display: none;
    }
    .hero-section h1 {
        font-size: 32px;
    }
    .hero-section h1::after {
        content: ' March 2026';
        color: var(--color-primary);
    }
    .hero-description {
        display: block;
        max-width: 620px;
    }
    .casino-card {
        flex-wrap: nowrap;
    }
    .card-logo-section {
        width: 20%;
        border-radius: var(--border-radius-lg) 0 0 var(--border-radius-lg);
    }
    .mobile-rating {
        display: none;
    }
    .card-info-section {
        width: 80%;
        border-radius: 0 var(--border-radius-lg) var(--border-radius-lg) 0;
        display: flex;
        flex-direction: column;
    }
    .card-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 32px 16px 45px;
        flex: 1;
    }
    .bonus-info {
        width: 224px;
        margin-bottom: 0;
    }
    .bonus-info p {
        font-size: 18px;
    }
    .divider {
        display: block;
        width: 1px;
        height: 60px;
        background-color: var(--color-background-card);
    }
    .desktop-rating {
        display: block;
        width: 110px;
    }
    .cta-section {
        flex-direction: column;
    }
    .btn-bonus {
        width: 168px;
        height: 44px;
        line-height: 44px;
    }
    .visit-link {
        margin-top: 16px;
    }
    .legal-text {
        border-radius: 0 0 var(--border-radius-lg) 0;
    }
    .cross-banner-section h2 {
        font-size: 28px;
        letter-spacing: 1.6px;
    }
    .content-section {
        padding: 50px;
    }
    .content-section h2 {
        font-size: 28px;
    }
    .content-section h3 {
        font-size: 20px;
    }
    .footer-content {
        flex-direction: row;
        gap: 0;
    }
    .footer-links {
        border-right: 1px solid var(--color-border);
        padding-right: 56px;
        min-width: 220px;
    }
    .footer-info {
        padding-left: 56px;
        flex: 1;
        max-width: 572px;
    }
    .footer-logo {
        margin-bottom: 32px;
    }
    .footer-logo img {
        width: 230px;
    }
}
@media screen and (min-width: 992px) {
    .container {
        max-width: var(--container-max-width);
    }
    .background-overlay {
        background-size: auto;
    }
}
@media screen and (min-width: 1200px) {
    .container {
        max-width: 970px;
    }
}
@media screen and (max-width: 767px) {
    .logo img {
        width: 182px;
    }
    .site-header {
        padding: 15px 0;
    }
    .card-info-section .legal-text {
        display: none;
    }
    .casino-card::after {
        content: '';
        width: 100%;
    }
    .casino-card .legal-text-mobile {
        display: block;
    }
}
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
}
a:focus,
button:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
@media print {
    .disclaimer-banner,
    .btn-bonus,
    .visit-link,
    .footer-badges {
        display: none;
    }
    body {
        background: white;
        color: black;
    }
    .casino-card {
        border: 1px solid #ccc;
        page-break-inside: avoid;
    }
}
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    visibility: hidden;
    transition: background-color 0.3s ease, visibility 0.3s ease;
}
.cookie-overlay.active {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.6);
}
.cookie-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background-color: var(--color-background-card);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    z-index: 10000;
}
.cookie-overlay.active .cookie-sidebar {
    right: 0;
}
.cookie-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-background-info);
}
.cookie-sidebar-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-white);
    margin: 0;
}
.cookie-close-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}
.cookie-close-btn:hover {
    color: var(--color-text-white);
}
.cookie-sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}
.cookie-intro {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.cookie-category {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}
.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
}
.cookie-category-info {
    flex: 1;
}
.cookie-category-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-white);
    margin: 0 0 6px 0;
}
.cookie-category-info p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}
.cookie-toggle {
    flex-shrink: 0;
}
.cookie-toggle input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.toggle-label {
    display: block;
    width: 48px;
    height: 26px;
    background-color: var(--color-border);
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s ease;
}
.toggle-switch {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: var(--color-text-white);
    border-radius: 50%;
    transition: transform 0.2s ease;
}
.cookie-toggle input[type="checkbox"]:checked + .toggle-label {
    background-color: var(--color-primary);
}
.cookie-toggle input[type="checkbox"]:checked + .toggle-label .toggle-switch {
    transform: translateX(22px);
}
.cookie-toggle input[type="checkbox"]:focus + .toggle-label {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.cookie-toggle.disabled .toggle-label {
    opacity: 0.6;
    cursor: not-allowed;
}
.cookie-disclosure-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--color-text-link);
    font-size: 13px;
    cursor: pointer;
    padding: 4px 0;
    transition: color 0.2s ease;
}
.cookie-disclosure-btn:hover {
    color: var(--color-text-link-hover);
}
.cookie-disclosure-btn svg {
    transition: transform 0.2s ease;
}
.cookie-disclosure-btn.expanded svg {
    transform: rotate(180deg);
}
.cookie-disclosure {
    margin-top: 12px;
    padding: 12px 16px;
    background-color: var(--color-background-legal);
    border-radius: var(--border-radius-sm);
}
.cookie-disclosure p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
}
.cookie-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: var(--color-background-info);
}
.cookie-btn {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}
.cookie-btn-save {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}
.cookie-btn-save:hover {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}
.cookie-btn-accept-all {
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    color: var(--color-text-white);
}
.cookie-btn-accept-all:hover {
    filter: brightness(1.1);
}
.cookie-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--color-primary);
    color: var(--color-text-white);
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-notification.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
@media screen and (max-width: 480px) {
    .cookie-sidebar {
        max-width: 100%;
        right: -100%;
    }
    .cookie-sidebar-content {
        padding: 20px 16px;
    }
    .cookie-sidebar-header,
    .cookie-sidebar-footer {
        padding: 16px;
    }
    .cookie-category-header {
        flex-direction: column;
        gap: 12px;
    }
    .cookie-toggle {
        align-self: flex-start;
    }
}