@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

/*
	Privacy Policy by Arindam Karmakar
    © 2025 Arindam Karmakar. All rights reserved.
*/

body {
    background: #fff;
    color: #000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 28px;
    margin: 0;
}

h1 {
    font-size: 40px;
    line-height: 60px;
}

h1,
h2 {
    font-weight: 700;
}

h2 {
    font-size: 32px;
    line-height: 48px;
    margin-top: 1em;
    margin-bottom: 0em;
}

h3 {
    font-size: 24px;
    line-height: 36px;
    margin-top: 1em;
    margin-bottom: 0em;
}

h3,
h4 {
    font-weight: 700;
}

h4 {
    font-size: 20px;
    line-height: 30px;
}

h5 {
    font-size: 16px;
}

h5,
h6 {
    line-height: 24px;
    font-weight: 700;
}

h6 {
    font-size: calc(16px);
}

a[rel~="external"] {
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    color: #000;
    font-weight: bold;
    text-decoration: none;
}

a[rel~="external"] .link-text {
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-underline-offset: 5px;
    font-weight: bold;
}

a[rel~="external"]::after {
    content: "↗";
    font-size: 0.85em;
    pointer-events: none;
    user-select: none;
    line-height: 1;
    position: relative;
    top: 3px;
    margin-left: 2px;
    font-weight: bold;
}

a[rel~="external"]:hover {
    color: #1a73e8;
}

a[rel~="footer"] {
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
    color: #444;
}

a[rel~="footer"]::after {
    content: "↗";
    font-size: 0.85em;
    pointer-events: none;
    user-select: none;
    text-decoration: none;
    line-height: 1;
    position: relative;
    top: 2px;
    margin-left: 2px;
}

a[rel~="footer"]:hover {
    color: #1a73e8;
}

.visible {
    display: block;
}

.hidden {
    display: none;
}

.page {
    width: 100%;
}

.container {
    position: relative;
    width: 90%;
    max-width: 1024px;
    margin: 0 auto;
}

.header {
    border-bottom: 1px solid #eee;
    padding: 21px 0;
    background-color: snow;
}

/* Flexbox for header content */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    font-size: 24px;
    line-height: 24px;
    font-weight: 700;
    margin: 4.5px 0 0 0;
    color: #000;
}

.header-subtitle {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0;
    color: #444;
}

.footer {
    border-top: 1px solid #eee;
    padding: 18px 0;
    background-color: snow;
}

.footer-title {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: inherit;
    color: #444;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: inherit;
}

.footer-bar p {
    margin: 0;
    display: flex;
    align-items: center;
}

.content-container {
    padding-top: 8px;
    padding-bottom: 32px;
}

/* Regular disclaimer */
.disclaimer-regular {
    color: #009dff;
    font-weight: 450;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

/* Add Bootstrap icon before text */
.disclaimer-regular::before {
    font-family: "bootstrap-icons";
    content: "\F151";
    font-size: 1.2rem;
    color: #009dff;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Special disclaimer */
.disclaimer-special {
    color: #07ac49;
    font-weight: 450;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

/* Add Bootstrap icon before text */
.disclaimer-special::before {
    font-family: "bootstrap-icons";
    content: "\F151";
    font-size: 1.2rem;
    color: #07ac49;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Warning disclaimer */
.disclaimer-warning {
    color: #ffad03;
    font-weight: 450;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}

/* Add Bootstrap icon before text */
.disclaimer-warning::before {
    font-family: "bootstrap-icons";
    content: "\F151";
    font-size: 1.2rem;
    color: #ffad03;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Dashed underline */
.dashed-underline {
    text-decoration-line: underline;
    text-decoration-style: dashed;
    text-underline-offset: 5px;
    font-weight: bold;
}

.heart {
    display: inline-flex;
    align-items: center;
}

.heart::before {
    font-family: "bootstrap-icons";
    content: "\F415";
    font-size: 1rem;
    color: red;
    position: relative;
    top: 2.5px;
}

.copyright::before {
    content: "©";
}

.google-play-icon {
    margin: -8px 0;
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url('../assets/icons/google-play.svg') no-repeat center center;
    background-size: contain;
}

.store-link {
    display: inline-flex;
}

/* .store-link .google-play-icon {
    filter: grayscale(100%);
    transition: filter 0.2s ease-in-out;
}

.store-link:hover .google-play-icon {
    filter: none;
} */

.android-icon::before {
    font-family: "bootstrap-icons";
    content: "\F7D0";
    color: #07ac49;
    display: flex;
    transform: rotate(270deg);
    font-size: 2.5rem;
    margin: 0 -8px;
}

.developer-link {
    text-decoration: none;
    outline: none;
    border: none;
    display: inline-flex;
}