.guide-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.guide-header {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 40px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(106, 17, 203, 0.2);
}

.guide-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.guide-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.guide-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
    max-height: 80vh;
    overflow-y: auto;
}

.guide-sidebar::-webkit-scrollbar {
    width: 5px;
}

.guide-sidebar::-webkit-scrollbar-thumb {
    background: #6a11cb;
    border-radius: 10px;
}

.guide-nav-item {
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.guide-nav-item:hover {
    background: linear-gradient(90deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    color: #6a11cb;
    transform: translateX(5px);
}

.guide-nav-item.active {
    background: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}

.guide-nav-icon {
    margin-right: 10px;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.guide-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    min-height: 500px;
}

.content-section {
    display: none;
    animation: fadeIn 0.5s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #6a11cb;
    font-weight: 700;
}

.content-section h3 {
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 600;
}

.content-section p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul, .content-section ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #6a11cb;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.table-container {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.guide-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.guide-table th {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.guide-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.guide-table tr:hover {
    background-color: rgba(106, 17, 203, 0.05);
}

.guide-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.1) 0%, rgba(37, 117, 252, 0.1) 100%);
    border-radius: 10px;
    padding: 25px;
    margin: 25px 0;
    border: 2px solid #6a11cb;
    position: relative;
}

.highlight-box:before {
    content: "✨";
    position: absolute;
    top: -15px;
    left: 20px;
    background: white;
    padding: 0 10px;
    font-size: 1.5rem;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    border-radius: 10px;
    margin-top: 40px;
}

.cta-btn {
    display: inline-block;
    background: white;
    color: #6a11cb;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: #2575fc;
}

/* Mobil üçün stil */
@media (max-width: 768px) {
    .guide-header {
        padding: 25px 15px;
    }

    .guide-header h1 {
        font-size: 1.8rem;
    }

    .guide-sidebar {
        position: relative;
        top: 0;
        max-height: 300px;
        margin-bottom: 20px;
    }

    .guide-content {
        padding: 20px 15px;
    }

    .guide-nav-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .cta-section {
        padding: 25px 15px;
    }
}
