/* Guides Page Specific Styles - Professional Dark Theme */

/* Guides Hero Section */
.guides-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 60px;
    background: #000000;
    text-align: center;
    position: relative;
}

.guides-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 30%, rgba(107, 144, 144, 0.03), transparent 60%);
    pointer-events: none;
}

.guides-hero .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e8e8e8;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.guides-hero .hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 0;
    color: #c8c8c8;
}

/* Guide Navigation */
.guide-nav {
    background: rgba(0, 0, 0, 0.95);
    padding: 2rem 0;
    border-bottom: 1px solid var(--rm-metal);
    position: sticky;
    top: 70px;
    z-index: 100;
    backdrop-filter: blur(20px);
}

.guide-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.guide-nav-btn {
    background: var(--rm-slate);
    border: 1px solid var(--rm-teal);
    color: var(--rm-teal-bright);
    padding: 12px 28px;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-nav-btn:hover {
    background: var(--rm-slate-light);
    border-color: var(--rm-teal-bright);
    transform: translateY(-2px);
}

.guide-nav-btn.active {
    background: rgba(107, 144, 144, 0.15);
    border-color: var(--rm-teal-bright);
    color: #e8e8e8;
    border-left-width: 2px;
}

/* Active navigation item in main nav */
.nav-links a.active {
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700;
}

.nav-links a.active::after {
    width: 100%;
}

/* Guide Sections */
.guide-section {
    padding: 4rem 0;
    display: none;
}

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

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

/* Guide Header */
.guide-header {
    text-align: center;
    margin-bottom: 4rem;
}

.guide-title {
    font-size: 2rem;
    color: #e8e8e8;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.guide-intro {
    font-size: 1.1rem;
    color: #c8c8c8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Guide Content */
.guide-content {
    max-width: 1100px;
    margin: 0 auto;
}

.guide-block {
    background: rgba(10, 10, 10, 0.4);
    border-left: 2px solid var(--rm-metal);
    border-right: 1px solid rgba(42, 42, 42, 0.3);
    border-top: 1px solid rgba(42, 42, 42, 0.3);
    border-bottom: 1px solid rgba(42, 42, 42, 0.3);
    border-radius: 2px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.guide-block:hover {
    background: rgba(10, 10, 10, 0.6);
    transform: translateX(4px);
    border-left-color: var(--rm-teal);
}

.guide-block h3 {
    color: #e8e8e8;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--rm-metal);
    padding-bottom: 0.75rem;
}

.guide-block h4 {
    color: #e8e8e8;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 1.5rem 0 1rem;
}

.guide-block p {
    color: #c8c8c8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.guide-block ul {
    color: #c8c8c8;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.guide-block li {
    margin-bottom: 0.75rem;
    line-height: 1.75;
}

.guide-block strong {
    color: var(--rm-teal-bright);
    font-weight: 600;
}

.guide-block em {
    color: var(--rm-teal);
    font-style: italic;
}

.guide-block code {
    background: rgba(107, 144, 144, 0.1);
    color: var(--rm-teal-bright);
    padding: 3px 8px;
    border-radius: 2px;
    font-family: 'Courier New', monospace;
    border: 1px solid var(--rm-metal);
    font-size: 0.9em;
}

/* Mode Comparison Cards */
.mode-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.mode-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-metal);
    border-radius: 2px;
    padding: 1.5rem;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mode-card:hover {
    border-left-color: var(--rm-teal);
    background: rgba(10, 10, 10, 0.6);
    transform: translateX(4px);
}

.mode-card.rogue {
    border-left-color: #8a6b60;
    background: rgba(20, 10, 10, 0.4);
}

.mode-card.rogue:hover {
    border-left-color: #a08070;
}

.mode-card h4 {
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Starter Items Box */
.starter-items {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid #6b8a6b;
    border-radius: 2px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.starter-items h4 {
    color: #8cb08c;
    margin-top: 0;
}

/* Tip Box */
.tip-box {
    background: rgba(107, 144, 144, 0.08);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-teal);
    border-radius: 2px;
    padding: 1rem;
    margin-top: 1rem;
    color: #c8c8c8;
}

.tip-box strong {
    color: var(--rm-teal-bright);
}

/* Warning Box */
.warning-box {
    background: rgba(20, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid #8a5050;
    border-radius: 2px;
    padding: 1rem;
    margin-top: 1rem;
    color: #c8c8c8;
}

.warning-box strong {
    color: #b08080;
}

/* NPC Grid */
.npc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.npc-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-metal);
    border-radius: 2px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.npc-card:hover {
    border-left-color: var(--rm-teal);
    background: rgba(10, 10, 10, 0.6);
    transform: translateX(4px);
}

.npc-card h4 {
    color: #e8e8e8;
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.npc-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #c0c0c0;
}

/* Shop List */
.shop-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.shop-item {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-radius: 2px;
    padding: 0.875rem;
    text-align: center;
    color: #c8c8c8;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-item:hover {
    background: rgba(10, 10, 10, 0.6);
    border-color: var(--rm-teal);
    color: #e8e8e8;
}

/* Teleport Categories */
.teleport-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.teleport-cat {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-radius: 2px;
    padding: 0.75rem;
    text-align: center;
    color: #c0c0c0;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.teleport-cat:hover {
    background: rgba(10, 10, 10, 0.6);
    border-color: var(--rm-teal);
    color: #e8e8e8;
}

/* Achievement and Quest Info */
.achievement-info,
.quest-info {
    background: rgba(107, 144, 144, 0.08);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-teal);
    border-radius: 2px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.achievement-info h4,
.quest-info h4 {
    color: #e8e8e8;
    margin-top: 0;
    font-weight: 600;
}

/* Gambling Section */
.guide-block.gambling {
    border-left-color: #8a5050;
    background: rgba(20, 10, 10, 0.4);
}

.guide-block.gambling h3 {
    color: #e8e8e8;
    border-bottom-color: var(--rm-metal);
}

/* Coming Soon Section */
.coming-soon {
    text-align: center;
    background: rgba(60, 60, 80, 0.9);
    border-color: #9370db;
}

.coming-soon h3 {
color: #dda0dd;
border-bottom-color: #9370db;
}

/* Rogue Guide Specific Styles */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pros-card, .cons-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-metal);
    border-radius: 2px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pros-card {
    border-left-color: #6b8a6b;
}

.cons-card {
    border-left-color: #8a6060;
}

.pros-card:hover {
    border-left-color: #8cb08c;
    background: rgba(10, 10, 10, 0.6);
    transform: translateX(4px);
}

.cons-card:hover {
    border-left-color: #a07070;
    background: rgba(10, 10, 10, 0.6);
    transform: translateX(4px);
}

.pros-card h4, .cons-card h4 {
margin-top: 0;
margin-bottom: 1rem;
}

.tldr-section {
    border-left-color: #7a7a8a;
}

.tldr-section h3 {
    color: #e8e8e8;
    border-bottom-color: var(--rm-metal);
}

.tldr-list {
    display: grid;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.tldr-item {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-metal);
    border-radius: 2px;
    padding: 0.8rem;
    color: #c0c0c0;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tldr-item:hover {
    background: rgba(10, 10, 10, 0.6);
    border-left-color: var(--rm-teal);
    transform: translateX(4px);
}

.achievement-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.achievement-item {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-metal);
    border-radius: 2px;
    padding: 1rem;
    color: #c0c0c0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-item:hover {
    background: rgba(10, 10, 10, 0.6);
    border-left-color: var(--rm-teal);
    transform: translateX(4px);
}

.achievement-item strong {
    color: #e8e8e8;
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.upgrade-costs {
margin: 1.5rem 0;
}

.upgrade-item {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-teal);
    border-radius: 2px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #c8c8c8;
}

.strategy-steps {
    margin: 1.5rem 0;
}

.step-item {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-teal);
    padding: 1rem;
    margin-bottom: 1rem;
    color: #c0c0c0;
    border-radius: 2px;
}

.guild-strategy {
margin: 1.5rem 0;
}

.strategy-point {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-radius: 2px;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
    color: #c0c0c0;
    position: relative;
    padding-left: 2rem;
}

.strategy-point::before {
    content: '⚔️';
    position: absolute;
    left: 0.5rem;
    color: var(--rm-teal);
}

.path-selection {
    border-left-color: #6b7a8a;
}

.path-selection h3 {
    color: #e8e8e8;
    border-bottom-color: var(--rm-metal);
}

.path-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.path-card {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-metal);
    border-radius: 2px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.path-card:hover {
    transform: translateX(4px);
    background: rgba(10, 10, 10, 0.6);
    border-left-color: var(--rm-teal);
}

.path-card h4 {
    color: #e8e8e8;
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.upgrade-notes {
margin: 1.5rem 0;
}

.upgrade-note {
    background: rgba(10, 10, 10, 0.4);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-teal);
    border-radius: 2px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #c0c0c0;
}

.donation-info {
    background: rgba(107, 144, 144, 0.08);
    border: 1px solid var(--rm-metal);
    border-left: 2px solid var(--rm-teal);
    border-radius: 2px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.donation-info h4 {
    color: #e8e8e8;
    margin-top: 0;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
.guides-hero .hero-title {
font-size: 2.5rem;
}
    
.guide-nav-buttons {
flex-direction: column;
align-items: center;
}
    
.guide-title {
font-size: 2.2rem;
}
    
.guide-block {
padding: 1.5rem;
}
    
.mode-comparison {
grid-template-columns: 1fr;
}
    
.npc-grid {
grid-template-columns: 1fr;
}
    
.shop-list {
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
    
.teleport-categories {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
}

@media (max-width: 480px) {
.guide-nav {
padding: 1rem 0;
}
    
.guide-nav-btn {
padding: 10px 16px;
font-size: 1rem;
}
    
.guide-section {
padding: 2rem 0;
}
    
.guide-block {
padding: 1rem;
}
    
.guide-content {
padding: 0 10px;
}
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
.npc-grid, .pros-cons-grid, .path-options {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
}

@media (max-width: 768px) {
.guides-hero {
min-height: 40vh;
padding: 100px 20px 40px;
}
    
.guides-hero .hero-title {
font-size: 2.8rem;
}
    
.guides-hero .hero-subtitle {
font-size: 1.3rem;
}
    
.guide-nav {
position: static;
padding: 1.5rem 0;
}
    
.guide-nav-buttons {
gap: 1rem;
}
    
.guide-nav-btn {
padding: 12px 20px;
font-size: 1rem;
flex: 1;
max-width: 200px;
}
    
.guide-title {
font-size: 2.5rem;
}
    
.guide-intro {
font-size: 1.2rem;
}
    
.guide-section {
padding: 3rem 0;
}
    
.guide-block {
padding: 2rem;
margin-bottom: 2rem;
}
    
.guide-block h3 {
font-size: 1.6rem;
}
    
.guide-block h4 {
font-size: 1.2rem;
}
    
.mode-comparison, .npc-grid, .pros-cons-grid, .path-options {
grid-template-columns: 1fr;
gap: 1.5rem;
}
    
.shop-list {
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1rem;
}
    
.teleport-categories {
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
gap: 0.8rem;
}
    
.achievement-list, .tldr-list {
gap: 1rem;
}
}

@media (max-width: 640px) {
.guides-hero .hero-title {
font-size: 2.2rem;
}
    
.guide-title {
font-size: 2rem;
}
    
.guide-block {
padding: 1.5rem;
}
    
.guide-block h3 {
font-size: 1.4rem;
}
    
.shop-list {
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
    
.teleport-categories {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
}

@media (max-width: 480px) {
.guides-hero {
padding: 90px 16px 30px;
}
    
.guides-hero .hero-title {
font-size: 2rem;
}
    
.guides-hero .hero-subtitle {
font-size: 1.1rem;
}
    
.guide-nav {
padding: 1rem 0;
}
    
.guide-nav-buttons {
flex-direction: column;
align-items: center;
gap: 0.8rem;
}
    
.guide-nav-btn {
padding: 10px 16px;
font-size: 0.95rem;
width: 100%;
max-width: 250px;
}
    
.guide-section {
padding: 2rem 0;
}
    
.guide-title {
font-size: 1.8rem;
}
    
.guide-intro {
font-size: 1.1rem;
}
    
.guide-block {
padding: 1.2rem;
margin-bottom: 1.5rem;
}
    
.guide-block h3 {
font-size: 1.3rem;
}
    
.guide-block h4 {
font-size: 1.1rem;
}
    
.guide-content {
padding: 0 10px;
}
    
.shop-list {
grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
    
.teleport-categories {
grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
    
.mode-card, .npc-card, .path-card {
padding: 1.2rem;
}
    
.achievement-item, .tldr-item {
padding: 0.8rem;
font-size: 0.9rem;
}
    
.tip-box, .warning-box {
padding: 0.8rem;
font-size: 0.9rem;
}
}