/* PvP Landing Page Styles */

/* Hero Section */
.pvp-hero-section {
    background: linear-gradient(135deg, rgba(0, 255, 0, 0.1) 0%, rgba(0, 200, 0, 0.05) 100%);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
}

.hero-title {
    font-family: 'Tektur', monospace;
    font-size: 28px;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
    font-weight: bold;
}

.hero-subtitle {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: rgba(0, 255, 0, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 14px;
    color: #00ff00;
    font-weight: bold;
    text-align: center;
}

/* How It Works Section */
.how-it-works-section {
    margin-bottom: 30px;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 10px;
}

.section-title {
    font-family: 'Tektur', monospace;
    font-size: 24px;
    color: #00ff00;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(0, 255, 0, 0.4);
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: rgba(0, 255, 0, 0.4);
    box-shadow: 0 0 12px rgba(0, 255, 0, 0.2);
}

.step-number {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

.step-content h4 {
    color: #00ff00;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: bold;
}

.step-content p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Action Section Header */
.action-section-header {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(200, 0, 0, 0.05) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

.action-section-header .section-title {
    color: #ff3333;
    text-shadow: 0 0 8px rgba(255, 51, 51, 0.4);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #cccccc;
    margin: 0;
    font-style: italic;
}

/* Enhanced PvP Options */
.pvp-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.pvp-option {
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pvp-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.pvp-option:hover::before {
    left: 100%;
}

.pvp-option:hover {
    border-color: rgba(0, 255, 0, 0.6);
    box-shadow: 0 0 25px rgba(0, 255, 0, 0.3);
    transform: translateY(-3px);
}

.option-title {
    color: #00ff00;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 0, 0.3);
}

.option-description {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Enhanced buttons */
.pvp-btn {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000000;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.pvp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.3s ease;
}

.pvp-btn:hover::before {
    left: 100%;
}

.pvp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.4);
}

.pvp-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 22px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .feature-item {
        padding: 10px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 12px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .step-item {
        padding: 15px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
        margin-right: 12px;
    }
    
    .step-content h4 {
        font-size: 14px;
    }
    
    .step-content p {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .pvp-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pvp-option {
        padding: 20px;
    }
}
