/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Navegação */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #667eea;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #667eea;
}

/* Main Content */
main {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #ff6b6b;
    color: white;
}

.btn-primary:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Commands Page */
.commands {
    padding: 80px 0;
    background: white;
}

.commands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.command-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.command-category h3 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.command-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.command-item {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.command-item code {
    background: #e9ecef;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: #667eea;
    font-weight: bold;
}

.command-item p {
    margin-top: 0.5rem;
    color: #666;
}

/* Guide Page */
.guide {
    padding: 80px 0;
    background: white;
}

.guide-section {
    margin-bottom: 3rem;
}

.guide-section h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.guide-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.guide-card h3 {
    color: #333;
    margin-bottom: 1rem;
}

.guide-card ul {
    list-style-position: inside;
}

.guide-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Rarities */
.rarity {
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.9rem;
}

.rarity.common { background: #6c757d; color: white; }
.rarity.rare { background: #007bff; color: white; }
.rarity.epic { background: #6f42c1; color: white; }
.rarity.legendary { background: #ffc107; color: black; }
.rarity.mythic { background: #dc3545; color: white; }

/* Ranking Page */
.ranking {
    padding: 80px 0;
    background: white;
}

.ranking-section {
    margin-bottom: 3rem;
}

.ranking-section h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.ranks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.rank-card {
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.rank-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 1;
}

.rank-card > * {
    position: relative;
    z-index: 2;
}

.rank-card.iron { background: linear-gradient(135deg, #8D6E63, #5D4037); }
.rank-card.bronze { background: linear-gradient(135deg, #A0522D, #8B4513); }
.rank-card.silver { background: linear-gradient(135deg, #C0C0C0, #A8A8A8); }
.rank-card.gold { background: linear-gradient(135deg, #FFD700, #FFA500); }
.rank-card.platinum { background: linear-gradient(135deg, #B9F2FF, #87CEEB); }
.rank-card.diamond { background: linear-gradient(135deg, #B9F2FF, #4169E1); }
.rank-card.king { background: linear-gradient(135deg, #FF6347, #DC143C); }
.rank-card.master { background: linear-gradient(135deg, #FF0000, #8B0000); }

.rank-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.rank-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rank-card p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.population {
    font-size: 0.9rem;
    opacity: 0.8;
}

.points-info, .ranking-info, .seasons-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.example-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
}

.example-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.example-card ul {
    margin: 1rem 0;
}

.example-card small {
    color: #666;
    font-style: italic;
}

/* Rewards Grid */
.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.reward-tier {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.reward-tier h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.reward-tier p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Market Page */
.market {
    padding: 80px 0;
    background: white;
}

.market-section {
    margin-bottom: 3rem;
}

.market-section h2 {
    color: #667eea;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.market-info, .sell-process, .buy-info, .rules-info, .expiration-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.channels-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.channel-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.channel-card h4 {
    color: #667eea;
    margin-bottom: 1rem;
}

.channel-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.item-category {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-top: 4px solid #667eea;
}

.item-category h3 {
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.item-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.item-card {
    background: white;
    padding: 1rem;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.item-card h4 {
    margin: 0;
    color: #333;
    font-size: 1rem;
}

.item-card p {
    margin: 0.2rem 0 0 0;
    color: #666;
    font-size: 0.9rem;
}

.price {
    background: #667eea;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.step-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    background: #667eea;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.step-card h4 {
    color: #333;
    margin-bottom: 1rem;
}

.step-card p {
    color: #666;
    line-height: 1.5;
}

.buy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.buy-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #28a745;
}

.buy-card h4 {
    color: #28a745;
    margin-bottom: 1rem;
}

.buy-card ul {
    list-style-position: inside;
}

.buy-card li {
    margin-bottom: 0.5rem;
    color: #666;
}

.rules-info h3 {
    color: #667eea;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.rules-info h3:first-child {
    margin-top: 0;
}

.rules-info ul {
    list-style-position: inside;
}

.rules-info li {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.5;
}

.expiration-info h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.expiration-info ul {
    list-style-position: inside;
}

.expiration-info li {
    margin-bottom: 0.8rem;
    color: #666;
    line-height: 1.5;
}

/* Footer Links */
.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links span {
    color: #666;
    margin: 0 0.5rem;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
    background: white;
}

.legal-section {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.legal-section h2 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #333;
    margin: 1.5rem 0 1rem 0;
    font-size: 1.2rem;
}

.legal-section p {
    color: #666;
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-section ul, .legal-section ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-section a {
    color: #667eea;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-section strong {
    color: #333;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: auto;
}

.footer-content p {
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }
    
    .commands-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons, .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}