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

body {
    font-family: "Segoe UI", sans-serif;
    background: #0f1115;
    color: white;
    line-height: 1.6;
}

img {
    max-width: 100%;
    border-radius: 18px;
}

.hero {
    padding: 40px 8%;
    min-height: 100vh;
    background:
        radial-gradient(circle at top right,
        rgba(0,120,212,0.25),
        transparent 30%);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
}

.store-button,
.primary-btn,
.secondary-btn {
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
}

.store-button,
.primary-btn {
    background: #0078d4;
    color: white;
    padding: 14px 24px;
}

.secondary-btn {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 14px 24px;
}

.store-button:hover,
.primary-btn:hover {
    background: #1b8fff;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.08);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 20px;
    color: #c7d1db;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

section {
    padding: 90px 8%;
}

h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
}

.feature-grid,
.widget-grid,
.light-grid,
.screenshot-grid {
    display: grid;
    gap: 30px;
}

.feature-grid,
.widget-grid,
.light-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.screenshot-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.card,
.widget-card,
.light-card,
.faq-item {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.06);
}

.card h3,
.widget-card h3,
.light-card h3,
.faq-item h3 {
    margin: 20px 0 14px;
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.analytics-text ul {
    margin-top: 20px;
    padding-left: 20px;
}

.analytics-text li {
    margin-bottom: 10px;
}

.cta {
    text-align: center;
}

.cta p {
    margin-bottom: 30px;
    color: #c7d1db;
}

footer {
    padding: 40px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #8a94a6;
}

@media (max-width: 900px) {

    .hero-content,
    .analytics-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .navbar {
        flex-direction: column;
        gap: 20px;
    }
}

   .privacyLink {   position: fixed;  padding: 0em; color: #444;   height: 60px; bottom: 13px; left: 0%; margin-left: 520px; -webkit-transition: -webkit-transform .3s ease-in-out; -ms-transition: -ms-transform .3s ease-in-out; transition: transform .3s ease-in-out; z-index: 1; }



 .privacyBottom { padding: 0em; color: #444; position: fixed; width: 80px; height: 80px; bottom: -3px; left: 50%; margin-left: 100px; -webkit-transition: -webkit-transform .3s ease-in-out; -ms-transition: -ms-transform .3s ease-in-out; transition: transform .3s ease-in-out; z-index: 1; }
 .privacyBottom:hover { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); }
 .privacyBottom.hidden {
    display: none;
}


 .scrollToBottom { padding: 0em; color: #444; position: fixed; width: 80px; height: 80px; bottom: -3px; left: 50%; margin-left: 0px; -webkit-transition: -webkit-transform .3s ease-in-out; -ms-transition: -ms-transform .3s ease-in-out; transition: transform .3s ease-in-out; z-index: 1; }
 .scrollToBottom:hover { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); }
 .scrollToBottom.hidden {
    display: none;
}
 .scrollToTop { padding: 0em; color: #444; position: fixed; width: 80px; height: 80px; bottom: -3px; left: 50%; margin-left: -100px; -webkit-transition: -webkit-transform .3s ease-in-out; -ms-transition: -ms-transform .3s ease-in-out; transition: transform .3s ease-in-out; z-index: 1; }
 .scrollToTop:hover { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); }


/* Fix fixed ad overflow */
.stpdwrapper {
  max-width: 100vw !important;
  right: 0 !important;
}
