/* ============================================
   LUSO STATIS - Custom CSS
   ============================================ */

/* Font Alenia */
@font-face {
    font-family: 'Alenia';
    src: url('../fonts/Alenia.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Hero Title - Gold outline + Blue interior */
.hero-title-alenium {
    font-family: 'Alenia', sans-serif;
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #00d4c8; /* Bleu turquoise intérieur */
    -webkit-text-stroke: 2px #d4a847; /* Contour doré */
    text-shadow: 
        0 0 10px rgba(0, 212, 200, 0.5),
        0 0 20px rgba(0, 212, 200, 0.3),
        0 0 30px rgba(212, 168, 71, 0.2);
    letter-spacing: 2px;
}

.hero-title-alenium span {
    color: #d4a847; /* Or pour STATIS */
    -webkit-text-stroke: 2px #00d4c8; /* Contour bleu */
    text-shadow: 
        0 0 10px rgba(212, 168, 71, 0.5),
        0 0 20px rgba(212, 168, 71, 0.3);
}

/* Hero decoration background */
.hero-deco {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.15;
    max-width: 400px;
    z-index: 0;
}

:root {
    --ao-primary: #ff4655;
    --ao-secondary: #0f1923;
    --ao-dark: #0a0d10;
    --ao-r6: #ff6b00;
    --ao-valorant: #ff4655;
    --ao-cs2: #f0b232;
    --ao-discord: #5865F2;
    --ao-twitch: #9146ff;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--ao-dark);
    color: #888;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    color: var(--ao-primary);
    text-decoration: none;
}

/* Game Badges */
.game-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 25px;
    color: #fff;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0 5px 10px 0;
}

.badge-r6 {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

.badge-valorant {
    background: linear-gradient(135deg, #ff4655 0%, #ff6b6b 100%);
    box-shadow: 0 4px 15px rgba(255,70,85,0.4);
}

.badge-cs2 {
    background: linear-gradient(135deg, #f0b232 0%, #ffc107 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(240,178,50,0.4);
}

/* Team Cards */
.team-card {
    background: linear-gradient(180deg, rgba(30,25,31,0.95) 0%, rgba(15,25,35,0.98) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ao-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover {
    transform: translateY(-15px);
    border-color: var(--ao-primary);
    box-shadow: 0 25px 50px rgba(255,70,85,0.25);
}

.team-card:hover::before {
    opacity: 1;
}

.team-card-header {
    padding: 40px 30px;
    text-align: center;
}

.team-card-header img {
    height: 90px;
    margin-bottom: 20px;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.team-card-body {
    padding: 30px;
}

.team-card-body h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
}

.team-card-body p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.team-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.team-card-body ul li {
    color: #bbb;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 14px;
}

.team-card-body ul li:last-child {
    border-bottom: none;
}

.team-card-body ul li i {
    margin-right: 12px;
    width: 20px;
}

/* Player Cards */
.player-card {
    background: rgba(30,25,31,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.player-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,70,85,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.player-card-img {
    position: relative;
    overflow: hidden;
}

.player-card-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.player-card:hover .player-card-img img {
    transform: scale(1.1);
}

.player-card-content {
    padding: 25px;
}

.player-card-content h5 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.player-card-content .role {
    color: var(--ao-primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.player-card-content .social a {
    color: #666;
    margin: 0 8px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.player-card-content .social a:hover {
    color: var(--ao-primary);
}

/* Discord Button */
.btn-discord {
    background: var(--ao-discord);
    color: #fff;
    padding: 16px 35px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-discord:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(88,101,242,0.4);
    color: #fff;
}

/* Primary Button */
.btn-ao {
    background: linear-gradient(135deg, var(--ao-primary) 0%, #ff6b6b 100%);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-ao:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,70,85,0.4);
    color: #fff;
}

/* Stats */
.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ao-primary) 0%, #ff8c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
}

/* Match Cards */
.match-row {
    background: linear-gradient(90deg, rgba(30,25,31,0.8) 0%, rgba(15,25,35,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.match-row:hover {
    border-color: rgba(255,70,85,0.3);
    background: linear-gradient(90deg, rgba(40,35,41,0.9) 0%, rgba(25,35,45,0.9) 100%);
}

.match-game-tag {
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 15px;
    margin-bottom: 8px;
    display: inline-block;
}

.match-time h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #fff;
    margin-bottom: 5px;
}

.match-time span {
    color: #888;
    font-size: 13px;
}

.match-league {
    font-size: 11px;
    margin-top: 8px;
    padding: 4px 12px;
    border-radius: 15px;
    display: inline-block;
}

.match-result {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 700;
}

.match-result.win {
    color: #00ff88;
}

.match-result.loss {
    color: #ff4655;
}

/* Section Titles */
.section-title-ao h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 15px;
}

.section-title-ao h2 span {
    color: var(--ao-primary);
}

.section-title-ao p {
    color: #666;
    font-size: 16px;
}

/* News Cards */
.news-card {
    background: rgba(30,25,31,0.6);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,70,85,0.3);
}

.news-card-img {
    position: relative;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.1);
}

.news-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
}

.news-card-content {
    padding: 25px;
}

.news-card-content h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-content h4 a {
    color: #fff;
    transition: color 0.3s ease;
}

.news-card-content h4 a:hover {
    color: var(--ao-primary);
}

.news-card-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #666;
}

.news-card-meta i {
    margin-right: 6px;
    color: var(--ao-primary);
}

.news-card-content p {
    color: #888;
    font-size: 14px;
    line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb-area {
    position: relative;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, #0f1923);
}

/* Form Styles */
.form-control-ao {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 15px 20px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-ao:focus {
    background: rgba(255,255,255,0.08);
    border-color: var(--ao-primary);
    box-shadow: 0 0 20px rgba(255,70,85,0.2);
    color: #fff;
}

.form-control-ao::placeholder {
    color: #666;
}

/* Footer */
.footer-social a {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    color: #888;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--ao-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Animations */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255,70,85,0.3); }
    50% { box-shadow: 0 0 40px rgba(255,70,85,0.6); }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 991px) {
    .stat-number {
        font-size: 36px;
    }
    
    .section-title-ao h2 {
        font-size: 28px;
    }
    
    .match-time h4 {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-content h2 {
        font-size: 32px !important;
    }
    
    .match-row {
        text-align: center;
    }
    
    .match-row .d-flex {
        justify-content: center !important;
        margin-bottom: 20px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--ao-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--ao-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b6b;
}
