/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #050505;
    color: #fff;
    overflow-x: hidden;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid #ff0000;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #ff0000;
    text-shadow: 0 0 10px #ff0000;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

nav a:hover {
    color: #ff0000;
    text-shadow: 0 0 5px #ff0000;
}

/* BUTTON */
.btn-access {
    padding: 10px 20px;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 10px #ff0000;
    transition: 0.3s;
}

.btn-access:hover {
    background: #ff1a1a;
    box-shadow: 0 0 20px #ff0000;
}

/* HERO */
.hero {
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 70px;
    letter-spacing: 3px;
}

.hero h1 span {
    color: #ff0000;
    text-shadow: 0 0 20px #ff0000;
}

.status-tag {
    color: #00ff88;
    margin-bottom: 15px;
}

.hero p {
    color: #aaa;
    margin: 10px 0;
}

.sub {
    color: #ff0000;
    font-weight: bold;
}

/* BUTTONS */
.buttons {
    margin-top: 30px;
}

.btn {
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.primary {
    background: #ff0000;
    color: #fff;
    box-shadow: 0 0 15px #ff0000;
}

.primary:hover {
    box-shadow: 0 0 25px #ff0000;
}

.secondary {
    border: 1px solid #ff0000;
    color: #ff0000;
}

.secondary:hover {
    background: #ff0000;
    color: #fff;
}

/* PRICING */
.pricing {
    padding: 80px 20px;
    text-align: center;
}

.pricing h1 {
    margin-bottom: 40px;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.plan {
    background: #0a0a0a;
    padding: 30px;
    width: 300px;
    border: 1px solid #222;
    border-radius: 10px;
    transition: 0.3s;
}

.plan:hover {
    border-color: #ff0000;
    box-shadow: 0 0 20px #ff0000;
}

.plan h2 span {
    font-size: 14px;
    color: #aaa;
}

.plan ul {
    list-style: none;
    margin: 20px 0;
}

.plan ul li {
    margin: 10px 0;
    color: #ccc;
}

.plan button {
    padding: 10px 20px;
    border: none;
    background: #ff0000;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 0 10px #ff0000;
}

.plan button:hover {
    box-shadow: 0 0 20px #ff0000;
}

/* POPULAR */
.popular {
    border: 1px solid #ff0000;
    box-shadow: 0 0 20px #ff0000;
}

.badge {
    background: #ff0000;
    padding: 5px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* FEATURES */
.features {
    padding: 80px 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-box {
    background: #0a0a0a;
    padding: 25px;
    border: 1px solid #222;
    border-radius: 10px;
    transition: 0.3s;
}

.feature-box:hover {
    border-color: #ff0000;
    box-shadow: 0 0 15px #ff0000;
}

/* STATUS */
.status {
    padding: 80px 20px;
    text-align: center;
}

.status-box {
    background: #0a0a0a;
    padding: 30px;
    display: inline-block;
    border-radius: 10px;
    border: 1px solid #222;
}

.status-box p {
    margin: 10px 0;
}

/* FAQ */
.faq {
    padding: 80px 20px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #0a0a0a;
    padding: 20px;
    margin: 15px 0;
    border: 1px solid #222;
    border-radius: 10px;
    text-align: left;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: #ff0000;
    box-shadow: 0 0 10px #ff0000;
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #ff0000;
}