.guide-content {
    margin-top: 100px;
    padding: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    margin-bottom: 4rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.subtitle {
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
    font-family: 'Orbitron', sans-serif;
    margin: 1rem 0;
    letter-spacing: 2px;
}

.guide-section {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.guide-section h2 {
    color: #ffd700;
    font-size: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guide-section h2 i {
    font-size: 1.8rem;
}

.content-box {
    color: white;
    line-height: 1.6;
}

.info-grid, .analysis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card, .analysis-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-card:hover, .analysis-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.info-card h3, .analysis-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card ul, .analysis-card ul {
    list-style: none;
    padding: 0;
}

.info-card li, .analysis-card li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li:before, .analysis-card li:before {
    content: '•';
    color: #ffd700;
    position: absolute;
    left: 0;
}

.timeline {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin-top: 1rem;
}

.era {
    margin-bottom: 2rem;
    padding-left: 2rem;
    border-left: 3px solid #ffd700;
}

.era:last-child {
    margin-bottom: 0;
}

.era h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.era ul {
    list-style: none;
}

.era ul li {
    margin: 0.8rem 0;
    color: #fff;
}

.universe-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-container {
    width: 100%;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ffd700;
    color: #ffd700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
}

.tab-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#watch-order .tab-buttons,
#reading-order .tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

#watch-order .tab-btn,
#reading-order .tab-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #ffd700;
    color: #ffd700;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#watch-order .tab-btn:hover,
#reading-order .tab-btn:hover,
#watch-order .tab-btn.active,
#reading-order .tab-btn.active {
    background: rgba(255, 215, 0, 0.2);
    transform: translateY(-2px);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s ease forwards;
}

@media (max-width: 768px) {
    .guide-content {
        padding: 1rem;
    }

    .main-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .universe-tabs {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
    }
}

/* Logo rengi düzeltmesi */
.logo-text a {
    color: white !important;
    text-decoration: none;
}

/* Sidebar submenu stilleri */
.submenu-parent {
    position: relative;
}

.submenu {
    display: none;
    padding-left: 2rem;
    margin-top: 0.5rem;
}

.submenu.active {
    display: block;
}

.submenu li {
    margin: 0.5rem 0;
}

.submenu a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.submenu a:hover {
    opacity: 1;
    transform: translateX(5px);
}

/* Yeni section stilleri */
.history-timeline {
    position: relative;
    padding: 2rem 0;
}

.history-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.history-item::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: -2rem;
    width: 2px;
    background: rgba(255, 215, 0, 0.3);
}

.history-year {
    min-width: 100px;
    text-align: right;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.history-content {
    flex: 1;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    position: relative;
}

.history-content::before {
    content: '';
    position: absolute;
    left: -1rem;
    top: 50%;
    width: 1rem;
    height: 2px;
    background: rgba(255, 215, 0, 0.3);
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-text {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    margin-bottom: 1rem;
}

.series-desc {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.key-issues {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin: 0.5rem 0;
}

.key-issues ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.reading-order {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin: 0.5rem 0;
}

.reading-order ol {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.detail-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1.5rem;
    margin-top: 0.3rem;
    font-style: italic;
}

.source-list h4 {
    color: #ffd700;
    margin: 1.5rem 0 1rem;
    font-size: 1.1rem;
}

.era-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
}

.lead-text {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.top-comics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.comic-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.comic-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.comic-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.comic-desc {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.comic-details {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.difficulty, .length {
    color: #ffd700;
    font-size: 0.9rem;
}

.glossary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.term-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.term-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.example {
    display: block;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.grading-info {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.grade-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.grade-item {
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
}

.grade {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.technique-box {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.tip-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
}

.tip-highlight i {
    color: #ffd700;
    font-size: 1.2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.comparison-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.pros, .cons {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.experience-tips {
    display: grid;
    gap: 1rem;
}

.tip-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.tip-item h4 {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.comic-card.detailed {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
}

.comic-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.comic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comic-card.detailed:hover .comic-image img {
    transform: scale(1.05);
}

.comic-info {
    flex: 1;
}

.comic-details-extended {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.detail-label {
    color: #ffd700;
    font-weight: bold;
}

.why-read {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
}

.why-read h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.why-read ul {
    list-style: none;
    padding: 0;
}

.why-read li {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.why-read li:before {
    content: '✦';
    color: #ffd700;
    position: absolute;
    left: 0;
}

.watch-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1rem;
    font-style: italic;
}

.season-info {
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
}

.season-info strong {
    color: #ffd700;
    margin-right: 1rem;
}

.reading-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.1);
}

.step-card h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-card ul {
    list-style: none;
    padding: 0;
}

.step-card ul li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.step-card ul li:before {
    content: '→';
    color: #ffd700;
    position: absolute;
    left: 0;
}

.step-card ul li ul {
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.tip-box {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-box i {
    color: #ffd700;
    font-size: 1.2rem;
} 