
body {
    background-image: none; 
    background-color: var(--dark-bg);
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(3px); 
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: -1;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/stealseek.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6; 
    z-index: -2;
    display: block; 
}

.hero-section {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(to bottom, rgba(190, 0, 0, 0.15), rgba(0, 0, 0, 0.65));
    border-radius: 20px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50l-10 10 10 10 10-10-10-10zm0-20l-10 10 10 10 10-10-10-10zm0 40l-10 10 10 10 10-10-10-10z' fill='%23be0000' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(190, 0, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(190, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-section h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #be0000, #a00000);
    border-radius: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 15px 25px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(0, 0, 0, 0.7);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(190, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff0000;
    text-shadow: 0 2px 8px rgba(190, 0, 0, 0.5);
}

.stat-label {
    color: var(--secondary-text);
    margin-top: 8px;
    font-size: 0.9rem;
}

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

.feature-card {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: all 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(190, 0, 0, 0.2);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(190, 0, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(190, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover .feature-icon {
    background-color: rgba(190, 0, 0, 0.3);
    box-shadow: 0 0 25px rgba(190, 0, 0, 0.4);
    animation: pulse 1.5s infinite;
    transform: scale(1.1);
}

.feature-icon i {
    color: #ff0000;
    font-size: 28px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
    color: #ff3333;
}

.feature-card h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--secondary-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50l-10 10 10 10 10-10-10-10zm0-20l-10 10 10 10 10-10-10-10zm0 40l-10 10 10 10 10-10-10-10z' fill='%23be0000' fill-opacity='0.05'/%3E%3C/svg%3E");
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.cta-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(190, 0, 0, 0.3);
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    color: var(--secondary-text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.primary-btn,
.secondary-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.primary-btn::before,
.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.primary-btn {
    background-color: #be0000;
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(190, 0, 0, 0.3);
}

.primary-btn:hover {
    background-color: #4d0101;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(190, 0, 0, 0.4);
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
    left: 100%;
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.secondary-btn:hover {
    background-color: rgba(190, 0, 0, 0.1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(190, 0, 0, 0.3);
}

.page-title-container {
    margin-bottom: 40px;
    position: relative;
    padding: 15px 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(0, 0, 0, 0.65);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-title-container::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #be0000;
    border-radius: 3px;
}

.page-title {
    font-size: 28px;
    color: var(--text-color);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .feature-stats {
        flex-direction: column;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(190, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(190, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(190, 0, 0, 0);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(190, 0, 0, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(190, 0, 0, 0.8);
    }
    100% {
        text-shadow: 0 0 5px rgba(190, 0, 0, 0.5);
    }
}


/*
.main-content {
    margin-left: 250px;
}
*/