/* Global styles for Guide components */
.guide-detail-container {
    min-height: 100vh;
    background-color: #000000;
    position: relative;
    padding-bottom: 100px;
}

.guide-detail-container::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -20%;
    width: 150%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(239, 105, 38, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.admin-guide-controls {
    background-color: rgba(255, 184, 108, 0.1);
    border-bottom: 1px solid rgba(255, 184, 108, 0.3);
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.btn-console-admin {
    background: transparent;
    color: #ffb86c;
    border: 1px solid #ffb86c;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    padding: 6px 15px;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-console-admin:hover {
    background: #ffb86c;
    color: #000;
    box-shadow: 0 0 10px rgba(255, 184, 108, 0.5);
}

.guide-hero {
    position: relative;
    z-index: 1;
    padding: 60px 20px 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(20,20,20,0.8) 100%);
    margin-bottom: 40px;
}

.back-link {
    color: #aaaaaa;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
    display: inline-block;
}

.back-link:hover {
    color: #EF6926;
}

.guide-category {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #EF6926;
}

.modern-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.modern-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
}

.guide-content-card {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.guide-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.warning-alert {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.warning-alert i {
    font-size: 1.5rem;
    margin-top: 2px;
}

.warning-alert strong {
    color: #ffda6a;
}

.guide-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.guide-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #EF6926, #ff7b3d);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(239, 105, 38, 0.3);
}

.step-content {
    flex-grow: 1;
}

.step-content h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 8px; /* Align with step number circle */
}

.step-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.guide-image-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.advanced-tip {
    background: rgba(239, 105, 38, 0.05);
    border-left: 4px solid #EF6926;
    padding: 25px;
    border-radius: 0 12px 12px 0;
}

.advanced-tip p {
    font-size: 1rem;
    color: #bbb;
}

.modern-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.modern-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.modern-btn:hover::before {
    left: 100%;
}

.modern-btn-primary {
    background: linear-gradient(135deg, #5865F2, #4752C4); /* Discord color for join button */
    color: white;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.modern-btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.4);
    color: white;
}

.modern-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .guide-content-card { padding: 30px 20px; }
    .guide-step { flex-direction: column; gap: 15px; }
    .step-content h3 { margin-top: 0; }
    .modern-title { font-size: 2.2rem; }
}