/* Introduction Page Styles */

.intro-main {
    min-height: calc(100vh - 80px);
    padding: 40px 20px;
    background: linear-gradient(135deg, #0a1a0a 0%, #000000 50%, #0a1a0a 100%);
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.intro-hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.hero-title {
    color: #d4af37;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.title-icon {
    font-size: 52px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-subtitle {
    color: #cccccc;
    font-size: 24px;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.section-title {
    color: #d4af37;
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    text-transform: uppercase;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #00ff00;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
}

.feature-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.feature-title {
    color: #d4af37;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

/* Classes Section */
.classes-section {
    margin-bottom: 60px;
}

.classes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.class-card {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.class-card.warrior {
    border-color: #ff4444;
}

.class-card.ninja {
    border-color: #4444ff;
}

.class-card.sura {
    border-color: #ff44ff;
}

.class-card.shaman {
    border-color: #44ff44;
}

.class-card:hover {
    transform: scale(1.05);
}

.class-image {
    font-size: 80px;
    margin-bottom: 20px;
}

.class-name {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.class-description {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.class-stats {
    list-style: none;
    text-align: left;
}

.class-stats li {
    color: #00ff00;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.class-stats li:last-child {
    border-bottom: none;
}

.class-stats li::before {
    content: '✓ ';
    color: #d4af37;
    font-weight: bold;
    margin-right: 8px;
}

/* Screenshots Section */
.screenshots-section {
    margin-bottom: 60px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.screenshot-card {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: scale(1.05);
    border-color: #00ff00;
}

.screenshot-placeholder {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.screenshot-caption {
    padding: 15px;
    color: #d4af37;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    margin-bottom: 40px;
}

.cta-card {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    border: 3px solid #d4af37;
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
}

.cta-title {
    color: #d4af37;
    font-size: 36px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.cta-text {
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 15px 40px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 3px solid #d4af37;
    text-transform: uppercase;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    color: #000000;
}

.cta-btn.primary:hover {
    background: linear-gradient(135deg, #00cc00 0%, #00aa00 100%);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
}

.cta-btn.secondary {
    background: linear-gradient(135deg, #1a4a1a 0%, #0a2a0a 100%);
    color: #d4af37;
}

.cta-btn.secondary:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

/* Active Nav Link */
.nav-link.active {
    color: #d4af37;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }
    
    .features-grid,
    .classes-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
    }
}

