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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    padding: 16px 24px;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
  height: 42px;  
  width: auto;
  opacity: 0.95;
}

}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 80px;
    background-image: url('image-prelander-operagx-vpn.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.gx-red {
    color: #ff2a2a;
    font-weight: inherit;
}

.hero-subtitle {
    font-size: clamp(16px, 3vw, 20px);
    color: #e5e5e5;
    margin-bottom: 48px;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-features {
    list-style: none;
    max-width: 450px;
    margin: 0 auto 56px;
    text-align: left;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    color: #f5f5f5;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.feature-icon {
    color: #dc2626;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    flex: 1;
}

.cta-button {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    padding: 24px 64px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(220, 38, 38, 0.4);
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.6);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(220, 38, 38, 0.2);
    padding: 12px 24px;
    text-align: center;
    z-index: 1000;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.footer-disclaimer {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-link {
    font-size: 12px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #dc2626;
    text-decoration: underline;
}

.footer-separator {
    font-size: 12px;
    color: #4b5563;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    overflow-y: auto;
    padding: 20px;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    padding: 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: #dc2626;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    border-bottom: 2px solid rgba(220, 38, 38, 0.3);
    padding-bottom: 16px;
}

.modal-body {
    color: #d1d5db;
    line-height: 1.7;
}

.modal-body p {
    margin-bottom: 16px;
}

.modal-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #f3f4f6;
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-body strong {
    color: #dc2626;
}

@media (max-width: 768px) {
    .header {
        padding: 12px 20px;
    }

    .header-logo {
        height: 20px;
    }

    .hero {
        padding: 100px 20px 100px;
    }

    .hero-title {
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin-bottom: 40px;
    }

    .hero-features {
        margin-bottom: 48px;
    }

    .hero-feature {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .cta-button {
        font-size: 18px;
        padding: 20px 48px;
        width: 100%;
        max-width: 400px;
    }

    .footer {
        padding: 10px 20px;
    }

    .footer-disclaimer {
        font-size: 10px;
    }

    .footer-link {
        font-size: 11px;
    }

    .modal-content {
        padding: 32px 24px;
        max-height: 90vh;
    }

    .modal-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 18px 32px;
        font-size: 16px;
    }

    .hero-feature {
        font-size: 15px;
    }

    .footer-container {
        gap: 6px;
    }

    .footer-links {
        gap: 8px;
    }

    .modal-content {
        padding: 24px 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .modal-body h3 {
        font-size: 16px;
    }
    .cta-note {
  margin-top: 12px;
  font-size: 13px;
  color: #cccccc;
  opacity: 0.85;
}

}
