/* Global Styles */
:root {
    --primary-color: #d80000;
    /* Blood Red */
    --primary-dark: #a00000;
    --accent-color: #ff3333;
    --dark-bg: #050505;
    --card-bg: #111111;
    --text-color: #ffffff;
    --text-muted: #b0b0b0;
    --glow-shadow: 0 0 20px rgba(216, 0, 0, 0.4);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Background Animation */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: floating 10s infinite alternate;
}

.glow-1 {
    background: var(--primary-color);
    top: -200px;
    left: -200px;
}

.glow-2 {
    background: #500000;
    bottom: -200px;
    right: -200px;
    animation-delay: -5s;
}

@keyframes floating {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: var(--glow-shadow);
}

/* Hero Section */
.hero {
    padding: 200px 0 120px;
    text-align: center;
    background: radial-gradient(circle at center, rgba(216, 0, 0, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    max-width: 350px;
    margin-bottom: 40px;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 20px rgba(216, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(216, 0, 0, 0.5);
    background: #ff0000;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.btn-white {
    background: #fff;
    color: #000;
}

.btn-white:hover {
    background: #e0e0e0;
}

/* Plans Section */
.plans-section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 80px;
    text-transform: uppercase;
    font-weight: 800;
}

.highlight {
    color: var(--primary-color);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.plan-card.featured {
    border: 1px solid var(--primary-color);
    background: linear-gradient(180deg, rgba(216, 0, 0, 0.1) 0%, var(--card-bg) 100%);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #fff;
}

.price-currency {
    font-size: 1.2rem;
    margin-right: 5px;
    color: var(--primary-color);
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.features {
    margin-bottom: 40px;
}

.features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d0d0d0;
    font-size: 0.95rem;
}

.features i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
}

/* Reseller Section */
.reseller-section {
    padding: 100px 0;
    background: #080808;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 80px;
    margin-top: -60px;
}

.reseller-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.socio-card {
    background: linear-gradient(135deg, #1a0000 0%, #000000 100%);
    padding: 50px;
    border-radius: 10px;
    border: 1px solid rgba(216, 0, 0, 0.3);
    text-align: center;
}

.socio-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
}

.socio-card h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.socio-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.socio-desc strong {
    color: var(--primary-color);
}

.reseller-pricing h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

th,
td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    background: rgba(216, 0, 0, 0.1);
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

td {
    color: #d0d0d0;
}

td strong {
    color: #fff;
    font-size: 1.1rem;
}

.cta-reseller {
    text-align: right;
}

/* Footer */
footer {
    background: #000;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    height: 40px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-logo-container:hover .footer-logo {
    opacity: 1;
}

.footer-logo-container {
    margin-bottom: 20px;
}

footer p {
    color: #444;
    font-size: 0.85rem;
}

/* Floating Button */
.float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(216, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(216, 0, 0, 0);
    }
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Responsive */
@media (max-width: 900px) {
    .reseller-container {
        grid-template-columns: 1fr;
    }

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