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

.emerald-isle-body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.65;
    color: #f0f9ff;
    background: radial-gradient(ellipse at top, #064e3b 0%, #1e3a8a 30%, #0f172a 60%, #020617 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.emerald-isle-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(52, 211, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.slainte-age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 59, 0.98);
    backdrop-filter: blur(25px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeInEmerald 0.8s ease-out;
}

@keyframes fadeInEmerald {
    from { opacity: 0; }
    to { opacity: 1; }
}

.verification-craic-container {
    background: linear-gradient(145deg, #065f46 0%, #047857 25%, #059669 50%, #10b981 100%);
    padding: 4rem;
    border-radius: 28px;
    text-align: center;
    max-width: 580px;
    box-shadow: 
        0 25px 50px rgba(6, 78, 59, 0.6),
        0 0 0 1px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid #10b981;
    margin: 2rem;
    position: relative;
    overflow: hidden;
}

.verification-craic-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(52, 211, 153, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.shamrock-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: shamrockSpin 3s ease-in-out infinite;
}

@keyframes shamrockSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-5deg) scale(1.1); }
}

.failte-heading {
    color: #f0fdf4;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5, #a7f3d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
    position: relative;
    z-index: 1;
}

.gaeilge-text {
    color: #d1fae5;
    margin-bottom: 1.8rem;
    line-height: 1.75;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.responsible-craic {
    color: #a7f3d0;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.help-link {
    color: #34d399;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.help-link:hover {
    color: #6ee7b7;
    border-bottom-color: #6ee7b7;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
}

.ceol-verification-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.slainte-confirm-btn, .nios-decline-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.slainte-confirm-btn {
    background: linear-gradient(135deg, #16a34a, #15803d, #166534);
    color: #f0fdf4;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.4);
    border: 2px solid #22c55e;
}

.slainte-confirm-btn:hover {
    background: linear-gradient(135deg, #15803d, #166534, #14532d);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(22, 101, 52, 0.6);
}

.nios-decline-btn {
    background: linear-gradient(135deg, #dc2626, #b91c1c, #991b1b);
    color: #fef2f2;
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.4);
    border: 2px solid #ef4444;
}

.nios-decline-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b, #7f1d1d);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(153, 27, 27, 0.6);
}

.rud-rejection-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(127, 29, 29, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.slán-container {
    background: linear-gradient(145deg, #7f1d1d, #991b1b, #b91c1c);
    padding: 4rem;
    border-radius: 28px;
    text-align: center;
    max-width: 480px;
    box-shadow: 0 25px 50px rgba(127, 29, 29, 0.8);
    border: 3px solid #ef4444;
    margin: 2rem;
}

.sad-shamrock {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: sadShamrock 2s ease-in-out infinite;
}

@keyframes sadShamrock {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-10deg); }
}

.slán-heading {
    color: #fecaca;
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
    font-weight: 800;
}

.comeback-later {
    color: #fed7d7;
    font-size: 1.15rem;
    font-weight: 500;
}

.dublin-top-navigation {
    background: rgba(6, 78, 59, 0.95);
    backdrop-filter: blur(25px);
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.3);
}

.temple-bar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.guinness-brand-container {
    text-align: left;
    position: relative;
}

.dublin-brand-title {
    color: #ecfdf5;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    background: linear-gradient(135deg, #34d399, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(16, 185, 129, 0.4);
    animation: brandGlow 4s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { text-shadow: 0 0 40px rgba(16, 185, 129, 0.4); }
    50% { text-shadow: 0 0 60px rgba(16, 185, 129, 0.7), 0 0 80px rgba(52, 211, 153, 0.3); }
}

.craic-brand-subtitle {
    color: #a7f3d0;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    opacity: 0.9;
}

.trinity-college-navigation {
    margin-top: 1.5rem;
}

.grafton-street-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.navigation-ceol {
    color: #d1fae5;
    text-decoration: none;
    font-weight: 700;
    padding: 1rem 1.8rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    border: 2px solid transparent;
}

.navigation-ceol:hover,
.navigation-ceol.active {
    color: #ecfdf5;
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(52, 211, 153, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.liffey-page-content {
    min-height: calc(100vh - 280px);
}

.phoenix-park-hero {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1), rgba(34, 197, 94, 0.08));
    position: relative;
    overflow: hidden;
}

.phoenix-park-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(52, 211, 153, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.molly-malone-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ireland-flag-decoration {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: flagWave 3s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(3deg) scale(1.1); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-3deg) scale(1.1); }
}

.dublin-castle-title {
    color: #ecfdf5;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #34d399, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(16, 185, 129, 0.5);
    line-height: 1.1;
    animation: titleShimmer 4s ease-in-out infinite;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.wicklow-mountains-subtitle {
    color: #d1fae5;
    font-size: 1.4rem;
    font-weight: 600;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

.celtic-pattern-decoration {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #34d399, #10b981, #34d399, transparent);
    margin: 3rem auto 0;
    border-radius: 2px;
    animation: celticGlow 3s ease-in-out infinite;
}

@keyframes celticGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(16, 185, 129, 0.5); }
    50% { box-shadow: 0 0 30px rgba(52, 211, 153, 0.8); }
}

.kilmainham-casino-showcase {
    padding: 6rem 2rem;
    background: rgba(6, 78, 59, 0.3);
}

.st-patricks-showcase-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 3rem;
}

.casino-ard-fheis {
    background: linear-gradient(145deg, #065f46 0%, #047857 30%, #059669 70%, #10b981 100%);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(6, 78, 59, 0.5),
        0 0 0 1px rgba(16, 185, 129, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 3px solid #10b981;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: visible;
}

.casino-ard-fheis:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 40px 80px rgba(6, 78, 59, 0.6),
        0 0 0 1px rgba(52, 211, 153, 0.4),
        0 0 100px rgba(16, 185, 129, 0.3);
}

.premium-tier-craic {
    border-color: #fbbf24;
    background: linear-gradient(145deg, #065f46 0%, #92400e 20%, #047857 50%, #10b981 100%);
    position: relative;
}

.premium-tier-craic::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #fbbf24;
    z-index: 10;
}

.featured-tier-craic {
    border-color: #3b82f6;
    background: linear-gradient(145deg, #065f46 0%, #1e3a8a 20%, #047857 50%, #10b981 100%);
}

.standard-tier-craic {
    border-color: #34d399;
}

.best-craic-ribbon, .featured-craic-ribbon, .good-craic-ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    z-index: 10;
    text-transform: uppercase;
}

.best-craic-ribbon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #92400e;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.featured-craic-ribbon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #dbeafe;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.good-craic-ribbon {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: #064e3b;
    box-shadow: 0 4px 15px rgba(52, 211, 153, 0.4);
}

.taoiseach-card-header {
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(6, 78, 59, 0.6);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.2);
}

.casino-crest-logo {
    flex: 1;
}

.heraldic-brand-image {
    max-height: 70px;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    transition: transform 0.3s ease;
}

.casino-ard-fheis:hover .heraldic-brand-image {
    transform: scale(1.05);
}

.irish-rating-badge {
    text-align: right;
}

.celtic-star-rating {
    color: #fbbf24;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
    animation: starTwinkle 2s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { text-shadow: 0 0 15px rgba(251, 191, 36, 0.6); }
    50% { text-shadow: 0 0 25px rgba(251, 191, 36, 0.9); }
}

.gaelic-numeric-score {
    color: #ecfdf5;
    font-weight: 900;
    font-size: 1.1rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dublin-pub-content {
    padding: 2.5rem;
}

.casino-tír-name {
    color: #ecfdf5;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.leprechaun-bonus-details {
    margin-bottom: 2.5rem;
    text-align: center;
    padding: 2rem;
    background: rgba(6, 78, 59, 0.5);
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.leprechaun-bonus-details::before {
    content: '🍀';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 2rem;
    opacity: 0.3;
    animation: leprechaunSpin 4s linear infinite;
}

@keyframes leprechaunSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pot-of-gold-value {
    color: #fbbf24;
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    text-shadow: 0 0 25px rgba(251, 191, 36, 0.6);
    animation: goldShine 3s ease-in-out infinite;
}

@keyframes goldShine {
    0%, 100% { text-shadow: 0 0 25px rgba(251, 191, 36, 0.6); }
    50% { text-shadow: 0 0 40px rgba(251, 191, 36, 0.9), 0 0 60px rgba(245, 158, 11, 0.5); }
}

.shamrock-bonus-label {
    color: #a7f3d0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.5rem;
}

.irish-hospitality-features {
    list-style: none;
    margin-bottom: 2.5rem;
    display: grid;
    gap: 1rem;
}

.feature-craic {
    color: #d1fae5;
    padding: 1rem;
    position: relative;
    padding-left: 3rem;
    font-weight: 600;
    border-radius: 12px;
    background: rgba(6, 78, 59, 0.3);
    border: 1px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.feature-craic::before {
    content: "☘️";
    position: absolute;
    left: 1rem;
    font-size: 1.2rem;
    animation: shamrockBounce 2s ease-in-out infinite;
}

@keyframes shamrockBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.feature-craic:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateX(5px);
}

.irish-payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-crest {
    height: 35px;
    object-fit: contain;
    border-radius: 8px;
    background: #ecfdf5;
    padding: 6px;
    box-shadow: 0 6px 20px rgba(6, 78, 59, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #10b981;
}

.payment-crest:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.pub-closing-time-actions {
    padding: 2.5rem;
    background: rgba(6, 78, 59, 0.6);
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
}

.slainte-action-button {
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slainte-action-button::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.6s ease;
}

.slainte-action-button:hover::before {
    left: 100%;
}

.golden-harp-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
    color: #92400e;
    border: 2px solid #fbbf24;
}

.golden-harp-btn:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706, #b45309);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
}

.emerald-isle-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
    color: #dbeafe;
    border: 2px solid #3b82f6;
}

.emerald-isle-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.claddagh-ring-btn {
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    color: #064e3b;
    border: 2px solid #34d399;
}

.claddagh-ring-btn:hover {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(52, 211, 153, 0.5);
}

.seisiún-info-link {
    color: #a7f3d0;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid transparent;
}

.seisiún-info-link:hover {
    color: #ecfdf5;
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(52, 211, 153, 0.3);
    transform: translateY(-2px);
}

.book-of-kells-information {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.8), rgba(30, 41, 59, 0.6));
}

.trinity-library-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.irish-wisdom-card {
    background: linear-gradient(145deg, #065f46, #047857, #059669);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.4);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.irish-wisdom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.irish-wisdom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.5);
    border-color: rgba(52, 211, 153, 0.5);
}

.celtic-knot-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: celticPulse 3s ease-in-out infinite;
}

@keyframes celticPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.wisdom-ó-title {
    color: #ecfdf5;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.seanchaí-wisdom-text {
    color: #d1fae5;
    line-height: 1.8;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.dublin-docklands-footer {
    background: linear-gradient(135deg, #065f46, #047857, #059669, #10b981);
    border-top: 3px solid rgba(52, 211, 153, 0.3);
    position: relative;
}

.dublin-docklands-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.irish-hospitality-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-céad-míle-fáilte {
    color: #d1fae5;
}

.dublin-footer-brand {
    color: #ecfdf5;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
}

.irish-blessing-description {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #a7f3d0;
    font-weight: 500;
}

.social-media-craic {
    display: flex;
    gap: 2rem;
}

.social-ceol-link {
    display: inline-block;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(52, 211, 153, 0.3);
}

.social-ceol-link:hover {
    background: rgba(52, 211, 153, 0.3);
    transform: translateY(-4px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.social-shamrock-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.irish-section-title {
    color: #ecfdf5;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

.irish-section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #34d399, #10b981);
    border-radius: 2px;
}

.dublin-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-navigation-ceol {
    color: #a7f3d0;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    display: block;
    font-weight: 600;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.footer-navigation-ceol:hover {
    color: #ecfdf5;
    border-left-color: #34d399;
    padding-left: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
}

.irish-responsibility-badges {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.responsibility-shamrock {
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
    background: #ecfdf5;
    padding: 8px;
    box-shadow: 0 6px 20px rgba(6, 78, 59, 0.3);
    transition: all 0.3s ease;
    border: 2px solid #10b981;
}

.responsibility-shamrock:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.irish-blessing-warning {
    font-size: 1rem;
    color: #a7f3d0;
    font-style: italic;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    padding: 1rem;
    background: rgba(6, 78, 59, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.dublin-bay-bottom-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-top: 2px solid rgba(52, 211, 153, 0.2);
    text-align: center;
    color: #a7f3d0;
    background: rgba(6, 78, 59, 0.5);
    position: relative;
    z-index: 1;
}

.irish-copyright-notice {
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: #d1fae5;
}

.legal-fineprint-disclaimer {
    font-size: 1rem;
    color: #a7f3d0;
    font-style: italic;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .temple-bar-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .grafton-street-menu {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .dublin-castle-title {
        font-size: 2.8rem;
    }
    
    .wicklow-mountains-subtitle {
        font-size: 1.2rem;
    }
    
    .st-patricks-showcase-wrapper {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .kilmainham-casino-showcase {
        padding: 4rem 1rem;
    }
    
    .book-of-kells-information {
        padding: 4rem 1rem;
    }
    
    .trinity-library-wrapper {
        grid-template-columns: 1fr;
    }
    
    .irish-hospitality-wrapper {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .verification-craic-container {
        margin: 1rem;
        padding: 3rem;
    }
    
    .ceol-verification-buttons {
        flex-direction: column;
    }
    
    .slainte-confirm-btn, .nios-decline-btn {
        width: 100%;
    }
    
    .social-media-craic {
        justify-content: center;
    }
    
    .irish-responsibility-badges {
        justify-content: center;
    }
    
    .irish-payment-methods {
        justify-content: center;
    }
    
    .pub-closing-time-actions {
        flex-direction: column;
        text-align: center;
    }
    
    .slainte-action-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dublin-castle-title {
        font-size: 2.2rem;
    }
    
    .verification-craic-container {
        padding: 2.5rem;
    }
    
    .dublin-pub-content {
        padding: 2rem;
    }
    
    .pub-closing-time-actions {
        padding: 2rem;
    }
    
    .irish-wisdom-card {
        padding: 2rem;
    }
}
.important-disclaimer-banner {
    background: linear-gradient(135deg, #7f1d1d, #991b1b, #b91c1c);
    color: #fecaca;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #dc2626;
    box-shadow: 0 2px 10px rgba(127, 29, 29, 0.3);
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.disclaimer-icon {
    font-size: 1.2rem;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.disclaimer-content a {
    color: #fed7d7;
    text-decoration: underline;
    font-weight: 700;
}

.disclaimer-content a:hover {
    color: #fecaca;
}
.disclaimer-age-verification {
    background: rgba(6, 78, 59, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #34d399;
}

.disclaimer-age-verification p {
    color: #a7f3d0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}
.hero-disclaimer-notice {
    background: rgba(6, 78, 59, 0.4);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.hero-disclaimer-notice p {
    color: #d1fae5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.casino-disclaimer-small {
    background: rgba(6, 78, 59, 0.2);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.8rem;
    margin-top: 1rem;
    border-radius: 0 0 8px 8px;
}

.casino-disclaimer-small p {
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-style: italic;
}
.general-disclaimer-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(6, 78, 59, 0.6));
    padding: 3rem 2rem;
    border-top: 2px solid rgba(16, 185, 129, 0.3);
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.disclaimer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-heading {
    color: #ecfdf5;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-text {
    color: #d1fae5;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}
.responsible-gambling-section {
    background: linear-gradient(135deg, #7f1d1d, #991b1b, #b91c1c);
    padding: 4rem 2rem;
    border-top: 3px solid #dc2626;
}

.responsible-gambling-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.responsible-heading {
    color: #fecaca;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(254, 202, 202, 0.5);
}

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

.responsible-text {
    color: #fed7d7;
}

.responsible-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.responsible-tips li {
    color: #fed7d7;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.responsible-tips li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.help-organizations h4 {
    color: #fecaca;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.help-links {
    display: grid;
    gap: 1rem;
}

.help-org-link {
    display: block;
    background: rgba(254, 202, 202, 0.1);
    color: #fecaca;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(254, 202, 202, 0.2);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.help-org-link:hover {
    background: rgba(254, 202, 202, 0.2);
    border-color: rgba(254, 202, 202, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(127, 29, 29, 0.3);
}
.final-disclaimers {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 2px solid rgba(52, 211, 153, 0.2);
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-block {
    background: rgba(6, 78, 59, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
}

.disclaimer-block h5 {
    color: #ecfdf5;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-block p {
    color: #a7f3d0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
@media (max-width: 768px) {
    .disclaimer-content {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-disclaimer-notice {
        margin: 1.5rem auto;
        padding: 1rem;
    }
    
    .responsible-gambling-section {
        padding: 3rem 1rem;
    }
    
    .general-disclaimer-section {
        padding: 2rem 1rem;
    }
    
    .disclaimer-heading {
        font-size: 1.5rem;
    }
    
    .responsible-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .important-disclaimer-banner {
        padding: 1rem 0;
    }
    
    .disclaimer-content {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
    
    .casino-disclaimer-small {
        padding: 0.6rem;
    }
    
    .casino-disclaimer-small p {
        font-size: 0.7rem;
    }
    
    .responsible-tips li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .help-org-link {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .disclaimer-block {
        padding: 1rem;
    }
}
.important-disclaimer-banner {
    background: linear-gradient(135deg, #7f1d1d, #991b1b, #b91c1c);
    color: #fecaca;
    padding: 0.8rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid #dc2626;
    box-shadow: 0 2px 10px rgba(127, 29, 29, 0.3);
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.disclaimer-icon {
    font-size: 1.2rem;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.disclaimer-content a {
    color: #fed7d7;
    text-decoration: underline;
    font-weight: 700;
}

.disclaimer-content a:hover {
    color: #fecaca;
}
.disclaimer-age-verification {
    background: rgba(6, 78, 59, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #34d399;
}

.disclaimer-age-verification p {
    color: #a7f3d0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}   
.hero-disclaimer-notice {
    background: rgba(6, 78, 59, 0.4);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: center;
}

.hero-disclaimer-notice p {
    color: #d1fae5;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}
.casino-disclaimer-small {
    background: rgba(6, 78, 59, 0.2);
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.8rem;
    margin-top: 1rem;
    border-radius: 0 0 8px 8px;
}

.casino-disclaimer-small p {
    color: #94a3b8;
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-style: italic;
}
.general-disclaimer-section {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(6, 78, 59, 0.6));
    padding: 3rem 2rem;
    border-top: 2px solid rgba(16, 185, 129, 0.3);
    border-bottom: 2px solid rgba(16, 185, 129, 0.3);
}

.disclaimer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-heading {
    color: #ecfdf5;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-text {
    color: #d1fae5;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

.responsible-gambling-section {
    background: linear-gradient(135deg, #7f1d1d, #991b1b, #b91c1c);
    padding: 4rem 2rem;
    border-top: 3px solid #dc2626;
}

.responsible-gambling-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.responsible-heading {
    color: #fecaca;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2.5rem;
    text-shadow: 0 0 20px rgba(254, 202, 202, 0.5);
}

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

.responsible-text {
    color: #fed7d7;
}

.responsible-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.responsible-tips li {
    color: #fed7d7;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 500;
}

.responsible-tips li::before {
    content: "⚠️";
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

.help-organizations h4 {
    color: #fecaca;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: center;
}

.help-links {
    display: grid;
    gap: 1rem;
}

.help-org-link {
    display: block;
    background: rgba(254, 202, 202, 0.1);
    color: #fecaca;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid rgba(254, 202, 202, 0.2);
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.help-org-link:hover {
    background: rgba(254, 202, 202, 0.2);
    border-color: rgba(254, 202, 202, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(127, 29, 29, 0.3);
}
.final-disclaimers {
    margin-bottom: 2rem;
    padding: 2rem 0;
    border-top: 2px solid rgba(52, 211, 153, 0.2);
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-block {
    background: rgba(6, 78, 59, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
}

.disclaimer-block h5 {
    color: #ecfdf5;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-block p {
    color: #a7f3d0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}
.footer-céad-míle-fáilte.responsibility-craic {
    grid-column: 1 / -1;
    width: 100%;
    max-width: none;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(52, 211, 153, 0.3);
}
.dublin-responsible-organizations {
    margin-bottom: 2rem;
    width: 100%;
}

.first-row-organizations,
.second-row-organizations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    width: 100%;
}

.org-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.org-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.org-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: rgb(17, 71, 25);
    padding: 6px;
    border-radius: 8px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.org-logo:hover {
    border-color: rgba(52, 211, 153, 0.4);
}

.age-warning-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto 0;
    padding: 2rem;
    background: rgba(127, 29, 29, 0.2);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    max-width: 500px;
}

.age-warning-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.age-warning-text {
    color: #fecaca;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

.irish-blessing-warning {
    font-size: 1rem;
    color: #a7f3d0;
    font-style: italic;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    padding: 1rem;
    background: rgba(6, 78, 59, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-top: 1rem;
}
@media (max-width: 768px) {
    .first-row-organizations,
    .second-row-organizations {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .org-logo {
        height: 40px;
        padding: 4px;
    }
    
    .age-warning-section {
        padding: 1.5rem;
        margin-top: 1.5rem;
        max-width: 90%;
    }
    
    .age-warning-logo {
        height: 60px;
    }
    
    .age-warning-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .first-row-organizations,
    .second-row-organizations {
        gap: 1rem;
        justify-content: space-around;
    }
    
    .org-logo {
        height: 35px;
        padding: 3px;
    }
    
    .age-warning-logo {
        height: 50px;
    }
    
    .age-warning-text {
        font-size: 0.9rem;
    }
    
    .irish-blessing-warning {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}
@media (max-width: 768px) {
    .disclaimer-content {
        flex-direction: column;
        gap: 0.3rem;
        font-size: 0.8rem;
    }
    
    .responsible-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .disclaimer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-disclaimer-notice {
        margin: 1.5rem auto;
        padding: 1rem;
    }
    
    .responsible-gambling-section {
        padding: 3rem 1rem;
    }
    
    .general-disclaimer-section {
        padding: 2rem 1rem;
    }
    
    .disclaimer-heading {
        font-size: 1.5rem;
    }
    
    .responsible-heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .important-disclaimer-banner {
        padding: 1rem 0;
    }
    
    .disclaimer-content {
        font-size: 0.75rem;
        padding: 0 1rem;
    }
    
    .casino-disclaimer-small {
        padding: 0.6rem;
    }
    
    .casino-disclaimer-small p {
        font-size: 0.7rem;
    }
    
    .responsible-tips li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
    
    .help-org-link {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .disclaimer-block {
        padding: 1rem;
    }
}
.privacy-policy-content {
      padding: 4rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .policy-card {
      background: linear-gradient(145deg, #065f46, #047857, #059669);
      padding: 3rem;
      border-radius: 24px;
      border: 2px solid rgba(16, 185, 129, 0.3);
      box-shadow: 0 25px 50px rgba(6, 78, 59, 0.4);
      position: relative;
      overflow: hidden;
    }

    .policy-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .policy-title {
      color: #ecfdf5;
      font-size: 1.8rem;
      font-weight: 900;
      margin-bottom: 2rem;
      background: linear-gradient(135deg, #34d399, #10b981);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .policy-text {
      color: #d1fae5;
      line-height: 1.8;
      font-size: 1rem;
      position: relative;
      z-index: 1;
    }

    .policy-text h4 {
      color: #a7f3d0;
      font-size: 1.2rem;
      font-weight: 700;
      margin: 2rem 0 1rem 0;
      padding-left: 1rem;
      border-left: 3px solid #34d399;
    }

    .policy-text p {
      margin-bottom: 1.5rem;
    }

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

    .policy-list li {
      padding: 0.8rem 0 0.8rem 2.5rem;
      position: relative;
      border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    }

    .policy-list li::before {
      content: "☘️";
      position: absolute;
      left: 0;
      font-size: 1.2rem;
      top: 0.8rem;
    }

    .contact-details {
      background: rgba(6, 78, 59, 0.3);
      padding: 2rem;
      border-radius: 16px;
      border: 1px solid rgba(16, 185, 129, 0.2);
      margin-top: 2rem;
    }

    .contact-item {
      color: #a7f3d0;
      padding: 1rem;
      border-bottom: 1px solid rgba(16, 185, 129, 0.1);
      font-size: 1rem;
    }

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

    .contact-item strong {
      color: #ecfdf5;
      display: inline-block;
      min-width: 140px;
      font-weight: 700;
    }

    .footer-navigation-ceol.active {
      color: #34d399;
      font-weight: 800;
    }

    @media (max-width: 768px) {
      .privacy-policy-content {
        padding: 3rem 1rem;
      }
      
      .policy-card {
        padding: 2rem;
      }
      
      .policy-title {
        font-size: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
      }
      
      .contact-item strong {
        display: block;
        margin-bottom: 0.5rem;
        min-width: auto;
      }
    }

    @media (max-width: 480px) {
      .policy-card {
        padding: 1.5rem;
      }
      
      .policy-title {
        font-size: 1.3rem;
      }
      
      .policy-text {
        font-size: 0.95rem;
      }
      
      .contact-details {
        padding: 1.5rem;
      }
    }
.contact-form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.8), rgba(30, 41, 59, 0.6));
    min-height: 70vh;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-card {
    background: linear-gradient(145deg, #065f46, #047857, #059669);
    padding: 4rem;
    border-radius: 28px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-form-title {
    color: #ecfdf5;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.contact-form-subtitle {
    color: #a7f3d0;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}
.dublin-contact-form {
    text-align: left;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: #d1fae5;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    background: rgba(6, 78, 59, 0.4);
    color: #ecfdf5;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #34d399;
    background: rgba(6, 78, 59, 0.6);
    box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
    transform: translateY(-2px);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a7f3d0;
    opacity: 0.7;
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #065f46;
    color: #ecfdf5;
    padding: 0.5rem;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    line-height: 1.6;
}

.form-checkbox {
    appearance: none;
    width: 0;
    height: 0;
    position: absolute;
    opacity: 0;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(16, 185, 129, 0.5);
    border-radius: 6px;
    background: rgba(6, 78, 59, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-custom::after {
    content: '✓';
    color: #ecfdf5;
    font-weight: 900;
    font-size: 14px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.form-checkbox:checked + .checkbox-custom {
    background: linear-gradient(135deg, #34d399, #10b981);
    border-color: #34d399;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.4);
}

.form-checkbox:checked + .checkbox-custom::after {
    opacity: 1;
    transform: scale(1);
}

.checkbox-text {
    color: #d1fae5;
    font-size: 0.95rem;
    line-height: 1.5;
}

.policy-link {
    color: #34d399;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #6ee7b7;
    text-decoration: underline;
}
.form-actions {
    text-align: center;
    margin-top: 3rem;
}

.submit-button {
    background: linear-gradient(135deg, #16a34a, #15803d, #166534);
    color: #f0fdf4;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.4);
    border: 2px solid #22c55e;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.submit-button::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.6s ease;
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:hover {
    background: linear-gradient(135deg, #15803d, #166534, #14532d);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(22, 101, 52, 0.6);
}

.submit-button:active {
    transform: translateY(-2px) scale(1.02);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-icon {
    font-size: 1.3rem;
    animation: shamrockSpin 3s ease-in-out infinite;
}
.thankyou-content-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.8), rgba(30, 41, 59, 0.6));
    min-height: 70vh;
}

.thankyou-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.thankyou-card {
    background: linear-gradient(145deg, #065f46, #047857, #059669);
    padding: 4rem;
    border-radius: 28px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.thankyou-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.thankyou-title {
    color: #ecfdf5;
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #34d399, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.thankyou-message {
    position: relative;
    z-index: 1;
    text-align: left;
}

.thankyou-text {
    color: #d1fae5;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: center;
}

.next-steps,
.continue-browsing {
    background: rgba(6, 78, 59, 0.3);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    margin-bottom: 2.5rem;
}

.steps-title,
.browse-title {
    color: #a7f3d0;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 2rem;
}

.steps-title::before,
.browse-title::before {
    content: "🍀";
    position: absolute;
    left: 0;
    font-size: 1.3rem;
}

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

.steps-list li {
    color: #d1fae5;
    padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    font-weight: 500;
    line-height: 1.6;
}

.steps-list li::before {
    content: "☘️";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: 0.8rem;
}

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

.browse-text {
    color: #d1fae5;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quick-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-link-btn {
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
    color: #dbeafe;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.quick-link-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}
@media (max-width: 768px) {
    .contact-form-section,
    .thankyou-content-section {
        padding: 4rem 1rem;
    }
    
    .contact-form-card,
    .thankyou-card {
        padding: 2.5rem;
    }
    
    .contact-form-title,
    .thankyou-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checkbox-group {
        align-items: flex-start;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-link-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .next-steps,
    .continue-browsing {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-form-card,
    .thankyou-card {
        padding: 2rem;
    }
    
    .contact-form-title,
    .thankyou-title {
        font-size: 1.6rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem;
    }
    
    .submit-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .thankyou-text {
        font-size: 1.1rem;
    }
    
    .steps-title,
    .browse-title {
        font-size: 1.2rem;
    }
}