/* APM Home Banner Styles */

.apm-home-banner {
    position: relative;
    padding: 4rem 2rem;
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    color: white;
}

/* Guest Banner */
.guest-banner .banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    background: rgba(255,255,255,0.15);
    padding: 1rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateX(5px);
}

.banner-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.stats-card {
    background: rgba(255,255,255,0.15);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: grid;
    gap: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

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

/* Coach Banner */
.coach-banner .banner-background {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.welcome-section {
    margin-bottom: 2rem;
}

.greeting {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.user-name {
    color: #ffd700;
}

.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.stat-card:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.stat-card .stat-icon {
    font-size: 3rem;
}

.stat-details {
    display: flex;
    flex-direction: column;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
}

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

/* Player Banner */
.player-banner .banner-background {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.player-profile {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.player-avatar,
.player-avatar-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.player-avatar-placeholder {
    background: rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
}

.player-info .greeting {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.player-team {
    font-size: 1.1rem;
    opacity: 0.95;
}

.player-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.points-card,
.level-card {
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.points-icon,
.level-icon {
    font-size: 3rem;
}

.points-number,
.level-text {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

.points-label,
.level-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .guest-banner .banner-content {
        grid-template-columns: 1fr;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-stats,
    .player-stats {
        grid-template-columns: 1fr;
    }
    
    .banner-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}