@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
body {
    padding: 0;
    margin: 0;
    background-color: #fff;
    color: #222;
    font-family: 'Poppins', sans-serif!important;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif!important;
}

/*--- navigation bar ---*/

.navbar {
    background:#000!important;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 9990;
    background: #000;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.app-navbar {
    min-height: 62px;
    padding: 8px 18px;
}

.app-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff !important;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0;
    white-space: nowrap;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #fff;
    flex: 0 0 auto;
}

.brand-mark svg {
    width: 30px;
    height: 30px;
    display: block;
}

.brand-mark circle,
.brand-mark path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-text {
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
}

.app-navbar .navbar-nav {
    align-items: center;
    gap: 4px;
}

.app-navbar .nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.app-navbar .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    margin-right: 0 !important;
    padding: 8px 10px !important;
    color: #fff !important;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.app-navbar .nav-link:hover {
    color: #000 !important;
    background: #fff;
    border-color: #fff;
}

.app-navbar .nav-link i {
    font-size: 13px;
}

.nav-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 38px;
    margin-left: -6px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.header-submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    z-index: 10000;
    display: none;
    width: 420px;
    padding: 12px;
    background: #000;
    border: 1px solid #222;
    box-shadow: 0 14px 34px rgba(0,0,0,0.32);
}

.app-navbar .nav-item:hover > .header-submenu,
.header-submenu.active {
    display: block;
}

.header-submenu:before {
    content: "";
    position: absolute;
    left: 22px;
    top: -8px;
    width: 14px;
    height: 14px;
    background: #000;
    border-left: 1px solid #222;
    border-top: 1px solid #222;
    transform: rotate(45deg);
}

.header-submenu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.header-submenu-grid a {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 9px 10px;
    background: #fff;
    color: #000;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.header-submenu-grid a:hover {
    color: #000;
    background: #f1f5f9;
    text-decoration: none;
}

.header-submenu-grid i {
    width: 18px;
    text-align: center;
}

.app-navbar .navbar-toggler {
    margin-left: auto;
    border: 0 !important;
    background: #000;
    width: 44px;
    height: 44px;
    padding: 0;
    outline: none !important;
    box-shadow: none !important;
}

.hamburger-lines {
    display: grid;
    gap: 5px;
    width: 24px;
}

.hamburger-lines span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 0;
}

.app-navbar .custom-frm-header {
    margin-left: 8px;
    border: 1px solid #fff;
    border-radius: 0;
}

.app-navbar .time-search-wrap {
    width: 270px;
}

.app-navbar .custom-frm-header input[type=search] {
    height: 38px;
    border-radius: 0;
    font-size: 13px;
}

.app-navbar .custom-frm-header button.btn {
    width: 42px;
}

.nav-link,
.navbar-brand {
    color: #000000;
    cursor: pointer;
}

.nav-link {
    margin-right: 1em !important;
}

.nav-link:hover {
    color: #000;
}

.navbar-collapse {
    justify-content: flex-end;
}

.time-search-wrap {
    position: relative;
    display: flex;
    width: 320px;
    max-width: calc(100vw - 32px);
}

.time-search-input {
    padding-right: 42px;
}

.time-search-submit {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 42px;
    border: 0;
    background: transparent;
    color: #222;
}

.time-search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1000;
    display: none;
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d7d7d7;
    box-shadow: 0 8px 20px rgba(0,0,0,0.16);
}

.time-search-result {
    display: block;
    padding: 10px 12px;
    color: #111;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.time-search-result:hover,
.time-search-result.active {
    color: #111;
    text-decoration: none;
    background: #f1f5f9;
}

.time-search-result-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.25;
}

.time-search-result-meta {
    display: block;
    margin-top: 3px;
    color: #555;
    font-size: 12px;
    line-height: 1.25;
}

.time-search-empty {
    padding: 10px 12px;
    color: #555;
    font-size: 13px;
}

.mobile-menu-panel {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    min-height: 100vh;
    overflow-y: auto;
    background: #000;
    color: #fff;
    padding: 16px;
}

.mobile-menu-panel.active {
    display: block;
}

.mobile-menu-panel.submenu-open .mobile-menu-grid,
.mobile-menu-panel.submenu-open .mobile-menu-search {
    opacity: 0.2;
    pointer-events: none;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid #222;
}

.mobile-menu-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
}

.mobile-menu-brand:hover {
    color: #fff;
    text-decoration: none;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    background: #000;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.mobile-menu-search {
    margin: 16px 0;
}

.mobile-menu-search .time-search-wrap {
    width: 100%;
    max-width: 100%;
}

.mobile-menu-search .time-search-form {
    border: 1px solid #fff;
    border-radius: 0;
    overflow: visible;
}

.mobile-menu-search .time-search-input {
    height: 48px;
    background: #000 !important;
    color: #fff !important;
    border: 0;
}

.mobile-menu-search .time-search-input::placeholder {
    color: rgba(255,255,255,0.78) !important;
}

.mobile-menu-search .time-search-submit {
    color: #fff;
}

.mobile-menu-search .time-search-results {
    background: #fff;
    color: #111;
}

.mobile-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-bottom: 24px;
}

.mobile-menu-card {
    display: block;
    min-height: 132px;
    padding: 14px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    text-decoration: none;
    text-align: left;
    appearance: none;
}

.mobile-menu-card:hover {
    color: #000;
    text-decoration: none;
}

.mobile-menu-card i,
.mobile-menu-card strong,
.mobile-menu-card span {
    display: block;
}

.mobile-menu-card i {
    margin-bottom: 12px;
    font-size: 24px;
}

.mobile-submenu-trigger {
    position: relative;
}

.mobile-submenu-trigger:after {
    content: "\f054";
    position: absolute;
    right: 14px;
    top: 14px;
    color: #000;
    font-family: "Font Awesome 5 Free";
    font-size: 12px;
    font-weight: 900;
}

.mobile-menu-card strong {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.mobile-menu-card span {
    margin-top: 7px;
    color: #333;
    font-size: 12px;
    line-height: 1.35;
}

button.mobile-menu-card {
    width: 100%;
    cursor: pointer;
}

.mobile-submenu-panel {
    position: fixed;
    inset: 0;
    z-index: 100001;
    display: none;
    overflow-y: auto;
    background: #000;
    color: #fff;
    padding: 16px;
    transform: translateX(100%);
    transition: transform 0.22s ease;
}

.mobile-submenu-panel.active {
    display: block;
    transform: translateX(0);
}

.mobile-submenu-head {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #222;
}

.mobile-submenu-head strong {
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    text-align: right;
}

.mobile-submenu-back {
    min-height: 42px;
    border: 0;
    background: #000;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.mobile-submenu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 0 26px;
}

.mobile-submenu-grid a {
    display: block;
    min-height: 128px;
    padding: 14px;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    text-decoration: none;
}

.mobile-submenu-grid a:hover {
    color: #000;
    text-decoration: none;
}

.mobile-submenu-grid i,
.mobile-submenu-grid strong,
.mobile-submenu-grid span {
    display: block;
}

.mobile-submenu-grid i {
    margin-bottom: 12px;
    font-size: 24px;
}

.mobile-submenu-grid strong {
    font-size: 16px;
    font-weight: 900;
}

.mobile-submenu-grid span {
    margin-top: 7px;
    color: #333;
    font-size: 12px;
    line-height: 1.35;
}

body.mobile-menu-open {
    overflow: hidden;
}

@media(min-width: 992px) {
    .mobile-menu-panel {
        display: none !important;
    }
}

@media(max-width: 380px) {
    .mobile-menu-grid,
    .mobile-submenu-grid {
        grid-template-columns: 1fr;
    }
}

.popular-timezone-card {
    height: 100%;
    text-align: left;
}

.popular-timezone-list {
    padding-left: 0;
    margin: 12px 0 0;
    columns: 1;
    list-style: none;
}

.popular-timezone-list li {
    break-inside: avoid;
    margin-bottom: 7px;
    font-size: 14px;
    line-height: 1.35;
}

.popular-timezone-list a {
    color: #111;
    text-decoration: none;
}

.popular-timezone-list a:hover {
    text-decoration: underline;
}

.listing-search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.listing-search-header .sub-heading {
    margin: 0;
}

.listing-search-wrap {
    position: relative;
    width: 280px;
    max-width: 100%;
}

.listing-search-wrap .form-control {
    padding-right: 38px;
}

.listing-search-wrap i {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    pointer-events: none;
}

.alarm-page {
    min-height: 520px;
}

.alarm-hero {
    padding-top: 70px;
}

.alarm-current-time {
    margin: 12px 0;
    color: #111;
    font-size: 28px;
    font-weight: 700;
}

.alarm-panel {
    max-width: 560px;
    margin: 18px auto 0;
    padding: 28px;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.alarm-target-time {
    color: #000;
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.alarm-edit-toggle {
    margin-top: 14px;
}

.alarm-edit-panel {
    display: none;
    margin: 16px auto 0;
    padding: 16px;
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
}

.alarm-mode-tabs,
.alarm-edit-fields {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.alarm-mode-btn.active {
    background: #212529;
    color: #fff;
}

.alarm-edit-fields .form-control {
    width: auto;
    min-width: 80px;
}

.alarm-duration-fields {
    align-items: center;
}

.alarm-sound-fields {
    align-items: center;
}

.alarm-sound-fields label {
    margin: 0;
    font-weight: 600;
}

.alarm-countdown {
    margin-top: 12px;
    color: #222;
    font-size: 32px;
    font-weight: 700;
}

.alarm-status {
    margin-top: 10px;
    color: #555;
    font-size: 15px;
}

.alarm-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.alarm-challenge-panel {
    display: none;
    max-width: 360px;
    margin: 16px auto 0;
}

.alarm-challenge-box {
    padding: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.alarm-math-question {
    margin: 10px 0;
    font-size: 26px;
    font-weight: 900;
}

.alarm-challenge-box .form-control {
    margin-bottom: 10px;
    text-align: center;
}

.alarm-hold-progress {
    height: 8px;
    margin-top: 10px;
    background: #e5e7eb;
    overflow: hidden;
}

.alarm-hold-progress:before {
    content: "";
    display: block;
    width: 0;
    height: 100%;
    background: #111;
}

.alarm-hold-progress.active:before {
    animation: alarmHoldFill 5s linear forwards;
}

@keyframes alarmHoldFill {
    to {
        width: 100%;
    }
}

.alarm-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
}

.alarm-link-row a {
    display: inline-block;
    padding: 7px 10px;
    color: #111;
    background: #fff;
    border: 1px solid #ddd;
    text-decoration: none;
    font-size: 14px;
}

.alarm-link-row a:hover {
    background: #f1f5f9;
    text-decoration: none;
}

.sleep-calculator-page {
    background: #f5f7fb;
    color: #111;
}

.sleep-app-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 22px 14px 28px;
}

.sleep-app-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 2px 14px;
}

.sleep-app-header h1 {
    margin: 4px 0 6px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

.sleep-app-header p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.45;
}

.sleep-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.sleep-eyebrow i {
    margin-right: 6px;
}

.sleep-live-clock {
    flex: 0 0 auto;
    min-width: 118px;
    padding: 12px 10px;
    background: #111;
    color: #fff;
    text-align: center;
}

.sleep-live-clock span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.sleep-live-clock small {
    display: block;
    margin-top: 4px;
    color: #d1d5db;
    font-size: 11px;
}

.sleep-mode-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 8px 0 12px;
    padding: 5px;
    background: #e5e7eb;
}

.sleep-mode-btn {
    min-height: 48px;
    border: 0;
    background: transparent;
    color: #374151;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.sleep-mode-btn i {
    margin-right: 6px;
}

.sleep-mode-btn.active {
    background: #fff;
    color: #111;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.sleep-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.sleep-input-card {
    padding: 18px;
}

.sleep-mode-panel label,
.sleep-options label {
    display: block;
    margin-bottom: 9px;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

.sleep-time-input {
    width: 100%;
    height: 76px;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111;
    font-size: 36px;
    font-weight: 800;
    text-align: center;
}

.sleep-now-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 76px;
    background: #f9fafb;
    border: 1px solid #d1d5db;
    font-size: 34px;
    font-weight: 800;
}

.sleep-primary-btn,
.sleep-secondary-btn {
    width: 100%;
    min-height: 50px;
    margin-top: 14px;
    border: 0;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
}

.sleep-primary-btn i,
.sleep-secondary-btn i {
    margin-right: 7px;
}

.sleep-secondary-btn {
    background: #fff;
    color: #111;
    border: 1px solid #d1d5db;
}

.sleep-options {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid #eef0f3;
}

.sleep-select {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-weight: 600;
}

.sleep-results {
    margin-top: 14px;
    position: relative;
}

.sleep-results:before {
    content: "Recalculating sleep cycles...";
    position: absolute;
    left: 50%;
    top: 58px;
    z-index: 3;
    display: none;
    min-width: 220px;
    padding: 10px 14px;
    background: #111;
    color: #fff;
    box-shadow: 0 10px 24px rgba(15,23,42,0.18);
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    transform: translateX(-50%);
}

.sleep-results:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 103px;
    z-index: 3;
    display: none;
    width: 28px;
    height: 28px;
    margin-left: -14px;
    border: 3px solid rgba(17,17,17,0.18);
    border-top-color: #111;
    border-radius: 50%;
    animation: sleepSpin 0.7s linear infinite;
}

.sleep-results.sleep-calculating:before,
.sleep-results.sleep-calculating:after {
    display: block;
}

.sleep-results.sleep-calculating .sleep-result-grid {
    opacity: 0.28;
    transform: translateY(4px);
    transition: opacity 0.16s ease, transform 0.16s ease;
}

.sleep-result-card {
    animation: sleepResultIn 0.28s ease both;
}

.sleep-result-card:nth-child(2) {
    animation-delay: 0.03s;
}

.sleep-result-card:nth-child(3) {
    animation-delay: 0.06s;
}

.sleep-result-card:nth-child(4) {
    animation-delay: 0.09s;
}

.sleep-result-card:nth-child(5) {
    animation-delay: 0.12s;
}

@keyframes sleepSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes sleepResultIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sleep-result-intro {
    padding: 8px 2px 2px;
}

.sleep-result-intro h2 {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 800;
}

.sleep-result-intro p {
    margin: 0;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.45;
}

.sleep-result-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 12px;
}

.sleep-result-card {
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 14px rgba(15,23,42,0.06);
}

.sleep-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 24px;
    margin-bottom: 8px;
    color: #4b5563;
}

.sleep-result-card strong {
    display: block;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.05;
}

.sleep-result-card span {
    display: block;
    margin-top: 4px;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.sleep-result-card small {
    display: block;
    margin-top: 2px;
    color: #6b7280;
    font-size: 12px;
}

.sleep-recommended {
    display: inline-block !important;
    margin: 0 !important;
    padding: 4px 8px;
    background: #e9f7ef;
    color: #14532d !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

.sleep-content-section {
    padding: 30px 0;
    background: #fff;
}

.sleep-content-section h2 {
    font-size: 24px;
    font-weight: 800;
}

.sleep-content-section p {
    color: #4b5563;
    line-height: 1.65;
}

.sleep-tip-list {
    display: grid;
    gap: 10px;
}

.sleep-tip-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.sleep-tip-list a:hover {
    background: #f1f5f9;
    color: #111;
    text-decoration: none;
}

.sleep-tip-list i {
    width: 20px;
    color: #4b5563;
}

.timer-page {
    background: #f6f8fb;
    color: #111;
}

.timer-app-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 14px 32px;
}

.timer-app-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 2px 14px;
}

.timer-app-header h1 {
    margin: 4px 0 6px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

.timer-app-header p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.45;
}

.timer-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.timer-icon-btn {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.timer-panel {
    position: relative;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
    text-align: center;
}

.timer-display {
    color: #111;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.timer-status {
    margin-top: 10px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 700;
}

.timer-input-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.timer-input-grid label {
    margin: 0;
}

.timer-input-grid span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.timer-input-grid input,
.timer-sound-row select {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-weight: 700;
    text-align: center;
}

.timer-sound-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    text-align: left;
}

.timer-sound-row label {
    margin: 0;
    font-weight: 800;
}

.timer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.timer-action-btn {
    min-height: 50px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.timer-start {
    background: #111;
    color: #fff;
    border-color: #111;
}

.timer-action-btn i {
    margin-right: 7px;
}

.timer-finished {
    animation: timerPulse 0.7s ease-in-out infinite alternate;
}

.timer-close-fullscreen {
    display: none;
}

.timer-fullscreen-active {
    position: fixed !important;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    background: #000;
    color: #fff;
}

.timer-fullscreen-active .timer-display {
    color: #fff;
    font-size: 17vw;
}

.timer-fullscreen-active .timer-status {
    color: #d1d5db;
}

.timer-fullscreen-active .timer-input-grid,
.timer-fullscreen-active .timer-sound-row,
.timer-fullscreen-active .timer-actions {
    display: none;
}

.timer-fullscreen-active .timer-close-fullscreen {
    display: flex;
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.timer-content-section {
    padding: 30px 0;
    background: #fff;
}

.timer-content-section h2 {
    margin: 18px 0 10px;
    font-size: 24px;
    font-weight: 800;
}

.timer-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.timer-link-row a {
    display: inline-block;
    padding: 8px 11px;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.timer-link-row a:hover {
    background: #f1f5f9;
    color: #111;
    text-decoration: none;
}

.timer-about {
    margin-top: 20px;
}

.timer-about p {
    color: #4b5563;
    line-height: 1.65;
}

.stopwatch-page {
    background: #f6f8fb;
    color: #111;
}

.stopwatch-app-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 24px 14px 32px;
}

.stopwatch-app-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 2px 14px;
}

.stopwatch-app-header h1 {
    margin: 4px 0 6px;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
}

.stopwatch-app-header p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.45;
}

.stopwatch-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 700;
    text-transform: uppercase;
}

.stopwatch-icon-btn {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
}

.stopwatch-panel {
    position: relative;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
    text-align: center;
}

.stopwatch-display {
    color: #111;
    font-size: 58px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.stopwatch-status {
    margin-top: 10px;
    color: #4b5563;
    font-size: 15px;
    font-weight: 700;
}

.stopwatch-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.stopwatch-action-btn {
    min-height: 50px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.stopwatch-start {
    background: #111;
    color: #fff;
    border-color: #111;
}

.stopwatch-laps {
    margin-top: 22px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.stopwatch-lap-head,
.stopwatch-lap-row {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    gap: 8px;
    padding: 10px 12px;
}

.stopwatch-lap-head {
    background: #f9fafb;
    color: #4b5563;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.stopwatch-lap-row {
    border-top: 1px solid #eef0f3;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

.stopwatch-empty {
    padding: 14px;
    color: #6b7280;
    text-align: center;
}

.stopwatch-close-fullscreen {
    display: none;
}

.stopwatch-fullscreen-active {
    position: fixed !important;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100vw;
    min-height: 100vh;
    background: #000;
    color: #fff;
}

.stopwatch-fullscreen-active .stopwatch-display {
    color: #fff;
    font-size: 14vw;
}

.stopwatch-fullscreen-active .stopwatch-status {
    color: #d1d5db;
}

.stopwatch-fullscreen-active .stopwatch-actions,
.stopwatch-fullscreen-active .stopwatch-laps {
    display: none;
}

.stopwatch-fullscreen-active .stopwatch-close-fullscreen {
    display: flex;
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.stopwatch-content-section {
    padding: 30px 0;
    background: #fff;
}

.stopwatch-content-section h2 {
    font-size: 24px;
    font-weight: 800;
}

.stopwatch-content-section p {
    color: #4b5563;
    line-height: 1.65;
}

.stopwatch-tool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stopwatch-tool-links a {
    display: inline-block;
    padding: 9px 12px;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-weight: 700;
    text-decoration: none;
}

.stopwatch-tool-links a:hover {
    background: #f1f5f9;
    color: #111;
    text-decoration: none;
}

.tz-converter-page {
    background: #f6f8fb;
    color: #111;
}

.tz-converter-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 14px 36px;
}

.tz-converter-header {
    padding: 14px 2px;
}

.tz-converter-header h1 {
    margin: 4px 0 6px;
    font-size: 34px;
    font-weight: 800;
}

.tz-converter-header p {
    margin: 0;
    color: #4b5563;
}

.tz-converter-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.tz-converter-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.tz-form-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 12px;
}

.tz-form-grid label,
.tz-target-label {
    display: block;
    margin: 0;
}

.tz-form-grid span,
.tz-target-label span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.tz-form-grid input,
.tz-form-grid select,
.tz-target-label select {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-weight: 700;
}

.tz-target-label {
    margin-top: 14px;
}

.tz-add-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 10px;
    border: 0;
    background: #111;
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.tz-city-search,
.world-clock-city-search {
    position: relative;
    margin-top: 12px;
}

.tz-city-search label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.tz-city-search input,
.world-clock-city-search input {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    padding: 0 12px;
    font-weight: 700;
}

.tz-city-results,
.world-clock-city-results {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 6px);
    z-index: 20;
    display: none;
    max-height: 320px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d1d5db;
    box-shadow: 0 10px 24px rgba(15,23,42,0.14);
}

.tz-city-results button,
.world-clock-city-results button,
.tz-city-empty,
.world-clock-city-empty {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    border-bottom: 1px solid #eef0f3;
    background: #fff;
    color: #111;
    text-align: left;
}

.tz-city-results button:hover,
.world-clock-city-results button:hover {
    background: #f1f5f9;
}

.tz-city-results strong,
.tz-city-results span,
.world-clock-city-results strong,
.world-clock-city-results span {
    display: block;
}

.tz-city-results span,
.world-clock-city-results span {
    color: #6b7280;
    font-size: 12px;
}

.tz-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.tz-chip {
    padding: 8px 10px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.tz-results {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.tz-result-card {
    display: grid;
    grid-template-columns: 1.6fr 130px 110px 170px;
    gap: 10px;
    align-items: center;
    padding: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.tz-result-card strong,
.tz-result-card span {
    display: block;
}

.tz-result-card span {
    color: #6b7280;
    font-size: 12px;
}

.tz-result-time {
    font-size: 24px;
    font-weight: 900;
}

.tz-result-meta {
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
}

.tz-meeting-hint {
    padding: 7px 9px;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
}

.tz-meeting-hint.good {
    background: #e9f7ef;
    color: #14532d;
}

.tz-meeting-hint.late {
    background: #fff7ed;
    color: #7c2d12;
}

.tz-converter-content {
    padding: 30px 0;
    background: #fff;
}

.tz-converter-content h2 {
    font-size: 24px;
    font-weight: 800;
}

.tz-converter-content p {
    color: #4b5563;
    line-height: 1.65;
}

.tz-tool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tz-tool-links a {
    display: inline-block;
    padding: 9px 12px;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-weight: 700;
    text-decoration: none;
}

.date-calc-page {
    background: #f6f8fb;
    color: #111;
}

.date-calc-shell {
    max-width: 820px;
    margin: 0 auto;
    padding: 28px 14px 36px;
}

.date-calc-header {
    padding: 14px 2px;
}

.date-calc-header h1 {
    margin: 4px 0 6px;
    font-size: 34px;
    font-weight: 800;
}

.date-calc-header p {
    margin: 0;
    color: #4b5563;
}

.date-calc-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.date-calc-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.date-drawer-launch {
    margin-bottom: 16px;
    padding: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.date-drawer-open {
    width: 100%;
    min-height: 50px;
    border: 0;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
}

.date-drawer-launch p {
    margin: 10px 0 0;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.date-calc-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}

.date-calc-tab {
    min-height: 46px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.date-calc-tab.active {
    background: #111;
    color: #fff;
    border-color: #111;
}

.date-calc-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.date-calc-panel label {
    margin: 0;
}

.date-calc-panel span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.date-calc-panel input,
.date-calc-panel select {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    color: #111;
    font-weight: 700;
}

.date-calc-result {
    margin-top: 16px;
    padding: 18px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.date-calc-result strong,
.date-calc-result span {
    display: block;
}

.date-calc-result strong {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
}

.date-calc-result span {
    margin-top: 5px;
    color: #4b5563;
}

.date-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 99990;
    display: none;
    background: rgba(0,0,0,0.36);
}

.date-drawer-overlay.active {
    display: block;
}

.date-drawer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99991;
    height: 82vh;
    max-height: 82vh;
    padding: 8px 14px 16px;
    background: #fff;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -14px 38px rgba(15,23,42,0.24);
    transform: translateY(105%);
    transition: transform 0.24s ease;
    overflow-y: auto;
}

.date-drawer.active {
    transform: translateY(0);
}

.date-drawer-handle {
    width: 48px;
    height: 5px;
    margin: 4px auto 12px;
    background: #d1d5db;
    border-radius: 99px;
}

.date-drawer-head {
    display: grid;
    grid-template-columns: 42px 1fr 42px;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    text-align: center;
}

.date-drawer-head strong,
.date-drawer-head span {
    display: block;
}

.date-drawer-head strong {
    font-size: 18px;
    font-weight: 900;
}

.date-drawer-head span {
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

.date-drawer-nav {
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #111;
}

.date-drawer-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
    margin-bottom: 8px;
    color: #6b7280;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.date-drawer-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 6px;
}

.date-drawer-empty,
.date-drawer-day {
    min-height: 58px;
}

.date-drawer-day {
    padding: 6px 2px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111;
    text-align: center;
}

.date-drawer-day strong,
.date-drawer-day span {
    display: block;
}

.date-drawer-day strong {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.1;
}

.date-drawer-day span {
    margin-top: 3px;
    color: #6b7280;
    font-size: 10px;
    font-weight: 800;
}

.date-drawer-day.today {
    border-color: #111;
}

.date-drawer-day.selected {
    background: #111;
    color: #fff;
    border-color: #111;
}

.date-drawer-day.selected span {
    color: #fff;
}

.date-drawer-actions {
    position: sticky;
    bottom: -16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 14px -14px -16px;
    padding: 12px 14px 16px;
    background: #fff;
    border-top: 1px solid #e5e7eb;
}

.date-drawer-actions button {
    min-height: 48px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-weight: 900;
}

.date-drawer-actions button:last-child {
    background: #111;
    color: #fff;
    border-color: #111;
}

.date-calc-content {
    padding: 30px 0;
    background: #fff;
}

.date-calc-content h2 {
    font-size: 24px;
    font-weight: 800;
}

.date-calc-content p {
    color: #4b5563;
    line-height: 1.65;
}

.date-tool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.date-tool-links a {
    display: inline-block;
    padding: 9px 12px;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-weight: 700;
    text-decoration: none;
}

.age-calc-page {
    background: #f6f8fb;
    color: #111;
}

.age-calc-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 30px 14px 40px;
}

.age-calc-header h1 {
    margin: 4px 0 8px;
    font-size: 34px;
    font-weight: 900;
}

.age-calc-header p {
    margin: 0;
    color: #4b5563;
}

.age-calc-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 900;
    text-transform: uppercase;
}

.age-calc-card {
    margin-top: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.age-calc-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.age-calc-form label {
    margin: 0;
}

.age-calc-form span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.age-calc-form input {
    width: 100%;
    height: 48px;
    border: 1px solid #d1d5db;
    color: #111;
    font-weight: 800;
}

.age-main-result {
    margin-top: 16px;
    padding: 18px;
    background: #111;
    color: #fff;
    text-align: center;
}

.age-main-result strong,
.age-main-result span {
    display: block;
}

.age-main-result strong {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
}

.age-main-result span {
    margin-top: 6px;
    color: #d1d5db;
    font-weight: 800;
}

.age-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.age-stat-card {
    padding: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.age-stat-card strong,
.age-stat-card span {
    display: block;
}

.age-stat-card strong {
    font-size: 20px;
    font-weight: 900;
}

.age-stat-card span {
    margin-top: 4px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

.age-calc-content {
    padding: 30px 0;
    background: #fff;
}

.age-calc-content h2 {
    font-size: 24px;
    font-weight: 800;
}

.age-calc-content p {
    color: #4b5563;
    line-height: 1.65;
}

.age-tool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.age-tool-links a {
    display: inline-block;
    padding: 9px 12px;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-weight: 800;
    text-decoration: none;
}

.focus-page {
    background: #f6f8fb;
    color: #111;
}

.focus-shell {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 14px 36px;
}

.focus-header {
    padding: 14px 2px;
}

.focus-header h1 {
    margin: 4px 0 6px;
    font-size: 34px;
    font-weight: 800;
}

.focus-header p {
    margin: 0;
    color: #4b5563;
}

.focus-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.focus-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
    text-align: center;
}

.focus-mode {
    display: inline-block;
    padding: 6px 12px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.focus-display {
    margin-top: 16px;
    font-size: 76px;
    font-weight: 900;
    line-height: 1;
}

.focus-status {
    margin-top: 10px;
    color: #4b5563;
    font-weight: 800;
}

.focus-settings {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
}

.focus-settings label {
    margin: 0;
}

.focus-settings span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 800;
}

.focus-settings input {
    width: 100%;
    height: 44px;
    border: 1px solid #d1d5db;
    text-align: center;
    font-weight: 800;
}

.focus-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.focus-action-btn {
    min-height: 50px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-weight: 900;
    cursor: pointer;
}

.focus-start {
    background: #111;
    color: #fff;
    border-color: #111;
}

.focus-content {
    padding: 30px 0;
    background: #fff;
}

.focus-content h2 {
    font-size: 24px;
    font-weight: 800;
}

.focus-content p {
    color: #4b5563;
    line-height: 1.65;
}

.focus-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.focus-links a {
    display: inline-block;
    padding: 9px 12px;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-weight: 700;
    text-decoration: none;
}

.sound-page {
    background: #f6f8fb;
    color: #111;
}

.sound-shell {
    max-width: 640px;
    margin: 0 auto;
    padding: 28px 14px 36px;
}

.sound-header h1 {
    font-size: 34px;
    font-weight: 800;
}

.sound-header p {
    color: #4b5563;
}

.sound-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.sound-card {
    display: grid;
    gap: 14px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
    text-align: center;
}

.sound-card label {
    margin: 0;
    text-align: left;
}

.sound-card span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.sound-card select {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    font-weight: 800;
}

.sound-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 8px auto;
    background: #111;
    color: #fff;
    border-radius: 50%;
    font-size: 46px;
}

.sound-playing {
    animation: soundPulse 1.6s ease-in-out infinite alternate;
}

.sound-status {
    color: #4b5563;
    font-weight: 800;
}

.sound-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.sound-action-btn {
    min-height: 50px;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #111;
    font-weight: 900;
    cursor: pointer;
}

.sound-start {
    background: #111;
    color: #fff;
    border-color: #111;
}

.sound-content {
    padding: 30px 0;
    background: #fff;
}

.sound-content h2 {
    font-size: 24px;
    font-weight: 800;
}

.sound-content p {
    color: #4b5563;
    line-height: 1.65;
}

.world-clock-page {
    background: #f6f8fb;
    color: #111;
}

.world-clock-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 28px 14px 40px;
}

.world-clock-header h1 {
    font-size: 34px;
    font-weight: 800;
}

.world-clock-header p {
    color: #4b5563;
}

.world-clock-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.world-clock-add {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 10px;
    margin: 18px 0;
}

.world-clock-add select,
.world-clock-add button {
    height: 48px;
    border: 1px solid #d1d5db;
    font-weight: 800;
}

.world-clock-add button {
    background: #111;
    color: #fff;
    border-color: #111;
}

.world-clock-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.world-clock-card {
    position: relative;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

.world-clock-card strong,
.world-clock-card span,
.world-clock-card a {
    display: block;
}

.world-clock-time {
    margin-top: 12px;
    font-size: 34px;
    font-weight: 900;
    line-height: 1;
}

.world-clock-date {
    margin-top: 7px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 700;
}

.world-clock-card a {
    margin-top: 10px;
    color: #111;
    font-weight: 800;
}

.world-clock-remove {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
    height: 28px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111;
    cursor: pointer;
}

.sun-page {
    background: #f6f8fb;
    color: #111;
}

.sun-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 14px 40px;
}

.sun-header h1 {
    font-size: 34px;
    font-weight: 800;
}

.sun-header p {
    color: #4b5563;
}

.sun-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.sun-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.sun-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.sun-form label {
    margin: 0;
}

.sun-form span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.sun-form input {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    font-weight: 800;
}

.sun-calc-btn {
    width: 100%;
    min-height: 48px;
    margin-top: 14px;
    border: 0;
    background: #111;
    color: #fff;
    font-weight: 900;
}

.sun-results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.sun-result {
    padding: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.sun-result i,
.sun-result strong,
.sun-result span {
    display: block;
}

.sun-result i {
    margin-bottom: 8px;
    color: #4b5563;
}

.sun-result strong {
    font-size: 20px;
    font-weight: 900;
}

.sun-result span {
    color: #6b7280;
    font-size: 12px;
    font-weight: 800;
}

.creator-page {
    background: #f6f8fb;
    color: #111;
}

.creator-shell {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 14px 40px;
}

.creator-header h1 {
    font-size: 34px;
    font-weight: 800;
}

.creator-header p {
    color: #4b5563;
}

.creator-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.creator-card {
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.creator-form {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 10px;
}

.creator-form label {
    margin: 0;
}

.creator-form span {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 800;
}

.creator-form input {
    width: 100%;
    height: 46px;
    border: 1px solid #d1d5db;
    font-weight: 800;
}

.creator-preview {
    margin-top: 18px;
    padding: 18px;
    background: #111;
    color: #fff;
    text-align: center;
}

.creator-preview h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.creator-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.creator-countdown span {
    padding: 12px 8px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 800;
}

.creator-countdown strong {
    display: block;
    font-size: 30px;
    font-weight: 900;
}

.creator-share {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 8px;
    margin-top: 14px;
}

.creator-share input,
.creator-share button {
    height: 42px;
    border: 1px solid #333;
    font-weight: 800;
}

.creator-share input {
    padding: 0 10px;
    background: #fff;
    color: #111;
}

.creator-share button {
    background: #fff;
    color: #111;
    cursor: pointer;
}

.tools-page {
    background: #f6f8fb;
    color: #111;
}

.tools-shell {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 14px 42px;
}

.tools-header {
    margin-bottom: 18px;
}

.tools-header h1 {
    font-size: 34px;
    font-weight: 800;
}

.tools-header p {
    color: #4b5563;
}

.tools-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 800;
    text-transform: uppercase;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.tools-group-title {
    margin: 24px 0 12px;
    font-size: 22px;
    font-weight: 900;
}

.tools-card {
    display: block;
    min-height: 180px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    color: #111;
    text-decoration: none;
}

.tools-card:hover {
    color: #111;
    text-decoration: none;
    background: #f9fafb;
}

.tools-card i,
.tools-card strong,
.tools-card span {
    display: block;
}

.tools-card i {
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 26px;
}

.tools-card strong {
    font-size: 18px;
    font-weight: 900;
}

.tools-card span {
    margin-top: 8px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.45;
}

.faq-page {
    background: #f6f8fb;
    color: #111;
}

.faq-shell {
    max-width: 980px;
    margin: 0 auto;
    padding: 30px 14px 42px;
}

.faq-header {
    margin-bottom: 18px;
}

.faq-header h1 {
    margin: 4px 0 8px;
    font-size: 34px;
    font-weight: 900;
}

.faq-header p {
    margin: 0;
    color: #4b5563;
    line-height: 1.55;
}

.faq-eyebrow {
    color: #111 !important;
    font-size: 13px !important;
    font-weight: 900;
    text-transform: uppercase;
}

.faq-grid {
    display: grid;
    gap: 10px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 16px rgba(15,23,42,0.05);
}

.faq-item summary {
    position: relative;
    padding: 16px 46px 16px 16px;
    color: #111;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 14px;
    font-size: 22px;
    font-weight: 700;
}

.faq-item[open] summary:after {
    content: "-";
}

.faq-item p {
    margin: 0;
    padding: 0 16px 16px;
    color: #4b5563;
    line-height: 1.65;
}

.faq-tool-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.faq-tool-links a {
    display: inline-block;
    padding: 9px 12px;
    color: #111;
    background: #fff;
    border: 1px solid #e5e7eb;
    font-weight: 800;
    text-decoration: none;
}

.faq-tool-links a:hover {
    background: #f1f5f9;
    color: #111;
    text-decoration: none;
}

.home-app-dashboard {
    background: #f6f8fb;
    color: #111;
}

.home-search-section,
.home-tools-section,
.home-today-section,
.home-city-section,
.home-planner-section {
    padding: 24px 0;
}

.home-search-panel {
    max-width: 920px;
    margin: 0 auto;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.home-search-panel h2,
.home-section-head h2,
.home-planner-strip h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.home-search-panel p,
.home-planner-strip p {
    margin: 7px 0 0;
    color: #4b5563;
    line-height: 1.55;
}

.home-search-box {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 52px;
    margin-top: 16px;
    border: 2px solid #111;
    background: #fff;
}

.home-search-box input {
    min-height: 56px;
    padding: 0 14px;
    border: 0;
    color: #111;
    font-size: 16px;
    font-weight: 700;
    outline: none;
}

.home-search-box button {
    border: 0;
    background: #111;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.home-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: -2px;
    right: -2px;
    z-index: 30;
    display: none;
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d1d5db;
    box-shadow: 0 14px 28px rgba(15,23,42,0.14);
}

.home-search-results a,
.home-search-empty {
    display: block;
    padding: 12px 14px;
    color: #111;
    border-bottom: 1px solid #eef0f3;
    text-decoration: none;
}

.home-search-results a:hover {
    background: #f1f5f9;
    color: #111;
    text-decoration: none;
}

.home-search-results strong,
.home-search-results span {
    display: block;
}

.home-search-results span {
    margin-top: 3px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

.home-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.home-quick-links a {
    display: inline-block;
    padding: 8px 10px;
    color: #111;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.home-section-head a {
    color: #111;
    font-weight: 900;
    text-decoration: underline;
}

.home-tool-grid,
.home-city-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.home-tool-card,
.home-city-card {
    display: block;
    min-height: 160px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    color: #111;
    text-decoration: none;
}

.home-tool-card:hover,
.home-city-card:hover {
    color: #111;
    background: #f9fafb;
    text-decoration: none;
}

.home-tool-card i,
.home-tool-card strong,
.home-tool-card span,
.home-city-card strong,
.home-city-card span,
.home-city-card em,
.home-city-card small {
    display: block;
}

.home-tool-card i {
    margin-bottom: 14px;
    color: #4b5563;
    font-size: 26px;
}

.home-tool-card strong,
.home-city-card strong {
    font-size: 18px;
    font-weight: 900;
}

.home-tool-card span,
.home-city-card span,
.home-city-card small {
    margin-top: 6px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
}

.home-today-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 12px;
}

.home-today-main,
.home-today-stat {
    padding: 18px;
    background: #111;
    color: #fff;
}

.home-today-main p {
    margin: 0 0 6px;
    color: #d1d5db;
    font-weight: 900;
    text-transform: uppercase;
}

.home-today-main h2 {
    margin: 0;
    color: #fff;
    font-size: 26px;
    font-weight: 900;
}

.home-today-main span {
    display: block;
    margin-top: 7px;
    color: #d1d5db;
    font-size: 13px;
}

.home-today-stat {
    text-align: center;
}

.home-today-stat strong {
    display: block;
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.home-today-stat span {
    display: block;
    margin-top: 8px;
    color: #d1d5db;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-city-card em {
    margin-top: 14px;
    color: #111;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
}

.home-planner-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding: 22px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 28px rgba(15,23,42,0.08);
}

.home-planner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.home-planner-actions a {
    display: inline-block;
    padding: 10px 12px;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.home-planner-actions a:hover {
    color: #fff;
    text-decoration: none;
}

.home-mobile-actions {
    display: none;
}

.city-app-dashboard {
    background: #f6f8fb;
    color: #111;
}

.city-action-section,
.city-today-section,
.city-world-section,
.city-seo-summary {
    padding: 22px 0;
}

.city-action-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.city-action-card {
    display: block;
    min-height: 132px;
    padding: 16px;
    background: #fff;
    color: #111;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.city-action-card:hover {
    color: #111;
    background: #f9fafb;
    text-decoration: none;
}

.city-action-card i,
.city-action-card strong,
.city-action-card span {
    display: block;
}

.city-action-card i {
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 24px;
}

.city-action-card strong {
    font-size: 17px;
    font-weight: 900;
}

.city-action-card span {
    margin-top: 7px;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.4;
}

.city-today-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 12px;
}

.city-today-main,
.city-today-stat {
    padding: 18px;
    background: #111;
    color: #fff;
}

.city-today-main p {
    margin: 0 0 6px;
    color: #d1d5db;
    font-weight: 900;
    text-transform: uppercase;
}

.city-today-main h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.city-today-main span {
    display: block;
    margin-top: 7px;
    color: #d1d5db;
    font-size: 13px;
}

.city-today-stat {
    text-align: center;
}

.city-today-stat strong {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
    word-break: break-word;
}

.city-today-stat span {
    display: block;
    margin-top: 8px;
    color: #d1d5db;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.city-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}

.city-section-head h2 {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
}

.city-section-head a {
    color: #111;
    font-weight: 900;
    text-decoration: underline;
}

.city-world-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.city-world-card {
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

.city-world-card strong,
.city-world-card span,
.city-world-card em {
    display: block;
}

.city-world-card strong {
    font-size: 17px;
    font-weight: 900;
}

.city-world-card span {
    margin-top: 5px;
    color: #6b7280;
    font-size: 12px;
    line-height: 1.35;
}

.city-world-card em {
    margin-top: 14px;
    color: #111;
    font-size: 24px;
    font-style: normal;
    font-weight: 900;
}

.city-summary-panel {
    padding: 20px;
    background: #fff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
}

.city-summary-panel h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 900;
}

.city-summary-panel p {
    margin: 0;
    color: #4b5563;
    line-height: 1.65;
}

@media(max-width: 991px) {
    .home-tool-grid,
    .home-city-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-today-grid,
    .home-planner-strip,
    .city-today-grid {
        grid-template-columns: 1fr;
    }

    .city-action-grid,
    .city-world-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-planner-actions {
        justify-content: flex-start;
    }
}

@media(max-width: 575.98px) {
    .home-search-section,
    .home-tools-section,
    .home-today-section,
    .home-city-section,
    .home-planner-section {
        padding: 16px 0;
    }

    .home-search-panel,
    .home-planner-strip {
        padding: 16px;
    }

    .home-search-panel h2,
    .home-section-head h2,
    .home-planner-strip h2 {
        font-size: 22px;
    }

    .home-tool-card,
    .home-city-card {
        min-height: 140px;
        padding: 14px;
    }

    .home-city-card em {
        font-size: 23px;
    }

    .home-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9990;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        background: #000;
        border-top: 1px solid #222;
    }

    .home-mobile-actions a,
    .home-mobile-actions button {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 58px;
        border: 0;
        background: #000;
        color: #fff;
        font-size: 11px;
        font-weight: 800;
        text-decoration: none;
    }

    .home-mobile-actions i {
        margin-bottom: 4px;
        font-size: 16px;
    }

    body {
        padding-bottom: 58px;
    }

    .city-action-section,
    .city-today-section,
    .city-world-section,
    .city-seo-summary {
        padding: 16px 0;
    }

    .city-action-card {
        min-height: 126px;
        padding: 14px;
    }

    .city-world-grid {
        grid-template-columns: 1fr;
    }

    .city-section-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@keyframes soundPulse {
    from {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(17,17,17,0.18);
    }
    to {
        transform: scale(1.04);
        box-shadow: 0 0 0 18px rgba(17,17,17,0.04);
    }
}

@keyframes timerPulse {
    from {
        box-shadow: 0 10px 28px rgba(15,23,42,0.08);
    }
    to {
        box-shadow: 0 0 0 6px rgba(17,17,17,0.08);
    }
}

@media (max-width: 575.98px) {
    .timer-app-header {
        align-items: flex-start;
    }

    .timer-app-header h1 {
        font-size: 28px;
    }

    .timer-display {
        font-size: 44px;
    }

    .timer-panel {
        padding: 16px;
    }

    .timer-input-grid {
        gap: 7px;
    }

    .timer-sound-row {
        grid-template-columns: 1fr;
    }

    .stopwatch-app-header {
        align-items: flex-start;
    }

    .stopwatch-app-header h1 {
        font-size: 28px;
    }

    .stopwatch-panel {
        padding: 16px;
    }

    .stopwatch-display {
        font-size: 38px;
    }

    .stopwatch-actions {
        grid-template-columns: 1fr;
    }

    .stopwatch-lap-head,
    .stopwatch-lap-row {
        grid-template-columns: 48px 1fr 1fr;
        padding: 9px 8px;
        font-size: 12px;
    }

    .tz-form-grid,
    .tz-result-card {
        grid-template-columns: 1fr;
    }

    .tz-converter-card {
        padding: 16px;
    }

    .tz-result-time {
        font-size: 30px;
    }

    .date-calc-tabs,
    .date-calc-panel,
    .age-calc-form,
    .age-stat-grid {
        grid-template-columns: 1fr;
    }

    .date-calc-card {
        padding: 16px;
    }

    .date-drawer {
        height: 82vh;
        max-height: 82vh;
    }

    .date-calc-result strong {
        font-size: 26px;
    }

    .focus-display {
        font-size: 56px;
    }

    .focus-settings,
    .focus-actions {
        grid-template-columns: 1fr;
    }

    .focus-card {
        padding: 16px;
    }

    .world-clock-add,
    .world-clock-grid {
        grid-template-columns: 1fr;
    }

    .sun-form,
    .sun-results {
        grid-template-columns: 1fr;
    }

    .creator-form,
    .creator-countdown,
    .creator-share {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }
}

@media(min-width: 640px) {
    .sleep-app-shell {
        padding-top: 34px;
        padding-bottom: 42px;
    }

    .sleep-input-card {
        padding: 24px;
    }

    .sleep-result-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(min-width: 900px) {
    .sleep-result-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


/*--- header ---*/

.header {
    background-color: : white;
    background-position: center;
    position: relative;
    height:auto!important;
}

.overlay {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    right: 0;
    background: #fff;
}

.description {
    position: relative;
    padding-top:100px;
    padding-bottom:50px;
    text-align: center;
}

.description h1 {
    font-weight: 700;
    font-size:32px;
    display:block;
}
.description span.main_time{
    color:#000;
    white-space: nowrap;
    font-weight: 700;
    font-size: 300px;
    display:block;
}

.description h2 {
    color: #000000;
    font-size:30px;
    font-weight: 700;
}

.description h3 {
    color: #000000;
    font-size: 40px;
    font-weight: 700;
}
.description span.main_date {
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    display:block;
}

.clock-detail-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 8px auto 12px;
    color: #111;
    font-size: 14px;
    font-weight: 500;
}

.clock-detail-strip span {
    padding: 0;
    background: transparent;
    border: 0;
}

.clock-detail-strip i {
    margin-right: 5px;
    color: #555;
}

.city-clock-hero.clock-fullscreen-active {
    position: fixed !important;
    inset: 0;
    z-index: 99999;
    width: 100vw;
    height: 100vh !important;
    min-height: 100vh;
    background: #000;
}

.city-clock-hero.clock-fullscreen-active .overlay {
    background: #000;
}

.city-clock-hero.clock-fullscreen-active .description {
    min-height: 100vh;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.clock-fullscreen-close {
    display: none;
}

.city-clock-hero.clock-fullscreen-active h1,
.city-clock-hero.clock-fullscreen-active h2,
.city-clock-hero.clock-fullscreen-active .main_date,
.city-clock-hero.clock-fullscreen-active .clock-detail-strip,
.city-clock-hero.clock-fullscreen-active .description > a,
.city-clock-hero.clock-fullscreen-active .features {
    display: none !important;
}

.city-clock-hero.clock-fullscreen-active .main_time {
    color: #fff;
    font-size: 18vw;
    line-height: 0.95;
}

.city-clock-hero.clock-fullscreen-active .clock-detail-strip span {
    color: #fff;
    background: transparent;
    border: 0;
}

.city-clock-hero.clock-fullscreen-active .features {
    display: none;
}

.city-clock-hero.clock-fullscreen-active .clock-fullscreen-close {
    display: flex;
    position: fixed;
    right: 18px;
    top: 18px;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid #333;
    background: #111;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.description button {
    padding: 100;
}

.page-footer h1{
    font-size:30px;
    font-weight:700;
}
.page-footer h2{
    font-size:30px;
    font-weight:700;
}
/*--- feature section ---*/

.features {
    margin: 4px auto;
    padding: 1em;
    position: relative;
}

.features .btn {
    margin-top: 16px;
    padding: 5px 10px;
    border: 1px solid #0065a7;
    color: #000;
    font-weight: 400;
}


/*--- footer ---*/

.page-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 30px;
}

.compact-footer {
    padding: 28px 0 18px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid #222;
}

.footer-brand a {
    color: #fff;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
}

.footer-brand p {
    max-width: 660px;
    margin: 8px 0 0;
    color: #d1d5db;
    font-size: 13px;
    line-height: 1.55;
}

.footer-mini-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.footer-mini-actions a {
    display: inline-block;
    padding: 8px 10px;
    color: #000 !important;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.footer-link-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #222;
}

.footer-link-group {
    color: #fff;
}

.footer-link-group summary {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    list-style: none;
    cursor: default;
}

.footer-link-group summary::-webkit-details-marker {
    display: none;
}

.footer-link-group a {
    display: block;
    margin: 7px 0;
    color: #d1d5db !important;
    font-size: 13px;
    text-decoration: none;
}

.footer-link-group a:hover {
    color: #fff !important;
    text-decoration: underline;
}

.footer-countdown-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid #222;
}

.footer-countdown-row a {
    display: inline-block;
    padding: 7px 9px;
    color: #fff !important;
    border: 1px solid #333;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 14px;
}

.footer-bottom p {
    margin: 0;
    color: #d1d5db;
    font-size: 13px;
}

.footer-bottom div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: #d1d5db !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.page-footer p a {
    color: #fff;
}

.page-footer p a:hover {
    color: #fff;
    text-decoration: underline;
}

.btn-floating {
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 24px;
}

.advertise-list ul li {
    display: inline-block;
}

.navbar-dark .navbar-toggler {
    color: #fff!important;
    border-color: #fff!important;
    width: 45px;
    height: 35px;
    padding: 0;
    font-size: 26px;
}
.custom-card-top{
    padding-top:10px;
    padding-bottom:10px;
}
.custom-card{
    background-color:#fff;
    box-shadow:0px 0px 10px 0px #ccc;
    border-radius:15px;
    text-align:center;
    padding:35px 15px;
    position:relative;
    overflow: hidden;
    height:100%;
}
/*.custom-card:before{
    position: absolute;
    content: '';
    background-color: rgb(41 128 185 / 50%);
    left: -15px;
    bottom: -15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.custom-card:after{
    position: absolute;
    content: '';
    background-color: rgb(41 128 185 / 50%);
    right: -15px;
    top: -15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    }*/
    .description.dapali-sec h2{
        font-size: 44px;
        font-family: monospace!important;

    }
    .description.dapali-sec h1 #timer{
        font-family: cursive;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .description.dapali-sec h1 #timer span#days,
    .description.dapali-sec h1 #timer span#hours, 
    .description.dapali-sec h1 #timer span#minutes, 
    .description.dapali-sec h1 #timer span#seconds {
        font-family: cursive;
        font-size:90px;
        margin-left:10px;
        margin-right:5px;
        text-shadow:5px 5px #000;
    }
    .custom-card h5{
        font-size:16px;
        margin-bottom:0px;
        color:black;
    }
    .description.dapali-sec h4{
        text-transform: uppercase;
        background: -webkit-linear-gradient(#000, #333);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 36px;
        margin-bottom:0px;
    }
    .description.dapali-sec span{
        white-space:nowrap;
    }
    .description.dapali-sec h3 {
        font-size: 46px;
        font-weight: 900;
        margin: 15px 0px;
        text-decoration: underline;
        font-style: italic;
    }
    .custom-card h4{
        font-size:20px;
        margin:10px 0px;
    }
    .custom-card h4 a{
        color:#000;
    }
    .accordion .card-body.collapse{
        padding:0px;
    }
    .accordion .card{
        background-color: transparent;
        box-shadow: none!important;
        border:none!important;
    }
    .accordion .card-header {
        background-color: #fff;
        cursor: pointer;
        border-radius: 5px;
        box-shadow: 0px 0px 5px 0px #ccc;
        position:relative;
        margin-bottom:10px;
    }
    .custom-frm-header{
        border-radius: 25px;
        overflow: hidden;
        border: 1px solid #fff;
    }
    .custom-frm-header input[type=search]{
        border-radius: 0px 0px 0px 18px;
        border: none;
        background: transparent;
        color: #fff;
    }
    .custom-frm-header button.btn{
        background: #fff;
        border-radius: 0;
        color:#000!important;
    }
    .custom-frm-header.form-inline input[type=search].form-control {
        display: inline-block;
        width: calc(100% - 42px);
        vertical-align: middle;
    }
    .custom-frm-header ::-webkit-input-placeholder { /* Edge */
      color: #fff;
      opacity:0.8;
  }

  .custom-frm-header :-ms-input-placeholder { /* Internet Explorer 10-11 */
      color: #fff;
      opacity:0.8;
  }

  .custom-frm-header ::placeholder {
      color: #fff;
      opacity:0.8;
  }
  .description .features .btn{
    background-color: transparent;
    color: #000;
    border:1px solid #eee;
    background:#eee;
    border-radius: 0px;
}
.description .features .btn:hover{
    border:1px solid #ccc;
}
/*--- media queries ---*/

@media(max-width:991px) {
    .app-header {
        box-shadow: 0 4px 14px rgba(0,0,0,0.18);
    }

    .app-navbar {
        min-height: 58px;
        padding: 8px 12px;
    }

    .app-brand {
        font-size: 18px;
    }

    .app-navbar #main-navigation {
        display: none !important;
    }

    .nav-submenu-toggle,
    .header-submenu {
        display: none !important;
    }

    .app-navbar .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .page-footer .features .btn {
        margin-top: 5px;
        padding:10px 10px;
        font-size: 14px;
    }
    .description h2 {
        font-size: 28px!important;
    }
    .description span.main_time {
        font-size: 60px!important;
    }

}

@media(min-width: 992px) and (max-width: 1240px) {
    .app-navbar {
        padding-left: 12px;
        padding-right: 12px;
    }

    .app-navbar .nav-link {
        padding-left: 7px !important;
        padding-right: 7px !important;
        font-size: 12px;
    }

    .app-navbar .time-search-wrap {
        width: 220px;
    }
}

@media(min-width: 1241px) {
    .app-navbar {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 575.98px) {
    .description h1 {
        font-size:24px;
    }
    .description h2 {
        font-size: 24px!important;
    }
    .page-footer h1 {
        font-size:20px;
    }
    .page-footer h2 {
        font-size: 24px;
    }
    .page-footer .features .btn {
        width: 32%;
        margin-top: 10px;
    }
    .description.dapali-sec h1 #timer{
        display:block;
    }
    
    .description.dapali-sec h3 {
        font-size: 36px;
        margin: 10px 0px;
    }
    .description.dapali-sec h4 {
        font-size: 30px;
    }
    .description h2 {
        font-size: 15px;
    }
    .description h3 {
        font-size: 15px;
    }
    .features {
        margin: 0;
    }
    .description span.main_time {
        font-size:50px!important;
        font-weight: 900;
    }
    .description span.main_date {
        font-size: 26px;
    }
    .page-header.header {
    }
    .inner-details-page table tr td {
        font-size: 14px;
        padding: 5px 10px;
    }
    .description{
        padding-top:30px;
        padding-bottom:30px;
    }
    .description.dapali-sec h1 #timer span#days,
    .description.dapali-sec h1 #timer span#hours, 
    .description.dapali-sec h1 #timer span#minutes, 
    .description.dapali-sec h1 #timer span#seconds {
        font-size:60px;
        text-shadow:2px 2px #000;
    }
    .custom-card{
        border-radius:5px;
        padding:15px 10px;
        margin-top:15px;
    }
    .custom-card h5 {
        font-size: 12px;
    }
    .custom-card h4 {
        font-size: 18px;
        margin:7px 0px;
    }
    .description .features .btn{
        font-size:16px;
        margin-top: 10px;
    }

    .compact-footer {
        padding: 22px 0 16px;
    }

    .footer-top,
    .footer-link-grid,
    .footer-bottom {
        grid-template-columns: 1fr;
    }

    .footer-mini-actions {
        justify-content: flex-start;
    }

    .footer-link-grid {
        display: block;
        padding: 12px 0;
    }

    .footer-link-group {
        border-bottom: 1px solid #222;
        padding: 0;
    }

    .footer-link-group summary {
        position: relative;
        margin: 0;
        padding: 13px 0;
        cursor: pointer;
    }

    .footer-link-group summary:after {
        content: "+";
        position: absolute;
        right: 0;
        top: 12px;
        font-size: 18px;
    }

    .footer-link-group[open] summary:after {
        content: "-";
    }

    .footer-link-group a {
        margin: 0;
        padding: 7px 0;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom div {
        margin-top: 8px;
    }
}
