/* VIP Page Specific Styles */

.vip-container {
    padding: 2rem 0;
}

.vip-info {
    background: rgba(34, 40, 49, 0.9);
    border: 1px solid var(--ancient-gold);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeInDown 0.6s ease-out;
}

.vip-info h4 {
    color: var(--ancient-gold);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.vip-info p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1rem;
}

.command-category {
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease-out;
}

.command-category:nth-child(2) {
    animation-delay: 0.2s;
}

.command-category:nth-child(3) {
    animation-delay: 0.4s;
}

.command-category:nth-child(4) {
    animation-delay: 0.6s;
}

.category-title {
    color: var(--ancient-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ancient-gold), transparent);
}

.command-card {
    background: rgba(34, 40, 49, 0.85);
    border: 2px solid var(--ancient-gold);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(31, 38, 135, 0.2);
    position: relative;
    overflow: hidden;
}

.command-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.command-card:hover::before {
    left: 100%;
}

.command-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: #ffd700;
}

.command-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.command-icon {
    background: linear-gradient(135deg, var(--ancient-gold), #ffd700);
    color: #1a1a1a;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.command-info {
    flex: 1;
}

.command-name {
    color: var(--ancient-gold);
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.command-description {
    color: #e0e0e0;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Warning styling for dangerous commands */
.command-description {
    color: #e0e0e0;
}

.command-card.warning-command {
    border-color: #ff6b6b;
}

.command-card.warning-command:hover {
    border-color: #ff5252;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.command-card.warning-command .command-description {
    color: #ff6b6b;
    font-weight: bold;
}

.command-card.warning-command .command-icon {
    background: linear-gradient(135deg, #ff6b6b, #ff5252);
    color: white;
}

.command-usage {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 0.8rem;
    margin-top: 1rem;
}

.usage-label {
    color: var(--ancient-gold);
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.usage-code {
    background: rgba(0, 0, 0, 0.5);
    color: #00ff00;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.vip-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vip-features li {
    color: #e0e0e0;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.vip-features li i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.usage-instructions {
    color: #e0e0e0;
    line-height: 1.8;
}

.usage-instructions p {
    margin-bottom: 0.8rem;
}

.usage-instructions strong {
    color: var(--ancient-gold);
}

.usage-instructions code {
    background: rgba(0, 0, 0, 0.5);
    color: #00ff00;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading animation for command cards */
.command-card {
    animation: slideInFromBottom 0.5s ease-out;
}

.command-card:nth-child(1) { animation-delay: 0.1s; }
.command-card:nth-child(2) { animation-delay: 0.2s; }
.command-card:nth-child(3) { animation-delay: 0.3s; }
.command-card:nth-child(4) { animation-delay: 0.4s; }
.command-card:nth-child(5) { animation-delay: 0.5s; }
.command-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .command-header {
        flex-direction: column;
        text-align: center;
    }
    
    .command-icon {
        align-self: center;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .command-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .vip-container {
        padding: 1rem 0;
    }
    
    .command-card {
        padding: 1rem;
    }
    
    .command-description {
        font-size: 0.9rem;
    }
} 