@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

body {
    margin: 0;
    padding: 0;
    background-color: #1f1f1f;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-orange {
    color: #ff5500;
}

a {
    text-decoration: none;
}

.header {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    font-weight: 700;
}

.search-link {
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

.download-link {
    color: #ccc;
    text-transform: uppercase;
}

.download-link:hover {
    color: #fff;
}

.hero {
    padding: 80px 0 120px;
    text-align: center;
    background: radial-gradient(circle at center top, #2a2a2a 0%, #1f1f1f 60%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shield-container {
    margin-bottom: 20px;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 10px 0 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-big-orange {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ff5500;
    color: white;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 30px;
    border-radius: 3px;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-big-orange:hover {
    background-color: #ff6600;
}

.sub-os {
    color: #777;
    font-size: 13px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.faq-link {
    background-color: #ff5500;
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 10px 20px;
    border-radius: 2px;
    text-transform: uppercase;
}

.info-section {
    padding: 100px 0;
    border-top: 1px solid #2a2a2a;
    background-color: #1f1f1f;
    position: relative;
}

.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

.info-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 30%, #1f1f1f 100%);
    pointer-events: none;
    z-index: 0;
}

.section-protect-game {
    background-color: #1f1f1f;
}

.section-protect-data {
    background-color: #1a1a1a;
}

.section-trust {
    background-color: #1f1f1f;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.section-title {
    color: #ccc;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    color: #999;
    line-height: 1.6;
    font-size: 15px;
}

.feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background-image: url('/static/img/bullet.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.img-col img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.footer-cta {
    padding: 60px 0 100px;
    text-align: center;
    background-color: #1a1a1a;
    border-top: 1px solid #333;
}