/* Main CSS - Common styles for all pages */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 25%, #2d0000 50%, #1a0000 75%, #0a0000 100%);
    min-height: 100vh;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: rgba(10, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(10, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(153, 27, 27, 0.3);
}

.logo-img:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(153, 27, 27, 0.5);
    border-radius: 12px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #991b1b, #ffffff, #991b1b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    25% { background-position: 50% 0%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 100%; }
    100% { background-position: 0% 50%; }
}

@keyframes logoRainbow {
    0% { background-position: 0% 50%; }
    33% { background-position: 100% 0%; }
    66% { background-position: 100% 100%; }
    100% { background-position: 0% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    display: none;
}

.nav-link:hover::before {
    display: none;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    display: none;
}

.btn:hover::before {
    display: none;
}

.btn-primary {
    background: #ffffff;
    color: #991b1b;
    box-shadow: 0 4px 15px rgba(153, 27, 27, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 27, 27, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #991b1b;
    transform: translateY(-2px);
}

.btn-success {
    background: #ffffff;
    color: #991b1b;
}

.btn-warning {
    background: #ffc107;
    color: #991b1b;
}

.btn-danger {
    background: #991b1b;
    color: #ffffff;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.875rem;
}

/* Footer Styles */
.footer {
    background: rgba(10, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 80px;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.footer-subtitle {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-desc {
    color: #cccccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

/* Error Pages Styles */
.error-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0000 0%, #1a0000 25%, #2d0000 50%, #1a0000 75%, #0a0000 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.error-image {
    margin-bottom: 30px;
}

.error-logo {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    object-fit: cover;
    animation: float 3s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    box-shadow: 0 8px 25px rgba(153, 27, 27, 0.3);
}

.error-title {
    font-size: 8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #ffffff, #991b1b, #ffffff, #991b1b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: logoRainbow 2s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.error-subtitle {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.error-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    min-width: 180px;
    padding: 15px 30px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.error-actions .btn i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .error-title {
        font-size: 6rem;
    }
    
    .error-subtitle {
        font-size: 2rem;
    }
    
    .error-description {
        font-size: 1.1rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .error-logo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@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);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #991b1b;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffffff;
}

/* ===== HOME PAGE STYLES ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: #ffffff;
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.server-logo {
    width: 300px;
    height: 300px;
    border-radius: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.3);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(153, 27, 27, 0.3);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(153, 27, 27, 0.5);
    }
}

.server-logo:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 50px rgba(153, 27, 27, 0.7);
    border-radius: 30px;
    animation: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 60px;
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    display: none;
}

.feature-card:hover::before {
    display: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    padding: 5px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(153, 27, 27, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(153, 27, 27, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(153, 27, 27, 0.3);
    }
}

.feature-card:hover .feature-icon img {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(153, 27, 27, 0.5);
    border-radius: 18px;
    animation: none;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-desc {
    color: #cccccc;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 0, 0, 0.8) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
}

/* ===== PRICING SECTION STYLES ===== */
.pricing-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(153, 27, 27, 0.15) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.2);
    transition: all 0.4s ease;
    position: relative;
}

.premium-card {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(153, 27, 27, 0.3);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(153, 27, 27, 0.4);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: bold;
    color: #ffffff;
}

.price-currency {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 10px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.pricing-features::-webkit-scrollbar {
    width: 4px;
}

.pricing-features::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 4px 8px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.75rem;
    margin-left: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.verified-icon {
    color: #ffffff;
    font-size: 0.95rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 1rem;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .pricing-features {
        max-height: 300px;
    }
}

/* ===== TEAM PAGE STYLES ===== */
.team-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 0, 0, 0.8) 100%);
}

.team-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: #ffffff;
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s ease-in-out infinite;
}

.team-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.team-section {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
}

.card-sex {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(153, 27, 27, 0.15) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.2);
}

.card-sex::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-sex:hover::before {
    opacity: 1;
}

.card-sex:nth-child(1) { animation-delay: 0.1s; }
.card-sex:nth-child(2) { animation-delay: 0.2s; }
.card-sex:nth-child(3) { animation-delay: 0.3s; }
.card-sex:nth-child(4) { animation-delay: 0.4s; }
.card-sex:nth-child(5) { animation-delay: 0.5s; }
.card-sex:nth-child(6) { animation-delay: 0.6s; }
.card-sex:nth-child(7) { animation-delay: 0.7s; }

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.card-sex:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(153, 27, 27, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 27, 27, 0.2) 100%);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-back {
    display: none;
}

.avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #ffffff;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.3);
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(153, 27, 27, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 12px 35px rgba(153, 27, 27, 0.4);
        transform: scale(1.01);
    }
}

.avatar:not([src]),
.avatar[src=""],
.avatar[src*="undefined"] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(153, 27, 27, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar:not([src])::after,
.avatar[src=""]::after,
.avatar[src*="undefined"]::after {
    content: '👤';
    font-size: 3rem;
    opacity: 0.5;
}

.avatar::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid #991b1b;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-sex:hover .avatar {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(153, 27, 27, 0.6);
    border-color: rgba(255, 255, 255, 0.8);
    animation: avatarGlow 2s ease-in-out infinite;
}

@keyframes avatarGlow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(153, 27, 27, 0.6);
    }
    50% {
        box-shadow: 0 18px 45px rgba(153, 27, 27, 0.8), 0 0 20px rgba(255, 255, 255, 0.2);
    }
}

.card-sex:hover .avatar::after {
    opacity: 1;
}

.member-name {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 0.8rem 0;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(153, 27, 27, 0.5);
    transition: all 0.3s ease;
}

.card-sex:hover .member-name {
    transform: scale(1.05);
    text-shadow: 0 4px 20px rgba(153, 27, 27, 0.7);
}

.member-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 0;
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.member-bio {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-style: italic;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.socials a:hover {
    background: #ffffff;
    color: #991b1b;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
    border-color: #ffffff;
}

/* ===== BOT PAGE STYLES ===== */
.bot-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 0, 0, 0.8) 100%);
}

.bot-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: #ffffff;
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s ease-in-out infinite;
}

.bot-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.bot-categories {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.bot-section {
    padding: 80px 0;
}

.bot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bot-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.bot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

.bot-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.bot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.bot-image img:not([src]),
.bot-image img[src=""],
.bot-image img[src*="undefined"] {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 27, 27, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-image img:not([src])::after,
.bot-image img[src=""]::after,
.bot-image img[src*="undefined"]::after {
    content: '🤖';
    font-size: 4rem;
    opacity: 0.5;
}

.bot-card:hover .bot-image img {
    transform: scale(1.1);
}

.bot-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.bot-status.online {
    background: #ffffff;
    color: #991b1b;
}

.bot-status.offline {
    background: #991b1b;
    color: #ffffff;
}

.bot-info {
    padding: 25px;
}

.bot-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.bot-description {
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.bot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.bot-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #cccccc;
    font-size: 0.9rem;
}

.stat i {
    color: #ffffff;
}

.bot-actions {
    display: flex;
    gap: 10px;
}

.bot-actions .btn {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}



.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
}

.stat-info h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.stat-info p {
    color: #cccccc;
    font-size: 0.9rem;
}

.bot-management {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
}

.bot-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bot-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.bot-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.bot-avatar {
    position: relative;
    width: 60px;
    height: 60px;
}

.bot-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.bot-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid #991b1b;
}

.bot-status.online {
    background: #ffffff;
}

.bot-status.offline {
    background: #991b1b;
}

.bot-details {
    flex: 1;
}

.bot-details h3 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.bot-id {
    color: #888888;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.bot-stats {
    display: flex;
    gap: 15px;
}

.bot-stats .stat {
    color: #cccccc;
    font-size: 0.8rem;
}

.bot-actions {
    display: flex;
    gap: 10px;
}

.quick-actions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-5px);
}

.action-btn i {
    font-size: 2rem;
    color: #ffffff;
}

.action-btn span {
    font-weight: 500;
}

.recent-activity {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.activity-content {
    flex: 1;
}

.activity-text {
    color: #ffffff;
    margin-bottom: 5px;
}

.activity-time {
    color: #888888;
    font-size: 0.8rem;
}

.text-success { color: #ffffff !important; }
.text-warning { color: #ffc107 !important; }
.text-info { color: #17a2b8 !important; }
.text-danger { color: #991b1b !important; }

/* ===== LOGIN MODAL STYLES ===== */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.login-content {
    background: linear-gradient(135deg, #450a0a, #991b1b);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(153, 27, 27, 0.5);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 10px;
    background: #ffffff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-header p {
    color: #cccccc;
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #ffffff;
    border-color: #ffffff;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.login-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-discord {
    background: #5865F2;
    color: #ffffff;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}

.discord-login-section {
    text-align: center;
    margin-bottom: 20px;
}

.login-note {
    color: #cccccc;
    font-size: 0.9rem;
    margin-top: 10px;
}

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.divider span {
    background: linear-gradient(135deg, #450a0a, #991b1b);
    padding: 0 15px;
    color: #cccccc;
    font-size: 0.9rem;
}

.manual-login-section {
    margin-top: 20px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.login-footer {
    text-align: center;
    margin-top: 20px;
}

.login-footer p {
    color: #cccccc;
    margin: 5px 0;
    font-size: 0.9rem;
}

.login-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.login-footer a:hover {
    color: #ffffff;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.user-details h3 {
    color: #ffffff;
    margin: 0;
    font-size: 1.2rem;
}

.user-details p {
    color: #ffffff;
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}


@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .server-logo {
        width: 200px;
        height: 200px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .bot-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .stats-section {
        grid-template-columns: 1fr;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bot-item {
        flex-direction: column;
        text-align: center;
    }
    
    .bot-actions {
        justify-content: center;
    }
}

/* ===== SUPPORT PAGE STYLES ===== */
.support-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(10, 0, 0, 0.8) 100%);
}

.support-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    background: #ffffff;
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s ease-in-out infinite;
}

.support-subtitle {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

.support-section {
    padding: 80px 0;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.support-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(153, 27, 27, 0.15) 100%);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.2);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(153, 27, 27, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(153, 27, 27, 0.2) 100%);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    background: #ffffff;
    color: #991b1b;
    transform: scale(1.1) rotate(5deg);
}

.support-card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.support-card-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(153, 27, 27, 0.15) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.3);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.faq-question i {
    color: #ffffff;
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.contact-section {
    padding: 80px 0;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(153, 27, 27, 0.15) 100%);
    border-radius: 25px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(153, 27, 27, 0.2);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: block;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

/* ===== LIGHT MODE STYLES ===== */
body.light-mode {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #16213e 75%, #1a1a2e 100%) !important;
    color: #e0e0e0 !important;
}

body.light-mode .navbar {
    background: rgba(26, 26, 46, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .nav-link {
    color: #e0e0e0 !important;
}

body.light-mode .nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #00d4ff !important;
}

body.light-mode .nav-link.active {
    background: rgba(0, 212, 255, 0.2) !important;
    color: #00d4ff !important;
}

body.light-mode .logo-text {
    background: linear-gradient(45deg, #00d4ff, #00a8cc, #00d4ff, #00a8cc) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: none !important;
}

body.light-mode .theme-toggle {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    color: #e0e0e0 !important;
}

body.light-mode .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #00d4ff !important;
}

body.light-mode .card-sex,
body.light-mode .pricing-card,
body.light-mode .feature-card,
body.light-mode .stat-item,
body.light-mode .bot-card,
body.light-mode .support-card,
body.light-mode .faq-item,
body.light-mode .contact-form {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 52, 96, 0.9) 100%) !important;
    border-color: transparent !important;
    color: #e0e0e0 !important;
}

body.light-mode .member-name,
body.light-mode .pricing-title,
body.light-mode .section-title,
body.light-mode .hero-title,
body.light-mode .team-title,
body.light-mode .bot-title,
body.light-mode .support-title,
body.light-mode .footer-title,
body.light-mode .footer-subtitle,
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4 {
    color: #00d4ff !important;
}

body.light-mode .member-desc,
body.light-mode .pricing-desc,
body.light-mode .feature-desc,
body.light-mode .bot-description,
body.light-mode .support-card-desc,
body.light-mode .footer-desc,
body.light-mode p {
    color: #b0b0b0 !important;
}

body.light-mode .member-bio {
    color: #888888 !important;
}

body.light-mode .hero-subtitle,
body.light-mode .team-subtitle,
body.light-mode .bot-subtitle,
body.light-mode .support-subtitle {
    color: #a0a0a0 !important;
}

body.light-mode .btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%) !important;
    color: #ffffff !important;
}

body.light-mode .btn-secondary {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: #00d4ff !important;
}

body.light-mode .btn-secondary:hover {
    background: #00d4ff !important;
    color: #1a1a2e !important;
}

body.light-mode .stat-number,
body.light-mode .price-amount {
    color: #00d4ff !important;
}

body.light-mode .stat-label {
    color: #b0b0b0 !important;
}

body.light-mode .feature-item,
body.light-mode .footer-links a,
body.light-mode .social-links a {
    color: #b0b0b0 !important;
}

body.light-mode .footer-links a:hover,
body.light-mode .social-links a:hover {
    color: #00d4ff !important;
}

body.light-mode .social-links a {
    background: rgba(255, 255, 255, 0.1) !important;
}

body.light-mode .social-links a:hover {
    background: #00d4ff !important;
    color: #1a1a2e !important;
}

body.light-mode .copy-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: transparent !important;
    color: #e0e0e0 !important;
}

body.light-mode .copy-btn:hover {
    background: rgba(0, 212, 255, 0.2) !important;
    border-color: transparent !important;
    color: #00d4ff !important;
}

body.light-mode .toast {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(15, 52, 96, 0.98) 100%) !important;
    border-color: transparent !important;
    color: #e0e0e0 !important;
}

body.light-mode .toast-content {
    color: #e0e0e0 !important;
}

body.light-mode .toast-content i {
    color: #00d4ff !important;
}

body.light-mode .verified-icon {
    color: #00d4ff !important;
}

body.light-mode .popular-badge {
    background: rgba(0, 212, 255, 0.2) !important;
    color: #00d4ff !important;
}

body.light-mode .premium-card {
    border-color: transparent !important;
}

body.light-mode .text-shadow,
body.light-mode .member-name {
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.5) !important;
}

body.light-mode .footer {
    background: rgba(26, 26, 46, 0.9) !important;
    border-top: 1px solid transparent !important;
}

body.light-mode .bar {
    background: #e0e0e0 !important;
}

body.light-mode .text-danger {
    color: #00d4ff !important;
}

body.light-mode .logo-img {
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3) !important;
}

body.light-mode .logo-img:hover {
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.5) !important;
}

/* Override all red colors in light mode */
body.light-mode * {
    --red-color: #00d4ff !important;
    --accent-red: #00d4ff !important;
}

/* Override box-shadows with red color */
body.light-mode .card-sex,
body.light-mode .pricing-card,
body.light-mode .feature-card,
body.light-mode .bot-card,
body.light-mode .support-card,
body.light-mode .avatar,
body.light-mode .server-logo,
body.light-mode .feature-icon img,
body.light-mode .error-logo,
body.light-mode .stat-item,
body.light-mode .hero-content,
body.light-mode .team-content,
body.light-mode .bot-content,
body.light-mode .support-content {
    box-shadow: none !important;
}

body.light-mode .card-sex:hover,
body.light-mode .pricing-card:hover,
body.light-mode .feature-card:hover,
body.light-mode .bot-card:hover,
body.light-mode .support-card:hover,
body.light-mode .avatar:hover,
body.light-mode .server-logo:hover,
body.light-mode .feature-icon img:hover {
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4) !important;
}

/* Override backgrounds with red gradient */
body.light-mode .card-sex,
body.light-mode .pricing-card,
body.light-mode .feature-card,
body.light-mode .stat-item,
body.light-mode .bot-card,
body.light-mode .support-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8) 0%, rgba(15, 52, 96, 0.9) 100%) !important;
}

/* Override text shadows with red */
body.light-mode .member-name,
body.light-mode .hero-title,
body.light-mode .section-title {
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.5) !important;
}

body.light-mode .member-name:hover {
    text-shadow: 0 4px 20px rgba(0, 212, 255, 0.7) !important;
}

/* Override border colors */
body.light-mode .avatar {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

body.light-mode .avatar::after {
    border-color: transparent !important;
}
