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

:root {
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-white: #ffffff;
    --text-red: #cc0000;
    --text-red-dark: #990000;
    --border-red: #660000;
    --grid-red: rgba(204, 0, 0, 0.1);
}

body {
    font-family: 'Courier New', monospace;
    background-color: var(--bg-dark);
    color: var(--text-white);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-red) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-red) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

.navbar,
header.navbar {
    position: relative;
    z-index: 100;
    padding: 20px 40px;
    border-bottom: 1px solid var(--border-red);
    background-color: var(--bg-darker);
    animation: slideDown 0.4s ease-out;
    backdrop-filter: blur(10px);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: bold;
}

.logo a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.logo-text {
    color: var(--text-white);
    font-family: 'Courier New', monospace;
    font-size: 20px;
    font-weight: bold;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-red-dark);
    text-decoration: underline;
    font-size: 14px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
}


.nav-links a:hover {
    color: var(--text-red);
}

.portal-btn {
    background: transparent;
    border: 1px solid var(--border-red);
    padding: 8px 16px;
    color: var(--text-red-dark);
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.portal-btn:hover {
    background: var(--text-red-dark);
    color: var(--text-white);
}

.main-content {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 100px);
}

.hero {
    text-align: center;
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subtitle {
    font-size: 14px;
    color: var(--text-red-dark);
    margin-bottom: 30px;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-out 0.2s both;
}

.headline {
    font-size: 72px;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    display: block;
}

.headline .white,
.headline .red {
    display: inline-block;
    animation: fadeInUp 0.8s ease-out both;
}

.headline .white {
    animation-delay: 0.6s;
    color: var(--text-white);
}

.headline .red {
    animation-delay: 0.8s;
    position: relative;
    color: var(--text-red);
}

.headline .red::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--text-red);
    animation: expandWidth 1s ease-out 1.2s forwards;
}

.description {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 1s both;
    opacity: 0;
}

.description br {
    display: block;
    animation: fadeIn 0.5s ease-out both;
}

.description br:nth-child(2) {
    animation-delay: 1.2s;
}

.cta-button {
    background-color: var(--text-red-dark);
    border: 1px solid var(--border-red);
    color: var(--text-white);
    padding: 15px 40px;
    font-size: 16px;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.6s both;
}


.cta-button:hover {
    background-color: var(--text-red);
}

.section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 48px;
    font-weight: bold;
    color: var(--text-white);
    margin-bottom: 20px;
}

.section-description {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 40px;
}

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

.form-container {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px;
    border: 1px solid var(--border-red);
    background-color: var(--bg-darker);
    animation: scaleIn 0.6s ease-out, fadeInUp 0.6s ease-out;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(204, 0, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--text-white);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-white);
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-red);
    color: var(--text-white);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--text-red);
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: var(--text-red-dark);
    border: 1px solid var(--border-red);
    color: var(--text-white);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.btn:hover {
    background-color: var(--text-red);
}

.btn:active {
    opacity: 0.9;
}

.btn-secondary {
    background-color: transparent;
    margin-top: 10px;
}

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

.plan-card {
    border: 1px solid var(--border-red);
    padding: 30px;
    background-color: var(--bg-darker);
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
}

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

.plan-card:hover {
    border-color: var(--text-red);
}

.plan-card:hover .plan-name {
    color: var(--text-red);
}


.plan-name {
    font-size: 24px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 36px;
    color: var(--text-red);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    margin-bottom: 20px;
}

.plan-features li {
    padding: 8px 0;
    color: var(--text-white);
    border-bottom: 1px solid var(--border-red);
}

.plan-features li:last-child {
    border-bottom: none;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    border: 1px solid var(--border-red);
    padding: 20px;
    background-color: var(--bg-darker);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out both;
}

.card:hover {
    border-color: var(--text-red);
}

.card:hover .card-title {
    color: var(--text-red);
}

.card-title {
    font-size: 18px;
    color: var(--text-red);
    margin-bottom: 15px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table th,
.table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-red);
    color: var(--text-white);
    font-size: 14px;
    transition: all 0.2s ease;
}

.table tr {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.table tr:hover {
    background-color: rgba(204, 0, 0, 0.05);
}

.table th {
    color: var(--text-red);
    font-weight: bold;
}

.status-active {
    color: #00ff00;
}

.status-pending {
    color: #ffff00;
}

.status-inactive {
    color: #ff0000;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid var(--border-red);
    background-color: var(--bg-darker);
    color: var(--text-white);
    animation: slideInRight 0.4s ease-out, fadeOut 0.4s ease-in 4.6s;
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    min-width: 300px;
    max-width: 400px;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

.alert-success {
    border-color: #00ff00;
    color: #00ff00;
}

.alert-error {
    border-color: #ff0000;
    color: #ff0000;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    border: 1px solid var(--border-red);
    padding: 20px;
    background-color: var(--bg-darker);
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.5s ease-out both;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.stat-card:hover {
    border-color: var(--text-red);
}

.stat-card:hover .stat-value {
    color: var(--text-red);
}

.stat-value {
    font-size: 32px;
    color: var(--text-red);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-white);
    font-size: 14px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-darker);
    border: 1px solid var(--border-red);
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    color: var(--text-white);
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-red);
    font-size: 24px;
    cursor: pointer;
}

.crypto-info {
    background-color: var(--bg-dark);
    padding: 20px;
    margin: 20px 0;
    border: 1px solid var(--border-red);
    animation: fadeIn 0.5s ease-out;
    transition: all 0.3s ease;
}

.crypto-info:hover {
    border-color: var(--text-red);
}

.crypto-info h3 {
    animation: pulse 2s ease-in-out infinite;
}

.crypto-address {
    font-family: 'Courier New', monospace;
    word-break: break-all;
    color: var(--text-red);
    margin-top: 10px;
    padding: 10px;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-red);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: all;
}

.crypto-address:hover {
    border-color: var(--text-red);
}

.crypto-address:active {
    opacity: 0.8;
}

.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-red);
    border-top-color: var(--text-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.main-content {
    animation: fadeIn 0.4s ease-out;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(204, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(204, 0, 0, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Table animations */
.table tbody tr {
    animation: fadeInUp 0.5s ease-out both;
    opacity: 0;
}

.table tbody tr:nth-child(1) { animation-delay: 0.1s; }
.table tbody tr:nth-child(2) { animation-delay: 0.2s; }
.table tbody tr:nth-child(3) { animation-delay: 0.3s; }
.table tbody tr:nth-child(4) { animation-delay: 0.4s; }
.table tbody tr:nth-child(5) { animation-delay: 0.5s; }
.table tbody tr:nth-child(6) { animation-delay: 0.6s; }
.table tbody tr:nth-child(n+7) { animation-delay: 0.7s; }

/* Card entrance animations */
.card {
    animation: scaleIn 0.5s ease-out both;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }

/* Text animations */
.section-title {
    animation: fadeInUp 0.8s ease-out;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--text-red);
    animation: expandWidth 1s ease-out 0.5s forwards;
}

@keyframes expandWidth {
    to {
        width: 100px;
    }
}

/* Logo animation */
.logo {
    animation: slideInLeft 0.6s ease-out;
}


/* Grid animation */
.dashboard-grid > * {
    animation: fadeInUp 0.6s ease-out both;
}

.dashboard-grid > *:nth-child(1) { animation-delay: 0.1s; }
.dashboard-grid > *:nth-child(2) { animation-delay: 0.2s; }
.dashboard-grid > *:nth-child(3) { animation-delay: 0.3s; }

/* Status indicators */
.status-active,
.status-pending,
.status-inactive {
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    position: relative;
}

.status-active::before {
    content: '●';
    position: absolute;
    left: -15px;
    animation: pulse 1s ease-in-out infinite;
}

/* Form input focus animation */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--text-red);
}

/* Button press animation */

/* Loading state animation */
.loading {
    animation: spin 0.8s linear infinite, pulse 1.5s ease-in-out infinite;
}

/* Crypto address animation */
.crypto-address {
    position: relative;
    overflow: hidden;
}



/* Alert entrance */
.alert {
    animation: slideInRight 0.4s ease-out, fadeOut 0.4s ease-in 4.6s;
}

/* Modal animations */
.modal {
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    animation: scaleIn 0.3s ease-out 0.1s both;
}

/* Scroll reveal animations */
@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    animation: reveal 0.6s ease-out both;
}


/* Smooth transitions for all interactive elements */
a, button, input, select, textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Page transition */
.main-content {
    animation: fadeIn 0.4s ease-out, slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Typing effect removed - using fadeInUp instead */

/* Staggered list animations */
.plan-features li {
    animation: slideInLeft 0.4s ease-out both;
    opacity: 0;
}

.plan-features li:nth-child(1) { animation-delay: 0.1s; }
.plan-features li:nth-child(2) { animation-delay: 0.2s; }
.plan-features li:nth-child(3) { animation-delay: 0.3s; }
.plan-features li:nth-child(4) { animation-delay: 0.4s; }
.plan-features li:nth-child(5) { animation-delay: 0.5s; }
.plan-features li:nth-child(n+6) { animation-delay: 0.6s; }

/* Number counter animation */
.stat-value,
.plan-price {
    animation: scaleIn 0.6s ease-out;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection animation */
::selection {
    background: var(--text-red);
    color: var(--text-white);
}

/* Focus visible animations */
*:focus-visible {
    outline: 2px solid var(--text-red);
    outline-offset: 2px;
}

/* Loading skeleton */
@keyframes skeleton {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, var(--bg-darker) 0px, var(--bg-dark) 40px, var(--bg-darker) 80px);
    background-size: 200px 100%;
    animation: skeleton 1.5s ease-in-out infinite;
}

/* Success checkmark animation */
@keyframes checkmark {
    0% {
        transform: scale(0) rotate(45deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(45deg);
    }
    100% {
        transform: scale(1) rotate(45deg);
        opacity: 1;
    }
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #00ff00;
    border-top: none;
    border-right: none;
    transform: rotate(45deg);
    animation: checkmark 0.5s ease-out;
}

/* Floating animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Shake animation for errors */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* WAF Rules List */
.waf-rules-list {
    list-style: none;
    margin-top: 15px;
    padding: 0;
}

.waf-rules-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-red);
    margin-bottom: 10px;
    animation: fadeInUp 0.3s ease;
    transition: all 0.3s ease;
}

.waf-rules-list li:hover {
    border-color: var(--text-red);
}

.waf-rules-list li code {
    font-size: 13px;
    word-break: break-all;
    flex: 1;
    color: var(--text-white);
}

.btn-remove {
    background: none;
    border: none;
    color: var(--text-red-dark);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 10px;
    line-height: 1;
    margin-left: 15px;
}

.btn-remove:hover {
    color: var(--text-red);
}

/* Statistics Charts */
.stats-chart-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-chart-item {
    animation: fadeInUp 0.5s ease;
}

.stat-chart-label {
    font-size: 13px;
    color: var(--text-red-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-chart-value {
    font-size: 28px;
    color: var(--text-red);
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.stat-chart-bar {
    width: 100%;
    height: 25px;
    background-color: var(--bg-darker);
    border: 1px solid var(--border-red);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.stat-chart-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--text-red-dark), var(--text-red));
    animation: expandWidth 1.5s ease-out;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.5);
    transition: width 0.3s ease;
}


/* Footer Styles */
.footer {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-red);
    padding: 60px 20px 20px;
    margin-top: 100px;
    animation: fadeInUp 0.6s ease-out;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-red);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-red-dark);
    text-decoration: underline;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--text-red);
}

.footer-bottom {
    border-top: 1px solid var(--border-red);
    padding-top: 20px;
    text-align: center;
    color: var(--text-red-dark);
    font-size: 12px;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    border: 1px solid var(--border-red);
    padding: 40px;
    background-color: var(--bg-dark);
    text-align: center;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
    border-color: var(--text-red);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.feature-card h3 {
    color: var(--text-red);
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.6;
}

/* Stats Section */
.stats-section {
    padding: 100px 20px;
    background-color: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-red);
    background-color: var(--bg-darker);
    transition: all 0.4s ease;
    animation: scaleIn 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item:hover {
    border-color: var(--text-red);
}

.stat-number {
    font-size: 48px;
    color: var(--text-red);
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works */
.how-it-works {
    padding: 100px 20px;
    background-color: var(--bg-darker);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    border: 1px solid var(--border-red);
    padding: 40px;
    background-color: var(--bg-dark);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
    opacity: 0;
}

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card:hover {
    border-color: var(--text-red);
}

.step-number {
    font-size: 72px;
    color: var(--text-red);
    font-weight: bold;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.step-card h3 {
    color: var(--text-white);
    font-size: 24px;
    margin: 20px 0 15px;
}

.step-card p {
    color: var(--text-white);
    font-size: 14px;
    line-height: 1.6;
}

/* Plans Preview */
.plans-preview {
    margin-top: 40px;
}

