/* Guide Page CSS */
.gd-hero {
    min-height: 40vh;
    padding-bottom: 20px;
}

.gd-layout {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    align-items: flex-start;
}

/* Sidebar Navigation */
.gd-sidebar {
    width: 250px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.gd-sidebar h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--ancient-gold);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.gd-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gd-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.gd-nav a i {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.gd-nav a:hover, .gd-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.gd-nav a.active i {
    color: var(--ancient-gold);
    text-shadow: 0 0 10px rgba(229, 199, 126, 0.5);
}

/* Content Area */
.gd-content {
    flex-grow: 1;
    min-width: 0;
}

.gd-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px;
}

.gd-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.gd-section p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 25px;
}

.gd-step {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
}

.gd-step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(229, 199, 126, 0.2));
    border: 1px solid rgba(229, 199, 126, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--ancient-gold);
    flex-shrink: 0;
}

.gd-step h4 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 8px;
}

.gd-step p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.gd-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.gd-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #ddd;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-top: 10px;
}

.gd-tip {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid rgba(241, 196, 15, 0.4);
    padding: 20px;
    border-radius: 12px;
}

.gd-tip i {
    font-size: 1.5rem;
    margin-top: 3px;
}

.gd-tip p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.gd-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.gd-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.gd-list li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
    color: var(--ancient-gold);
}

.gd-list li strong {
    color: #fff;
}

code {
    background: rgba(0, 0, 0, 0.5);
    color: var(--ancient-gold);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
}

@media(max-width: 960px) {
    .gd-layout {
        flex-direction: column;
    }
    .gd-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 40px;
    }
    .gd-card-grid {
        grid-template-columns: 1fr;
    }
}
