/* =======================================================
   GLOBAL
   ======================================================= */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    max-width: 1200px;
    margin: auto;
    background: #111111;
    color: #f5f5f5;
    line-height: 1.7;
    padding: 60px 20px 40px;
}

footer {
    margin-top: 80px;
    padding: 30px;
    text-align: center;
    color: #999999;
    border-top: 1px solid #222;
    font-size: 0.9em;
}

h1 {
    color: #ffffff;
}

h2 {
    color: #00c7b7;
}

/* =======================================================
   CONTAINERS
   ======================================================= */

.container {
    max-width: 1100px;
    background: #1c1c1e;
    margin: auto;
    padding: 20px;
    border-radius: 16px;
}

.containerPolicy {
    max-width: 1100px;
    margin: auto;
    background: #1c1c1e;
    padding: 30px;
    border-radius: 16px;
}

/* =======================================================
   HERO
   ======================================================= */

.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero img.logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 20px auto;
}

/* =======================================================
   HIGHLIGHT
   ======================================================= */

.highlight {
    background: #0f766e;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.1rem;
    margin: 40px 0;
}

.highlightPolicy {
    background: #0f766e;
    color: white;
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 600;
}

/* =======================================================
   FEATURES
   ======================================================= */

.feature {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin: 80px 0;
}

.feature.reverse {
    flex-direction: row-reverse;
}

.feature img {
    max-width: 320px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h2 {
    color: #00c7b7;
    margin-top: 0;
}

/* =======================================================
   SCREENSHOTS
   ======================================================= */

.screenshots {
    text-align: center;
    margin: 100px 0;
}

.screenshots h2 {
    color: #00c7b7;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.gallery img {
    width: 180px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
}

/* =======================================================
   LINKS / BUTTONS
   ======================================================= */

a {
    color: #00c7b7;
    text-decoration: none;
}

.top-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.top-buttons img {
    height: 44px;
    display: block;
}

.btn {
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    background: #00c7b7;
    color: #111;
    transition: 0.2s;
}

.btn:hover {
    opacity: 0.85;
}

.btn.secondary {
    background: transparent;
    border: 1px solid #00c7b7;
    color: #00c7b7;
}

/* =======================================================
   STICKY BAR (DESKTOP)
   ======================================================= */

.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 8px 12px;

    background: rgba(28, 28, 30, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;

    will-change: transform;

    white-space: nowrap;
}

.sticky-bar.hidden {
    transform: translateY(-120%);
    opacity: 0;
}

.sticky-app img {
    height: 34px;
    display: block;
}

.sticky-link {
    font-size: 14px;
    font-weight: 500;
    color: #00c7b7;
    text-decoration: none;

    padding: 6px 10px;
    border-radius: 8px;

    border: 1px solid rgba(0, 199, 183, 0.4);
}

.sticky-link:hover {
    background: rgba(0, 199, 183, 0.1);
}

.sticky-content {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: auto;
}

/* =======================================================
   GALLERY PAGE
   ======================================================= */

.gallery-premium {
    display: flex;
    flex-direction: column;
    gap: 70px;
    margin-bottom: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 24px;
    background: #2c2c2e;
    box-shadow: 0 8px 30px rgba(0,0,0,0.35);
    transition: transform 0.25s ease;
}

.gallery-item img {
    display: block;
    width: 100%;
    max-height: 700px;
    object-fit: cover;
}

.gallery-text {
    padding: 30px;
    text-align: center;
}

.gallery-text h2 {
    color: #00c7b7;
    margin-top: 0;
}

.gallery-text p {
    color: #cccccc;
    margin-bottom: 0;
}

.gallery-item:hover {
    transform: translateY(-3px);
}

/* =======================================================
   MOBILE (STICKY BAR = iOS PILL SCROLL)
   ======================================================= */

@media (max-width: 600px) {

    .sticky-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;

        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;

        scrollbar-width: none;
    }
    
    sticky-content {
        width: max-content;
        flex-wrap: nowrap;
    }

    .sticky-bar::-webkit-scrollbar {
        display: none;
    }

    .sticky-link,
    .sticky-app {
        flex: 0 0 auto;
    }

    .sticky-link {
        white-space: nowrap;

        font-size: 13px;
        padding: 8px 14px;
        border-radius: 999px;

        background: rgba(0, 199, 183, 0.12);
        border: 1px solid rgba(0, 199, 183, 0.35);
    }

    .sticky-app img {
        height: 30px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
}

/* =======================================================
   SUPPORT PAGE
   ======================================================= */

.hero-text {
text-align: center;
color: #cccccc;
max-width: 700px;
margin: 20px auto 40px auto;
font-size: 1.15rem;
}

.faq-item {
border-bottom: 1px solid #333;
padding: 15px 0;
}

.faq-item:first-of-type {
border-top: 1px solid #333;
}

.faq-item summary {
cursor: pointer;
color: #00c7b7;
font-weight: 600;
font-size: 1.05rem;
}

.faq-item p,
.faq-item ul {
color: #cccccc;
margin-top: 15px;
}

.faq-item li {
margin-bottom: 8px;
}

/* =======================================================
   FOOTER JS
   ======================================================= */
.site-footer {
    margin-top: 80px;
    padding: 30px 20px;
    border-top: 1px solid #222;
    color: #999999;
    font-size: 0.9em;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a {
    color: #00c7b7;
    text-decoration: none;
    margin-left: 10px;
}

.footer-links a:hover {
    opacity: 0.8;
}