:root {
    --holiday-color: #dc3545;
    --today-color: #198754;
    --today-border: #0d5a38
}

body {
    background-color: #f8f9fa;
    overflow-x: hidden
}

.view-toggle {
    background-color: #fff;
    border-radius: 50px;
    padding: .25rem;
    display: inline-flex;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.view-toggle .btn {
    border-radius: 50px;
    padding: .5rem 1.5rem;
    border: none;
    transition: .3s
}

.view-toggle .btn.active {
    background-color: #2b578b;
    color: #fff
}

.view-toggle .btn:not(.active) {
    background-color: transparent;
    color: #6c757d
}

.row {
    --bs-gutter-x: 5px;
    --bs-gutter-y: -17px;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x))
}

.month-card {
    background-color: #fff;
    border-radius: 12px;
    padding: .85rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    margin-bottom: 1.5rem;
    transition: .3s
}

.month-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
    transform: translateY(-2px)
}

.mini-day.today,
.mini-day.today.holiday {
    box-shadow: 0 0 0 3px var(--today-border)
}

.month-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0;
    padding-bottom: .5rem;
    border-bottom: 1px solid #667eea
}

.mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .2rem
}

.mini-day-header {
    text-align: center;
    font-weight: 600;
    padding: .5rem 0;
    color: #6c757d;
    font-size: .75rem
}

.mini-day {
    aspect-ratio: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    background-color: #f8f9fa;
    transition: .2s;
    cursor: default;
    position: relative
}

.mini-day.other-month {
    color: #adb5bd;
    background-color: transparent
}

.mini-day.current-month {
    background-color: #f8f9fa;
    color: #333
}

.mini-day.today {
    background-color: var(--today-color);
    color: #fff;
    font-weight: 700;
    z-index: 2
}

.mini-day.holiday {
    background-color: var(--holiday-color);
    color: #fff;
    font-weight: 700;
    cursor: pointer
}

.mini-day.holiday:hover {
    background-color: #bb2d3b;
    transform: scale(1.1);
    z-index: 3
}

.mini-day.today.holiday {
    background: linear-gradient(135deg, var(--today-color) 0, var(--holiday-color) 100%)
}

.list-view-container {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

.table-container {
    overflow-x: auto
}

.badge-holiday-type {
    padding: .5rem 1rem;
    border-radius: 50px;
    font-weight: 500
}

.hidden {
    display: none !important
}

.legend {
    background-color: #fff;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    margin-bottom: 1rem;
    display: contents
}

.year-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #e9ecef
}

.current-year {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3f9cff;
    min-width: 80px;
    text-align: center
}

.holiday-type-name {
    color: #000 !important
}

.table-card-rows {
    border-collapse: separate;
    border-spacing: 0px 4px
}

.table-card-rows tbody tr {
    background: linear-gradient(to right, #fff 0, #f8f9fa 100%);
    box-shadow: 0 1px 10px rgba(0, 0, 0, .15);
    border-radius: 12px;
    transition: .3s
}

.table-card-rows tbody tr:hover {
    transform: scale(1.02)
}

.table-card-rows tbody td {
    padding: .3rem .8rem;
    border: none;
    vertical-align: middle
}

.table-card-rows tbody td:first-child {
    border-radius: 12px 0 0 12px;
    font-weight: 600
}

.table-card-rows tbody td:last-child {
    border-radius: 0 12px 12px 0
}

.filter-controls {
    display: flex;
    align-items: center;
    gap: 1rem
}

.filter-group,
.filter-label {
    display: flex;
    align-items: center
}

.filter-group {
    gap: .5rem;
    background: linear-gradient(135deg, #f8f9fa 0, #fff 100%);
    padding: .75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
    transition: .3s;
    border: 2px solid transparent
}

.filter-group:hover {
    box-shadow: 0 6px 16px rgba(102, 126, 234, .15);
    border-color: rgba(102, 126, 234, .2);
    transform: translateY(-2px)
}

.filter-label {
    font-size: .875rem;
    font-weight: 600;
    color: #495057;
    margin: 0;
    white-space: nowrap;
    gap: .25rem
}

.filter-label i {
    color: #667eea;
    font-size: 1rem
}

.filter-select {
    min-width: 160px;
    padding: .5rem 2.5rem .5rem .75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-weight: 500;
    font-size: .9rem;
    color: #333;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23667eea' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 14px;
    cursor: pointer;
    transition: .3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

.ad-banner-bottom,
.ad-banner-top {
    width: 100%;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    position: relative;
    min-height: 120px;
    display: flex;
    overflow: hidden
}

.filter-select:hover {
    border-color: #667eea;
    background-color: #f8f9ff
}

.filter-select:focus {
    outline: 0;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, .15);
    background-color: #fff
}

.filter-select option {
    padding: 12px 16px !important;
    font-size: .95rem !important;
    color: #333 !important;
    background-color: #fff !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: .2s !important;
    border-radius: 6px !important;
    margin: 2px 0 !important
}

.filter-select option:first-child {
    font-weight: 600 !important;
    color: #667eea !important;
    background-color: #f0f3ff !important;
    border-bottom: 2px solid #e9ecef !important;
    padding-bottom: 14px !important;
    margin-bottom: 6px !important
}

.filter-select option:hover {
    background: linear-gradient(135deg, #f0f3ff 0, #e8ecff 100%) !important;
    color: #667eea !important;
    padding-left: 20px !important;
    font-weight: 600 !important
}

.filter-select option:active,
.filter-select option:checked {
    background: linear-gradient(135deg, #667eea 0, #764ba2 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(102, 126, 234, .4) !important
}

.filter-select option:not(:first-child)::before {
    content: "▸ ";
    color: #667eea;
    font-weight: 700;
    margin-right: 8px
}

.filter-select option:checked::before {
    content: "✓ ";
    color: #fff
}

@-moz-document url-prefix() {
    .filter-select option {
        padding: 12px 16px;
        background-color: #fff
    }

    .filter-select option:hover {
        background-color: #f0f3ff;
        color: #667eea
    }

    .filter-select option:checked {
        background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
        color: #fff
    }
}

.filter-select:not([value=all]) {
    border-color: #667eea;
    font-weight: 600
}

.filter-group.active {
    background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
    border-color: #667eea
}

.filter-group.active .filter-label,
.filter-group.active .filter-label i {
    color: #fff
}

.filter-group.active .filter-select {
    background-color: rgba(255, 255, 255, .95);
    border-color: #fff;
    color: #667eea;
    font-weight: 600
}

.filter-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23667eea' viewBox='0 0 16 16'%3E%3Cpath d='M8 5L3 10h10z'/%3E%3C/svg%3E")
}

.legend-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.legend-title i {
    color: #667eea;
    font-size: 1.3rem
}

.ad-banner-top {
    background: linear-gradient(135deg, #f8f9fa 0, #fff 100%);
    margin-bottom: .5rem;
    align-items: center;
    justify-content: center
}

.ad-banner-bottom::before,
.ad-banner-top::before {
    content: 'ADVERTISEMENT';
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: .65rem;
    color: #999;
    font-weight: 600;
    letter-spacing: .5px;
    z-index: 1
}

.ad-content-bottom,
.ad-content-top {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.ad-banner-bottom {
    background: linear-gradient(135deg, #fff 0, #f8f9fa 100%);
    margin-top: .5rem;
    align-items: center;
    justify-content: center
}

.ad-popup-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .15);
    padding: .75rem 1rem;
    z-index: 1040;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
    border-top: 3px solid #667eea
}

.ad-popup-bottom.show,
.btn-modern-close:active {
    transform: translateY(0)
}

.ad-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative
}

.ad-popup-label {
    font-size: .65rem;
    color: #999;
    font-weight: 600;
    letter-spacing: .5px;
    position: absolute;
    top: -18px;
    left: 0
}

.ad-popup-body {
    flex: 1;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center
}

.ad-modal-overlay,
.ad-popup-close {
    right: 0;
    align-items: center;
    transition: .3s;
    display: flex
}

.ad-popup-close {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #dc3545;
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(220, 53, 69, .3)
}

.ad-modal-label,
.footer-links a i {
    font-size: .75rem
}

.ad-popup-close:hover {
    background: #bb2d3b;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(220, 53, 69, .4)
}

.ad-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    justify-content: center;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(4px)
}

.ad-modal-overlay.show {
    opacity: 1;
    visibility: visible
}

.ad-modal-container {
    background: #fff;
    border-radius: 16px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
    transform: scale(.9);
    transition: transform .3s
}

.ad-modal-overlay.show .ad-modal-container {
    transform: scale(1)
}

.ad-modal-header {
    padding: 1rem 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #667eea 0, #6888eefa 100%)
}

.ad-modal-label {
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
    letter-spacing: .5px
}

.ad-modal-close {
    background: #fff;
    color: #667eea;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: .3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2)
}

.ad-modal-body,
.footer-heading {
    align-items: center;
    display: flex
}

.ad-modal-close:hover {
    background: #f8f9fa;
    transform: rotate(90deg) scale(1.1)
}

.ad-modal-body {
    padding: 2rem;
    min-height: 300px;
    justify-content: center;
    text-align: center;
    overflow-y: auto
}

.ad-placeholder {
    background: linear-gradient(135deg, #f0f3ff 0, #e8ecff 100%);
    border: 2px dashed #667eea;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 100px;
    width: 100%
}

.ad-placeholder i {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: .5rem
}

.ad-placeholder-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
    margin: 0
}

.ad-placeholder-text {
    font-size: .9rem;
    color: #6c757d;
    margin: 0
}

@media (max-width:768px) {
    .mini-calendar-grid {
        gap: .2rem
    }

    .mini-day {
        font-size: .75rem
    }

    .mini-day-header {
        font-size: .65rem;
        padding: .3rem 0
    }

    .month-card {
        padding: .5rem
    }

    .month-title {
        font-size: 1.1rem
    }

    .filter-controls {
        width: 100%;
        flex-direction: column
    }

    .filter-group {
        width: 100%;
        justify-content: space-between
    }

    .filter-select {
        flex: 1;
        min-width: auto
    }

    .filter-select option {
        padding: 10px 14px !important;
        font-size: .9rem !important
    }

    .ad-banner-bottom,
    .ad-banner-top {
        min-height: 100px;
        padding: 0;
        margin-bottom: 1rem
    }

    .ad-popup-bottom {
        padding: .5rem .75rem
    }

    .ad-popup-body {
        min-height: 70px;
        padding-right: 40px
    }

    .ad-popup-close {
        width: 28px;
        height: 28px;
        font-size: 1rem
    }

    .ad-modal-container {
        width: 95%;
        max-height: 85vh
    }

    .ad-modal-header {
        padding: .75rem 1rem
    }

    .ad-modal-body {
        padding: 1.5rem 1rem;
        min-height: 250px
    }

    .ad-placeholder {
        padding: 1.5rem 1rem;
        min-height: 80px
    }

    .ad-placeholder i {
        font-size: 2rem
    }

    .ad-placeholder-title {
        font-size: 1rem
    }

    .ad-placeholder-text {
        font-size: .85rem
    }
}

@media (max-width:480px) {

    .ad-placeholder-text,
    .filter-label {
        font-size: .8rem
    }

    .filter-select {
        font-size: .85rem;
        padding: .4rem 2rem .4rem .6rem
    }

    .filter-select option {
        padding: 8px 12px !important;
        font-size: .85rem !important
    }

    .ad-banner-bottom::before,
    .ad-banner-top::before {
        font-size: .6rem;
        top: 6px;
        left: 8px
    }

    .ad-banner-bottom,
    .ad-banner-top {
        min-height: 80px;
        padding: 0;
        border-radius: 8px
    }

    .ad-popup-bottom {
        padding: .4rem .5rem
    }

    .ad-popup-label {
        font-size: .6rem;
        top: -16px
    }

    .ad-popup-body {
        min-height: 60px;
        font-size: .85rem
    }

    .ad-popup-close {
        width: 26px;
        height: 26px;
        font-size: .9rem;
        right: -5px
    }

    .ad-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.3rem
    }

    .ad-modal-body {
        padding: 1rem;
        min-height: 200px
    }

    .ad-placeholder {
        padding: 1rem;
        min-height: 60px
    }

    .ad-placeholder i {
        font-size: 1.5rem
    }

    .ad-placeholder-title {
        font-size: .9rem
    }
}

@media (max-width:360px) {

    .ad-banner-bottom,
    .ad-banner-top {
        min-height: 70px
    }

    .ad-popup-body {
        min-height: 50px;
        padding-right: 35px
    }
}

.footer-wrapper {
    position: relative;
    background: linear-gradient(45deg, #23a945 0, #0073ff9c 50%, #00b0ff 100%);
    color: #fff;
    overflow: hidden;
    animation: 10s ease-in-out infinite aurora
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(45deg, rgba(35, 169, 162, 0) 0, rgba(0, 176, 255, .3) 25%, rgba(102, 126, 234, .4) 50%, rgba(0, 176, 255, .3) 75%, rgba(35, 169, 162, 0) 100%);
    animation: 15s linear infinite aurora-footer;
    pointer-events: none
}

@keyframes aurora-footer {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(33.333%)
    }
}

.footer-content {
    padding: 2rem 0 1.5rem;
    position: relative;
    z-index: 2
}

.footer-contact,
.footer-links {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    gap: .5rem;
    position: relative;
    z-index: 2
}

.footer-heading i {
    font-size: 1.5rem
}

.footer-contact li,
.footer-links a,
.footer-text {
    font-size: .95rem;
    color: rgba(255, 255, 255, .95)
}

.footer-text {
    line-height: 1.7;
    position: relative;
    z-index: 2
}

.footer-links {
    margin: 0
}

.footer-links li {
    margin-bottom: .75rem
}

.footer-links a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: .3s
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(255, 255, 255, .5)
}

.footer-contact {
    margin: 0 0 1.5rem
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1rem
}

.social-icon,
.years-section {
    align-items: center;
    display: flex
}

.footer-contact li i {
    font-size: 1.1rem;
    min-width: 20px
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2
}

.social-icon {
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: .3s;
    font-size: 1.1rem;
    backdrop-filter: blur(10px)
}

.social-icon:hover {
    background-color: #fff;
    color: #23a9a2;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3)
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .2);
    text-align: center;
    position: relative;
    z-index: 2
}

.footer-bottom p {
    color: rgba(255, 255, 255, .95);
    font-size: .9rem;
    margin-bottom: 0
}

.footer-bottom .text-danger {
    color: #ff6b6b !important;
    animation: 1.5s ease-in-out infinite heartbeat
}

@keyframes heartbeat {

    0%,
    100%,
    20%,
    40% {
        transform: scale(1)
    }

    10%,
    30% {
        transform: scale(1.1)
    }
}

.footer-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0
}

.holiday-type-item.active {
    border: 3px solid #4dd0e1;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(77, 208, 225, .4)
}

.holiday-type-item.all-types-filter.active {
    border: 3px solid #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, .4)
}

.holiday-row.legend-filtered-highlight {
    background: linear-gradient(to right, #fff 0, #f8f9fa 100%);
    box-shadow: 0 1px 10px rgba(0, 0, 0, .15);
    border-radius: 12px;
    transition: .3s;
    z-index: 10;
    position: relative
}

.mini-day.holiday.legend-filtered-highlight-calendar {
    z-index: 10;
    transform: scale(1.2);
    --color: attr(style background-color, #4DD0E1)
}

.mini-day.holiday.legend-filtered-highlight-calendar:hover {
    transform: scale(1.3)
}

.mini-day.today.holiday.legend-filtered-highlight-calendar {
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--today-border)
}

.years-section {
    gap: .75rem;
    flex: 1;
    padding-right: 2rem;
    border-right: 2px solid #e9ecef
}

.country-section {
    display: flex;
    align-items: center;
    gap: .5rem
}

.holiday-observance-toggle {
    border-radius: 12px;
    padding-top: .5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center
}

.toggle-container {
    background-color: #fff;
    border-radius: 50px;
    padding: .25rem;
    display: inline-flex;
    gap: .25rem
}

.toggle-btn {
    padding: .5rem 1.5rem;
    border: none;
    border-radius: 50px;
    background-color: transparent;
    color: #6c757d;
    font-weight: 500;
    font-size: .9rem;
    cursor: pointer;
    transition: .3s
}

.toggle-btn:hover {
    background-color: rgba(102, 126, 234, .1);
    color: #667eea
}

.toggle-btn.active {
    background: linear-gradient(135deg, #00c6ff 0, #0072ff 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(102, 126, 234, .3)
}

@media (max-width:768px) {
    .footer-content {
        padding: 2rem 0 1rem
    }

    .footer-heading {
        font-size: 1.1rem;
        margin-bottom: 1rem
    }

    .footer-contact li,
    .footer-links a,
    .footer-text {
        font-size: .875rem
    }

    .footer-social {
        justify-content: flex-start
    }

    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem
    }

    .footer-bottom p {
        font-size: .8rem
    }

    .holiday-observance-toggle {
        padding: .5rem;
        margin-bottom: .75rem
    }

    .toggle-btn {
        padding: .4rem 1.2rem;
        font-size: .85rem
    }
}

@media (max-width:480px) {
    .toggle-container {
        width: 100%;
        display: flex
    }

    .toggle-btn {
        flex: 1;
        padding: .4rem .8rem;
        font-size: .8rem
    }
}

.holiday-modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.holiday-modal-header {
    background: linear-gradient(135deg, #00c6ff 0, #25ada0 100%);
    border: none;
    position: relative;
    overflow: hidden
}

.btn-close-modern,
.modal-icon {
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px)
}

.holiday-modal-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0, transparent 70%);
    animation: 3s ease-in-out infinite pulse-gradient
}

@keyframes pulse-gradient {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: .5
    }

    50% {
        transform: translate(-10px, -10px) scale(1.1);
        opacity: .8
    }
}

.modal-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2
}

.modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2)
}

.btn-close-modern,
.detail-item {
    align-items: center;
    display: flex;
    transition: .3s
}

.modal-icon i {
    font-size: 1.5rem;
    color: #fff
}

.btn-close-modern i,
.holiday-modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff
}

.holiday-modal-header .modal-title {
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .1)
}

.btn-close-modern {
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    width: 36px;
    height: 36px;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 2
}

.btn-close-modern:hover {
    background: #fff;
    transform: rotate(90deg) scale(1.1)
}

.btn-close-modern:hover i {
    color: #667eea
}

.holiday-modal-content .modal-body {
    padding: .2rem;
    background: linear-gradient(180deg, #fff 0, #eaf5ff 100%)
}

.holiday-detail-card {
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.detail-item {
    gap: 1rem;
    padding: .25rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, .15)
}

.detail-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #00c6ff 0, #0072ff 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.detail-icon i {
    color: #fff;
    font-size: 1.1rem
}

.detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .25rem
}

.detail-label {
    font-size: .75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .5px
}

.btn-modern-close i,
.detail-value {
    font-size: 1rem
}

.detail-value {
    font-weight: 600;
    color: #333
}

.description-item {
    align-items: flex-start
}

.detail-description {
    font-size: .95rem;
    color: #495057;
    line-height: 1.6;
    margin: 0;
    padding-top: .25rem
}

.holiday-modal-content .modal-footer {
    background: linear-gradient(135deg, #1dc7b7 0, #00c6ff 100%);
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center
}

.btn-modern-close {
    background: linear-gradient(135deg, #667eea 0, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .75rem 2rem;
    font-weight: 600;
    font-size: .95rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, .3)
}

.btn-modern-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, .4)
}

.modal.fade .modal-dialog {
    transform: scale(.8) translateY(-50px);
    opacity: 0;
    transition: .3s
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1
}

@media (max-width:576px) {
    .footer-wrapper {
        margin-top: 6rem
    }

    .footer-content {
        padding: 1.5rem 0 1rem
    }

    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem
    }

    .holiday-modal-content .modal-body,
    .holiday-modal-header {
        padding: 1.5rem 1.25rem
    }

    .modal-icon {
        width: 40px;
        height: 40px
    }

    .modal-icon i {
        font-size: 1.25rem
    }

    .btn-close-modern i,
    .holiday-modal-header .modal-title {
        font-size: 1.1rem
    }

    .btn-close-modern {
        width: 32px;
        height: 32px
    }

    .detail-item {
        padding: .875rem;
        gap: .75rem
    }

    .detail-icon {
        width: 36px;
        height: 36px
    }

    .detail-icon i {
        font-size: 1rem
    }

    .detail-label {
        font-size: .7rem
    }

    .detail-value {
        font-size: .9rem
    }

    .btn-modern-close,
    .detail-description {
        font-size: .875rem
    }

    .holiday-modal-content .modal-footer {
        padding: 1.25rem
    }

    .btn-modern-close {
        padding: .625rem 1.5rem
    }
}

@media (max-width:380px) {
    .modal-header-content {
        gap: .75rem
    }

    .holiday-modal-header .modal-title {
        font-size: 1rem
    }

    .detail-item {
        gap: .625rem
    }

    .btn-modern-close {
        padding: .5rem 1.25rem;
        width: 100%;
        justify-content: center
    }
}

.linkButtonColor {
    color: #fff;
    text-decoration: none
}