:root {
    --primary-color: #8A2BE2;
    --primary-dark: #6B1FA8;
    --primary-light: #B76EF2;
    --background: #0A0A0A;
    --surface: #1A1A1A;
    --surface-light: #2A2A2A;
    --text: #FFFFFF;
    --text-secondary: #AAAAAA;
    --success: #4CAF50;
    --warning: #FFC107;
    --error: #F44336;
    --discord: #5865F2;
    --discord-dark: #454FBF;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    --gradient-discord: linear-gradient(45deg, var(--discord), var(--discord-dark));
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 40px;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.4));
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.premium-button):not(.invite-button)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-links a:not(.premium-button):not(.invite-button):hover::after {
    width: 100%;
}

.premium-button {
    background: var(--gradient-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    color: white !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease !important;
}

.premium-button i {
    font-size: 0.875rem;
}

.invite-button {
    background: var(--gradient-discord);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    color: white !important;
    font-weight: 600;
    transition: transform 0.3s ease !important;
}

.premium-button:hover, .invite-button:hover {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80vh;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(138, 43, 226, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--text), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-button {
    background: var(--gradient-primary);
    color: white;
}

.secondary-button {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.primary-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
}

.hero-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Discord Message Styles */
.discord-message {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 1rem;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
    transform: rotate3d(1, 1, 0, -5deg);
    transition: var(--transition);
}

.discord-message:hover {
    transform: rotate3d(1, 1, 0, 0deg);
}

.message-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.message-header img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.bot-name {
    font-weight: 600;
    color: var(--primary-light);
}

.bot-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.embed {
    background: var(--surface-light);
    border-radius: 4px;
    padding: 1rem;
    border-left: 4px solid var(--primary-color);
}

.embed.danger {
    border-left-color: var(--error);
}

.embed.success {
    border-left-color: var(--success);
}

.embed-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.embed-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.embed-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.embed-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.field-name {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.field-value {
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: linear-gradient(
        180deg, 
        rgba(13, 12, 17, 0.98) 0%, 
        rgba(20, 18, 29, 0.98) 50%,
        rgba(13, 12, 17, 0.98) 100%
    );
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(138, 43, 226, 0.2), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(183, 110, 242, 0.15), transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1), transparent 50%);
    opacity: 0.5;
    animation: gradientPulse 15s ease-in-out infinite;
}

@keyframes gradientPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(183, 110, 242, 0.2));
    padding: 0.85rem 2rem;
    border-radius: 100px;
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(138, 43, 226, 0.3);
    font-size: 1.1rem;
    box-shadow: 
        0 0 30px rgba(138, 43, 226, 0.2),
        inset 0 0 20px rgba(138, 43, 226, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 40px rgba(138, 43, 226, 0.3),
        inset 0 0 30px rgba(138, 43, 226, 0.3);
}

.section-badge i {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.section-header h2 {
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #B76EF2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.3));
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.5;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.features-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    position: relative;
    padding: 3rem;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(23, 21, 31, 0.9),
        rgba(30, 28, 38, 0.9)
    );
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-item::before,
.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    transition: all 0.5s ease;
}

.feature-item::before {
    background: linear-gradient(
        45deg,
        transparent,
        rgba(138, 43, 226, 0.05),
        transparent
    );
    opacity: 0;
    transform: translateX(-100%);
}

.feature-item::after {
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(138, 43, 226, 0.1),
        transparent 50%
    );
    opacity: 0;
    z-index: 1;
}

.feature-item:hover::before {
    opacity: 1;
    transform: translateX(100%);
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.7),
        0 0 100px rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.3);
}

.feature-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
}

.feature-item.reverse .feature-content {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    max-width: 600px;
}

.feature-text h3 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-text h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.8;
    transition: width 0.3s ease;
}

.feature-item:hover .feature-text h3::after {
    width: 120px;
}

.feature-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    line-height: 1.7;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.9), rgba(183, 110, 242, 0.9));
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 
        0 4px 15px rgba(138, 43, 226, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.premium-badge::before {
    content: '👑';
    font-size: 1rem;
    margin-right: 0.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.feature-preview {
    flex: 1;
    max-width: 550px;
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    gap: 1rem;
}

.discord-message.glass {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(138, 43, 226, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0) rotateX(0);
    transform-style: preserve-3d;
    position: relative;
}

.discord-message.glass + .discord-message.glass {
    margin-top: -1rem;
    transform: translateZ(-50px) translateY(0);
    opacity: 0.8;
    scale: 0.95;
}

.discord-message.glass:hover {
    transform: translateY(-8px) translateZ(50px) rotateX(5deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.3);
    z-index: 2;
}

.message-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message-content .header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.message-content .header i {
    font-size: 1.2rem;
    color: var(--success);
    filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.4));
}

.message-content .title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.message-content .description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.message-content .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 0.25rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message-content .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.message-content .timestamp {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.message-content .status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--success);
}

.message-content .status i {
    font-size: 0.9rem;
}

/* Add decorative elements */
.feature-item::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    filter: blur(200px);
    opacity: 0.05;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.5s ease;
}

.feature-item:hover::before {
    opacity: 0.15;
    transform: scale(1.2);
}

.feature-item:nth-child(odd)::before {
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-item:nth-child(even)::before {
    right: -250px;
    top: 50%;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .feature-content {
        gap: 6rem;
    }
    
    .feature-text h3 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 3.5rem;
    }
}

@media (max-width: 1200px) {
    .feature-content {
        gap: 4rem;
    }
    
    .feature-text h3 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .feature-item {
        padding: 2.5rem;
    }
}

@media (max-width: 968px) {
    .features-list {
        gap: 4rem;
    }
    
    .feature-content {
        flex-direction: column !important;
        gap: 3rem;
    }
    
    .feature-text {
        text-align: center;
        max-width: 100%;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .feature-list li:hover {
        transform: translateX(0) translateY(-5px);
    }
    
    .premium-badge {
        margin: 0 auto 2rem;
    }
    
    .feature-preview {
        margin: 0 auto;
    }
    
    .feature-item::before {
        display: none;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .feature-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Premium Section */
.premium {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--background) 0%, var(--surface) 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.premium-card {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.premium-card.featured {
    background: rgba(138, 43, 226, 0.1);
    border: 2px solid var(--primary-color);
    transform: translateY(-20px);
}

.premium-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.premium-card.featured:hover {
    transform: translateY(-30px);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 1rem;
}

.price-subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
}

.price-subtitle .savings {
    color: var(--success);
    font-weight: 600;
}

.card-features {
    margin: 2rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upgrade-button-container {
    margin-top: auto;
    width: 100%;
    padding-top: 1.5rem;
}

.card-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.card-feature-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.card-feature-item i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    color: var(--primary-light);
}

.card-feature-item i.fa-check {
    color: var(--success);
}

.card-feature-item i.fa-times {
    color: var(--error);
}

.card-feature-item span {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.4;
}

.card-feature-item.disabled span {
    color: var(--text-secondary);
}

.card-button {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-button.premium {
    background: var(--primary-color);
    border: none;
}

.card-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
}

.card-button.premium:hover {
    background: var(--primary-dark);
}

@media (max-width: 1200px) {
    .premium-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        max-width: 900px;
        gap: 3rem;
    }
    
    .premium-card.featured {
        transform: translateY(0);
    }
    
    .premium-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-cards {
        grid-template-columns: 1fr 1fr;
        max-width: 900px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .premium {
        padding: 4rem 1rem;
    }
    
    .premium-grid {
        gap: 2rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

/* Commands Section Styles */
.commands {
    padding: 8rem 2rem;
    position: relative;
}

.commands-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.command-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 2rem;
    min-height: 200px;
    width: 100%;
}

.command-group {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.command-group.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    opacity: 1;
    transform: translateY(0);
}

.command-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: fit-content;
    min-width: 0;
}

.command-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(138, 43, 226, 0.3);
    transform: translateY(-2px);
}

.command-name {
    font-family: 'Consolas', monospace;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    background: rgba(138, 43, 226, 0.1);
    border-radius: 6px;
    width: fit-content;
    white-space: nowrap;
}

.command-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.command-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(138, 43, 226, 0.3);
}

.command-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.85rem 1.5rem;
    border-radius: var(--border-radius);
    color: var(--text);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    min-width: 160px;
    justify-content: center;
}

.category i {
    font-size: 1.1rem;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.category:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.category:hover i {
    transform: scale(1.1);
}

.category.active {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: translateY(-2px);
}

.category.active i {
    color: white;
}

@media (max-width: 1200px) {
    .command-group.active {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .commands {
        padding: 4rem 1rem;
    }

    .command-categories {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category {
        width: 100%;
        min-width: unset;
    }
    
    .command-list {
        padding: 1.5rem;
    }
}

/* Support Section */
.support {
    padding: 6rem 2rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.support-card {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    color: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(183, 110, 242, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(138, 43, 226, 0.1);
}

.support-card:active {
    transform: translateY(-2px);
}

.support-card i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
    transition: transform 0.3s ease;
}

.support-card:hover i {
    transform: scale(1.1);
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.support-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: var(--surface);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-light);
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0.5rem 0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .discord-message {
        transform: none;
    }
    
    .features h2, .premium h2, .commands h2, .support h2 {
        font-size: 2rem;
    }
    
    .premium-card.featured {
        transform: none;
    }
    
    .premium-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .command-categories {
        flex-direction: column;
    }
    
    .category {
        width: 100%;
        justify-content: center;
    }
}

.discord-message.glass .message-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upgrade-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.2), rgba(183, 110, 242, 0.2));
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 12px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(138, 43, 226, 0.2) inset;
}

.upgrade-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.5), rgba(183, 110, 242, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.upgrade-button::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.upgrade-button:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(138, 43, 226, 0.4) inset;
}

.upgrade-button:hover::before {
    opacity: 0.1;
}

.upgrade-button:hover::after {
    opacity: 1;
}

.upgrade-button i {
    font-size: 1rem;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.3));
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}

.modal.active {
    opacity: 1;
}

.modal-content {
    background: var(--surface);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(138, 43, 226, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 100px rgba(138, 43, 226, 0.1);
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal-header {
    position: sticky;
    top: 0;
    background: var(--surface);
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-header h3 i {
    color: var(--primary-light);
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.3));
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

/* Server Preview Styles */
.server-preview {
    text-align: center;
    margin-bottom: 2rem;
}

.server-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
}

.server-preview h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.server-preview ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.server-preview li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.server-preview li:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.server-preview li i {
    color: var(--success);
}

/* Credits Styles */
.credits-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.developer-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.developer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dev-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-color);
    padding: 3px;
    background: var(--surface);
}

.developer-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.dev-role {
    color: var(--primary-light);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.dev-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(138, 43, 226, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(138, 43, 226, 0.4);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Modal Button */
.modal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.3);
}

.modal-button i {
    font-size: 1.1rem;
}

/* Documentation Modal Styles */
.docs-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 100%;
    overflow-x: hidden;
}

.docs-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.75rem;
    border: 1px solid rgba(138, 43, 226, 0.15);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.docs-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.docs-section h4 i {
    color: var(--primary-light);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.3));
}

/* Setup Steps */
.setup-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.setup-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--gradient-primary);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.step-content ul {
    list-style: none;
    padding: 0;
}

.step-content li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-content li i {
    color: var(--success);
    font-size: 0.9rem;
}

.step-content code {
    background: rgba(138, 43, 226, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Consolas', monospace;
    color: var(--primary-light);
}

/* Feature Documentation */
.feature-docs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-doc {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(138, 43, 226, 0.15);
    position: relative;
}

.feature-doc.premium {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(183, 110, 242, 0.05));
    border-color: rgba(138, 43, 226, 0.25);
    padding-right: 4.5rem; /* Extra padding for premium tag */
}

.feature-doc h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-doc ul {
    list-style: none;
    padding: 0;
}

.feature-doc li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

.premium-tag {
    display: inline-block;
    background: linear-gradient(135deg, #6B1FA8, #8A2BE2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    position: static;
    box-shadow: none;
    z-index: 1;
}

/* Commands List */
.commands-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
}

.command-doc {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(138, 43, 226, 0.15);
    position: relative;
    overflow: visible;
    margin-bottom: 0.75rem;
}

.command-doc code {
    display: block;
    font-family: 'Consolas', monospace;
    color: var(--primary-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.command-doc p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.command-doc.premium {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05), rgba(183, 110, 242, 0.05));
    border-color: rgba(138, 43, 226, 0.25);
    padding-right: 4.5rem; /* Extra padding for premium tag */
}

.command-doc .premium-tag {
    top: 0.5rem;
    right: 0.5rem;
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
}

/* Config Options */
.config-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.config-option {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(138, 43, 226, 0.15);
}

.config-option h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.config-option ul {
    list-style: none;
    padding: 0;
}

.config-option li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.95rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .setup-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
    }
    
    .feature-docs, .commands-list, .config-options {
        grid-template-columns: 1fr;
    }
    
    .docs-section {
        padding: 1.25rem;
    }
    
    .docs-section h4 {
        font-size: 1.2rem;
    }
    
    .premium-tag {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        max-width: 70px;
    }
    
    .command-doc {
        padding: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .command-doc p {
        padding-right: 50px;
    }
    
    .command-doc.premium {
        padding-right: 3.5rem;
    }
}

/* Documentation Page Styles */
.docs-header {
    background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
    padding: 8rem 2rem 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.docs-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff, var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.docs-header p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.quick-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: rgba(138, 43, 226, 0.1);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 12px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-nav-item:hover {
    transform: translateY(-2px);
    background: rgba(138, 43, 226, 0.15);
    border-color: rgba(138, 43, 226, 0.3);
}

.quick-nav-item i {
    color: var(--primary-light);
}

.docs-content {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-block {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(138, 43, 226, 0.15);
}

.feature-block h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.feature-details {
    margin-top: 2rem;
}

.feature-details h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-light);
}

.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.strategy-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.strategy-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.strategy-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.strategy-card ul {
    list-style: none;
    padding: 0;
}

.strategy-card li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.feature-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.9rem;
}

.implementation-tips {
    background: rgba(138, 43, 226, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.implementation-tips h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.implementation-tips ul {
    list-style: none;
    padding: 0;
}

.implementation-tips li {
    color: var(--text-secondary);
    padding: 0.4rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.implementation-tips li:before {
    content: '•';
    color: var(--primary-light);
}

.docs-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.docs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.docs-footer {
    background: var(--surface);
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.5rem;
    background: var(--gradient-discord);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.footer-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.protection-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.protection-level {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid rgba(138, 43, 226, 0.2);
}

.protection-level h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.protection-level p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.code-example {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.code-example code {
    color: var(--primary-light);
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .docs-header {
        padding: 6rem 1rem 3rem;
    }

    .docs-header h1 {
        font-size: 2.5rem;
    }

    .docs-content {
        padding: 2rem 1rem;
    }

    .feature-block {
        padding: 1.5rem;
    }

    .feature-block h3 {
        font-size: 1.75rem;
    }

    .strategy-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .quick-nav {
        flex-direction: column;
    }

    .quick-nav-item {
        width: 100%;
        justify-content: center;
    }
}

.copy-button {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(138, 43, 226, 0.2);
    border: none;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: rgba(138, 43, 226, 0.3);
    transform: scale(1.1);
}

.quick-nav-item.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.quick-nav-item.active i {
    color: white;
}

.code-example {
    position: relative;
}

/* Additional Documentation Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.docs-section {
    scroll-margin-top: 100px;
}

.docs-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.docs-section h2 i {
    color: var(--primary-light);
    font-size: 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .docs-section h2 {
        font-size: 2rem;
    }

    .copy-button {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

.trial-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.trial-button:hover {
    transform: translateY(-2px);
    background: var(--primary-dark);
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.4);
}

.trial-button i {
    font-size: 1rem;
}

/* Subscription Section Styles */
.subscription-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 2rem 0;
}

.subscription-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: #333;
}

.subscription-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.subscription-card.premium {
    background: linear-gradient(135deg, #7289da 0%, #5865f2 100%);
    color: white;
    position: relative;
    z-index: 1;
}

.subscription-card.premium::before {
    content: "Recommended";
    position: absolute;
    top: 0;
    right: 0;
    background-color: #ffd700;
    color: #333;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-bottom-left-radius: 8px;
    z-index: 2;
}

.subscription-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.subscription-card.premium .subscription-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.subscription-header h4 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
    color: inherit;
}

.subscription-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: inherit;
}

.subscription-alternate {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.25rem;
    color: inherit;
}

.subscription-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    color: inherit;
}

.subscription-body p {
    margin-top: 0;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: inherit;
}

.subscription-body h5 {
    font-size: 1rem;
    margin: 0 0 1rem;
    font-weight: 600;
    color: inherit;
}

.subscription-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.subscription-body li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    color: inherit;
}

.subscription-body li i {
    position: absolute;
    left: 0;
    color: #43b581;
    font-size: 1rem;
}

.subscription-card.premium .subscription-body li i {
    color: #ffffff;
}

.subscription-action {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.subscription-card.premium .subscription-action {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.subscription-action p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.subscription-action code {
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.07);
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
    color: inherit;
}

.subscription-card.premium .subscription-action code {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.subscription-faq {
    margin-top: 3rem;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: #333;
}

.subscription-faq h4 {
    font-size: 1.25rem;
    margin: 0 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #5865f2;
    display: inline-block;
    color: #333;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: #333;
}

.faq-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.faq-item h5 {
    font-size: 1.1rem;
    margin: 0 0 0.75rem;
    font-weight: 600;
    color: #5865f2;
}

.faq-item p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

.faq-item code {
    background-color: rgba(0, 0, 0, 0.07);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #333;
}

.important-notice {
    background-color: #fff8e1;
    border-left: 4px solid #ffd54f;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 0 8px 8px 0;
    color: #333;
}

.important-notice h4 {
    display: flex;
    align-items: center;
    margin: 0 0 0.75rem;
    font-weight: 600;
    color: #f57c00;
}

.important-notice h4 i {
    margin-right: 0.5rem;
}

.important-notice p {
    margin: 0;
    line-height: 1.5;
    color: #333;
}

/* Responsive styles for subscription section */
@media (max-width: 768px) {
    .subscription-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .subscription-card {
        width: 100%;
        max-width: 400px;
        margin-bottom: 1.5rem;
    }
    
    .subscription-faq {
        padding: 1.5rem;
    }
}

/* Subscription Note Enhancement */
.subscription-note {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    border-left: 4px solid #5865f2;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.disclaimer-content .subscription-note {
    background-color: rgba(255, 255, 255, 0.95);
    margin: 1rem 0 0 0;
}

/* Dark Mode Adjustments for Text Readability */
.dark-mode .subscription-note,
.docs-section .subscription-note {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
} 