.dtpcnt {
    opacity: 0;
}

#loading-notice {
    margin: 10px 0;
    text-align: center;
}

#loading-notice p {
    margin: 2px 0;
}

#loading-notice strong {
    font-size: 18px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-notice-spinner {
    display: inline-block;
    border-radius: 100%;
    background-color: transparent;
    border: 4px solid #000000;
    border-bottom-color: transparent;
    height: 40px;
    width: 40px;
    margin: 0 auto;

    animation-name: spin;
    animation-duration: 1500ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

#ow-container.ow-preview-temp {
    --ow-offer_bg: #fafafa;
    --ow-cta_bg: #812fb1;
    --ow-cta_bg--hover: #2f8511;
    --ow-cta_color: #ffffff;
    --ow-cta_color--hover: #ffffff;
    --ow-footer_bg: #fafafa;
    --ow-footer_color: #1a1a1a;
}

body {
    margin: 0;
    font-family: sans-serif;
    background-color: #f1f1f1;
}

.top-bar {
    background-color: #1a1b2f;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.top-bar-icon {
    width: 24px;
    height: auto;
    flex-shrink: 0;
}

.top-bar-text {
    flex: 1;
    min-width: 0;
}

.top-bar a {
    color: #a9d7ff;
    text-decoration: underline;
    word-break: break-word;
}

.disclosure-container {
    position: relative;
    display: inline-block;
}

.disclosure-link {
    color: #a9d7ff;
    text-decoration: underline;
    cursor: pointer;
}

.disclosure-tooltip {
    display: none;
    position: absolute;
    top: 20px;
    left: 0;
    z-index: 10;
    background: #1a1a1a;
    color: #eee;
    font-size: 12px;
    padding: 15px;
    border-radius: 6px;
    width: 600px;
    max-width: 90vw;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.disclosure-container:hover .disclosure-tooltip,
.disclosure-container:focus-within .disclosure-tooltip {
    display: block;
}

.disclosure-tooltip a {
    color: #ffcc00;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .disclosure-tooltip {
        font-size: 11px;
        width: 65vw;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
}

.header-wrapper {
    background-color: #1a1b2f;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: white;
}

.logo span {
    color: #e91e63;
}

.logo .label {
    background: #e91e63;
    padding: 2px 10px;
    border-radius: 14px;
    font-size: 13px;
    margin-left: 6px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.notifications {
    position: relative;
    cursor: pointer;
    width: 28px;
    height: 28px;
}

.notifications i {
    font-size: 22px;
    color: white;
}

.notifications .count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    border-radius: 50%;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    border: 2px solid #1a1b2f;
}

.notif-panel {
    display: none;
    position: absolute;
    right: 0;
    top: 60px;
    background: #fff;
    color: #000;
    width: 320px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
}

.notif-panel.active {
    display: block;
}

.notif-panel h3 {
    background: #1a1b2f;
    color: #fff;
    margin: 0;
    padding: 12px;
    border-radius: 8px 8px 0 0;
    font-size: 16px;
}

.notif-item {
    padding: 12px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
}

.notif-item:last-child {
    border-bottom: none;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1a1b2f;
        position: absolute;
        top: 60px;
        left: 0;
        z-index: 10;
        padding: 10px 0;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        padding: 10px 20px;
        border-top: 1px solid #2a2b40;
    }

    .menu-toggle {
        display: block;
    }
}

/**/
.hero-section {
    position: relative;
    background-image: url('../images/ireland-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    height: 100vh;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1 1 400px;
    max-width: 600px;
}

.hero-text h2 {
    font-size: 28px;
    color: #ffd600;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #f1f1f1;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #ffb300;
    color: #000;
    font-weight: bold;
    border-radius: 4px;
    text-decoration: none;
}

.hero-image {
    flex: 1 1 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }
}

/**/
.summary-section {
    background: #0d0d0d;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.summary-container {
    max-width: 1000px;
    margin: 0 auto;
}

.summary-content h2 {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 15px;
}

.summary-content .summary-month {
    color: #ff0066;
}

.summary-content p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 20px;
}

.summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.tag {
    background: #1a1a1a;
    color: #ccc;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
}

.update-tag {
    background: #2c003e;
    color: #ff0066;
}

@media (max-width: 768px) {
    .summary-content h2 {
        font-size: 22px;
    }

    .summary-content p {
        font-size: 14px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 10px;
    }
}

/*footer*/
.site-footer {
    background: #170e1f;
    color: #fff;
    padding: 40px 20px;
    font-size: 14px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
}

.footer-links,
.footer-contact {
    flex: 1 1 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    columns: 2;
    gap: 0 30px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.footer-contact input,
.footer-contact textarea {
    padding: 10px;
    border: 1px solid #555;
    background: #111;
    color: #fff;
    border-radius: 4px;
}

.footer-contact textarea {
    min-height: 100px;
    resize: vertical;
}

.footer-contact button {
    background: #ffd600;
    border: none;
    padding: 12px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    max-width: 200px;
}

.footer-contact small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.footer-icons img {
    margin-right: 15px;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    color: #aaa;
}

.footer-disclaimer p {
    margin: 10px 0;
}

.footer-disclaimer .copyright {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links ul {
        columns: 1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact button {
        width: 100%;
    }
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.trust-box {
    background: #15112a;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: #ccc;
    text-decoration: none;
    transition: background 0.3s;
}

.trust-box:hover {
    background: #1d2235;
}

.trust-box img {
    max-height: 40px;
    margin-bottom: 10px;
}

.trust-box p {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
}
/**/
.notif-panel {
    position: absolute;
    top: 60px;
    right: 10px;
    background: #111;
    border-radius: 8px;
    padding: 15px;
    width: 300px;
    max-width: 90vw;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    display: none;
}

.notif-item-card {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    text-align: center;
}

.notif-item-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 10px;
}

.notif-item-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #00e676;
}

.notif-item-card p {
    margin: 5px 0;
}

.notif-item-card .rating {
    color: orange;
    font-weight: bold;
    margin-bottom: 10px;
}

.notif-item-card .btn {
    display: inline-block;
    padding: 8px 16px;
    background: #00a676;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

@media (max-width: 480px) {
    .disclosure-tooltip {
        font-size: 11px;
        width: 90vw;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }
    .notif-panel {
        right: 5px;
        width: 95vw;
    }
}
/**/
.about-section {
    background: #f7f7f7;
    padding: 60px 20px;
    color: #222;
    font-family: sans-serif;
}

.about-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3e0064;
}

.about-section h3 {
    font-size: 24px;
    margin-top: 30px;
    color: #003300;
}

.about-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.about-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-container {
        padding: 20px;
    }
    .about-section h2 {
        font-size: 26px;
    }
    .about-section h3 {
        font-size: 20px;
    }
}

/**/
.rating-section {
    background: #f7f7f7;
    padding: 60px 20px;
    color: #222;
    font-family: sans-serif;
}

.rating-section .about-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.rating-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3e0064;
}

.rating-section h3 {
    font-size: 24px;
    margin-top: 30px;
    color: #003300;
}

.rating-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.rating-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.rating-section ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .rating-section .about-container {
        padding: 20px;
    }
    .rating-section h2 {
        font-size: 26px;
    }
    .rating-section h3 {
        font-size: 20px;
    }
}
.privacy-section {
    background: #f7f7f7;
    padding: 60px 20px;
    color: #222;
    font-family: sans-serif;
}

.privacy-section .about-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3e0064;
}

.privacy-section h3 {
    font-size: 24px;
    margin-top: 30px;
    color: #003300;
}

.privacy-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .privacy-section .about-container {
        padding: 20px;
    }
    .privacy-section h2 {
        font-size: 26px;
    }
    .privacy-section h3 {
        font-size: 20px;
    }
}
/**/
.responsible-section {
    background: #f7f7f7;
    padding: 60px 20px;
    color: #222;
    font-family: sans-serif;
}

.responsible-section .about-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.responsible-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3e0064;
}

.responsible-section h3 {
    font-size: 24px;
    margin-top: 30px;
    color: #003300;
}

.responsible-section p,
.responsible-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.responsible-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .responsible-section .about-container {
        padding: 20px;
    }
    .responsible-section h2 {
        font-size: 26px;
    }
    .responsible-section h3 {
        font-size: 20px;
    }
}
/**/
.contact-section {
    background: #f7f7f7;
    padding: 60px 20px;
    font-family: sans-serif;
    color: #222;
}

.contact-section .about-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #ff9800;
    text-align: center;
}

.contact-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-form .form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(to right, #ffa726, #fb8c00);
    color: #fff;
    border: none;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.confirmation-message {
    margin-top: 15px;
    font-size: 16px;
    color: green;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 26px;
    }
    .contact-form .form-row {
        flex-direction: column;
    }
}
/**/
.cookie-section {
    background: #f7f7f7;
    padding: 60px 20px;
    font-family: sans-serif;
    color: #222;
}

.cookie-section .about-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cookie-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3e0064;
}

.cookie-section h3 {
    font-size: 24px;
    margin-top: 30px;
    color: #003300;
}

.cookie-section p,
.cookie-section li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cookie-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.cookie-section a {
    color: #007bff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-section .about-container {
        padding: 20px;
    }
    .cookie-section h2 {
        font-size: 26px;
    }
    .cookie-section h3 {
        font-size: 20px;
    }
}
/**/
.combined-info-faq {
    background: #f7f7f7;
    padding: 60px 20px;
    font-family: sans-serif;
    color: #222;
}

.combined-info-faq .about-container {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.combined-info-faq h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #3e0064;
}

.combined-info-faq .faq-item h3 {
    font-size: 20px;
    color: #003300;
    margin-top: 25px;
}

.combined-info-faq .faq-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.combined-info-faq a {
    color: #007bff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .combined-info-faq .about-container {
        padding: 20px;
    }
    .combined-info-faq h2 {
        font-size: 26px;
    }
    .combined-info-faq .faq-item h3 {
        font-size: 18px;
    }
}
.combined-info-faq {
    background: #f4f4f4;
    padding: 60px 20px;
    font-family: sans-serif;
    color: #1a1a1a;
}

.combined-info-faq .about-container {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.combined-info-faq h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #3e0064;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.combined-info-faq h3 {
    font-size: 22px;
    margin-top: 30px;
    color: #004400;
}

.combined-info-faq p {
    font-size: 16px;
    line-height: 1.8;
    margin: 15px 0;
}

.combined-info-faq ul {
    padding-left: 20px;
    margin: 10px 0 30px;
}

.combined-info-faq li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 16px;
}

.combined-info-faq a {
    color: #007bff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .combined-info-faq .about-container {
        padding: 30px 20px;
    }

    .combined-info-faq h2 {
        font-size: 26px;
    }

    .combined-info-faq h3 {
        font-size: 20px;
    }
}
.age-disclaimer-enhanced {
    background: #fff;
    padding: 2.5rem;
    border-top: 2px solid #6700cc;
    font-family: sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    max-width: 960px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}
.age-disclaimer-enhanced h3 {
    font-size: 1.8rem;
    color: #6700cc;
    margin-bottom: 1rem;
}
.age-disclaimer-enhanced h4 {
    margin-top: 2rem;
    font-size: 1.3rem;
    color: #a30093;
}
.age-disclaimer-enhanced ul.support-links {
    padding-left: 1.2rem;
    margin-top: 1rem;
}
.age-disclaimer-enhanced ul.support-links li {
    margin-bottom: 0.75rem;
}
.age-disclaimer-enhanced a {
    color: #6700cc;
    text-decoration: underline;
}
.age-disclaimer-enhanced a:hover {
    text-decoration: none;
}
.warning-box {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}
.disclaimer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #ddd;
    font-weight: 500;
}
@media (max-width: 600px) {
    .age-disclaimer-enhanced {
        padding: 1.5rem;
        font-size: 0.95rem;
    }
    .age-disclaimer-enhanced h3 {
        font-size: 1.4rem;
    }
    .age-disclaimer-enhanced h4 {
        font-size: 1.1rem;
    }
}
