/* Gaming Adventskalender Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&display=swap');

:root {
    --primary: #00ff88;
    --secondary: #ff0080;
    --dark: #0a0e27;
    --darker: #05070f;
    --accent: #00d4ff;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
}

.gaming-advent-container {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    color: #fff;
    padding: 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.gaming-advent-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.gaming-advent-container > * {
    position: relative;
    z-index: 1;
}

/* Header */
.gaming-header {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.user-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

.stat-card.team-stat {
    border-color: inherit;
    position: relative;
}

.btn-leave-team {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 0, 128, 0.2);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-leave-team:hover {
    background: var(--secondary);
    color: white;
    transform: scale(1.05);
}

.stat-icon {
    font-size: 36px;
    filter: drop-shadow(0 0 10px currentColor);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary);
}

.no-team {
    justify-content: center;
}

.btn-join-team {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border: none;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.btn-join-team:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--secondary);
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
}

.tab-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

/* Advent Grid */
.advent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.advent-door {
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advent-door:not(.locked):not(.answered) {
    cursor: pointer;
}

.advent-door.locked {
    cursor: not-allowed;
}

.advent-door.answered {
    cursor: default;
}

.advent-door::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.advent-door:hover::before {
    left: 100%;
}

.advent-door:not(.locked):not(.answered):hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    border-color: var(--accent);
}

.advent-door.locked {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(1);
}

.advent-door.locked:hover {
    transform: none;
    box-shadow: none;
}

.advent-door.answered {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
    border-color: var(--gold);
}

.door-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary);
}

.door-game {
    font-size: 11px;
    text-align: center;
    opacity: 0.8;
    margin-top: 5px;
    padding: 0 5px;
}

.door-status {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.door-status.correct {
    background: rgba(0, 255, 136, 0.3);
    color: var(--primary);
}

.door-status.wrong {
    background: rgba(255, 0, 128, 0.3);
    color: var(--secondary);
}

.door-lock {
    position: absolute;
    font-size: 32px;
    opacity: 0.5;
}

/* Leaderboard */
.leaderboard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.leaderboard-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.leaderboard-list {
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.leaderboard-item:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(5px);
}

.leaderboard-item.rank-1 {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 2px solid var(--gold);
}

.leaderboard-item.rank-2 {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.2) 0%, rgba(192, 192, 192, 0.05) 100%);
    border: 2px solid var(--silver);
}

.leaderboard-item.rank-3 {
    background: linear-gradient(135deg, rgba(205, 127, 50, 0.2) 0%, rgba(205, 127, 50, 0.05) 100%);
    border: 2px solid var(--bronze);
}

.leaderboard-item .rank {
    font-size: 24px;
    font-weight: 900;
    min-width: 50px;
}

.leaderboard-item .name {
    flex: 1;
    font-weight: 700;
}

.leaderboard-item .points {
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
}

/* Shop */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.shop-item {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
}

.shop-item.owned {
    opacity: 0.6;
    border-color: var(--gold);
}

.item-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--primary));
}

.shop-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.shop-item p {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 15px;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-cost {
    font-weight: 700;
    color: var(--accent);
}

.btn-unlock {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: var(--dark);
    padding: 8px 16px;
    border-radius: 6px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-unlock:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary);
}

.owned-badge {
    color: var(--gold);
    font-weight: 700;
}

/* Profile */
.profile-container {
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 30px;
}

.profile-header {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
}

.profile-avatar {
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    overflow: hidden;
}

.profile-info h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.profile-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.profile-stats span {
    background: rgba(0, 255, 136, 0.1);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
}

.profile-unlocks h4 {
    color: var(--primary);
    margin-bottom: 20px;
}

.unlocks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.unlock-badge {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-size: 32px;
}

.unlock-badge span {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    opacity: 0.8;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    margin: 5% auto;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
    position: relative;
}

.close {
    color: var(--primary);
    float: right;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--accent);
}

/* Question Box */
.question-box {
    padding: 20px 0;
}

.question-title {
    color: var(--accent);
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.question-text {
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.answers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.answer-btn {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.answer-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
}

.answer-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.answer-btn.correct {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.3) 0%, rgba(0, 255, 136, 0.1) 100%);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.answer-btn.wrong {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.3) 0%, rgba(255, 0, 128, 0.1) 100%);
    border-color: var(--secondary);
}

.answer-letter {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 900;
    margin-right: 10px;
}

.question-footer {
    text-align: center;
}

.points-badge {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 900;
    display: inline-block;
}

.result-popup {
    margin-top: 30px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.result-popup.success {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 255, 136, 0.05) 100%);
    border: 2px solid var(--primary);
}

.result-popup.error {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.2) 0%, rgba(255, 0, 128, 0.05) 100%);
    border: 2px solid var(--secondary);
}

.result-popup h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Team Modal */
.team-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.team-tab-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.team-tab-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-color: var(--primary);
}

.team-tab-content {
    display: none;
}

.team-tab-content.active {
    display: block;
}

.teams-list {
    display: grid;
    gap: 15px;
}

.team-card {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.team-card h4 {
    color: var(--primary);
    margin-bottom: 5px;
}

.btn-join {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-join:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary);
}

#create-team-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#create-team-form input {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary);
    border-radius: 8px;
    padding: 12px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
}

#create-team-form input:focus {
    outline: none;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border: none;
    color: var(--dark);
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .advent-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .door-number {
        font-size: 32px;
    }

    .door-game {
        font-size: 9px;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Shop Filters */
.shop-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
}

.item-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 255, 136, 0.2);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

/* Profile & Team Pages */
.gaming-profile-page,
.gaming-team-page {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    min-height: 100vh;
    padding: 20px;
}

.profile-header-full,
.team-header-full {
    background: rgba(10, 14, 39, 0.8);
    border: 2px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.profile-banner {
    height: 200px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.team-badge-banner {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(10, 14, 39, 0.9);
    border: 2px solid;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 24px;
    font-weight: 900;
}

.profile-content,
.team-header-content {
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: -80px;
    position: relative;
    z-index: 2;
}

.profile-avatar-large {
    border-radius: 50%;
    border: 5px solid var(--primary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    overflow: hidden;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

.team-icon {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    background: rgba(10, 14, 39, 0.9);
    flex-shrink: 0;
}

.profile-info-full,
.team-info-full {
    flex: 1;
}

.profile-info-full h1,
.team-info-full h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.team-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.team-link a:hover {
    text-shadow: 0 0 10px currentColor;
}

.team-tag-line {
    font-size: 24px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.profile-stats-grid,
.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.stat-box-profile,
.stat-box-team {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 15px;
    text-align: center;
}

.stat-box-profile .stat-number,
.stat-box-team .stat-number {
    display: block;
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-box-profile .stat-label,
.stat-box-team .stat-label {
    display: block;
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
}

.profile-achievements,
.team-achievements-section {
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
}

.profile-achievements h2,
.team-achievements-section h2,
.team-members-section h2 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 24px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.achievement-icon {
    font-size: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px currentColor);
}

.achievement-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 18px;
}

.achievement-card p {
    font-size: 13px;
    opacity: 0.8;
}

.no-achievements {
    text-align: center;
    opacity: 0.6;
    padding: 40px;
    font-style: italic;
}

.team-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.team-members-section {
    background: rgba(10, 14, 39, 0.6);
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 30px;
}

.members-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.member-card {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.member-card:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: var(--primary);
    transform: translateX(5px);
}

.member-rank {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    min-width: 50px;
    text-align: center;
}

.member-avatar {
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.member-info h3 a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.member-info h3 a:hover {
    color: var(--primary);
}

.member-info p {
    margin: 0;
    font-size: 14px;
    color: var(--primary);
}

@media (max-width: 992px) {
    .team-content-grid {
        grid-template-columns: 1fr;
    }

    .profile-content,
    .team-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: -60px;
    }

    .profile-stats-grid,
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}