#trophies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    animation: containerFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

@keyframes containerFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(1px);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-5px);
        filter: blur(0px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

#trophies-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
            radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 40%),
            radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 40%),
            radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 30%);
    animation: backgroundFloat 25s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
    z-index: -1;
    will-change: transform;
}

@keyframes backgroundFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -25px) rotate(90deg); }
    50% { transform: translate(-30px, -10px) rotate(180deg); }
    75% { transform: translate(25px, -15px) rotate(270deg); }
}

.trophy-stats {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    animation: statsSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    will-change: opacity, transform;
}

@keyframes statsSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    opacity: 0.03;
    border-radius: var(--radius-xl);
    will-change: opacity;
}

.stats-content {
    position: relative;
    z-index: 2;
}

.stats-title {
    color: var(--text-primary);
    margin: 0 0 2rem 0;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: background-position;
}

@keyframes titleShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.stats-icon {
    font-size: 2rem;
    background: none;
    -webkit-text-fill-color: initial;
    animation: statsIconFloat 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform;
}

@keyframes statsIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(6deg); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    will-change: transform, box-shadow, border-color;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--karmine-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--accent-gold);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: statIconBounce 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform;
}

@keyframes statIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 25px rgba(255, 215, 0, 0.6);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trophies-section {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    animation: sectionSlideIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both;
}

@keyframes sectionSlideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trophies-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    opacity: 0.03;
    border-radius: var(--radius-xl);
}

.trophies-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.trophies-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trophies-icon {
    font-size: 2.5rem;
    background: none;
    -webkit-text-fill-color: initial;
    animation: trophiesIconSpin 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform;
}

@keyframes trophiesIconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

.trophies-count {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trophies-count:hover {
    background: var(--dark-tertiary);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.count-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
}

.count-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.trophies-timeline {
    position: relative;
    padding-left: 2rem;
}

.trophies-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), var(--karmine-blue), var(--accent-gold));
    border-radius: 1px;
    opacity: 0.3;
}

.trophy-timeline-item {
    position: relative;
    margin-bottom: 3rem;
    animation: timelineItemSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateX(-30px);
}

@keyframes timelineItemSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.trophy-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.trophy-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.trophy-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.trophy-timeline-item:nth-child(4) { animation-delay: 0.4s; }
.trophy-timeline-item:nth-child(5) { animation-delay: 0.5s; }

.timeline-connector {
    position: absolute;
    left: -2rem;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-gold);
    border: 4px solid var(--dark-primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    position: relative;
    animation: timelineDotPulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform, box-shadow;
}

@keyframes timelineDotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.timeline-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    margin-top: 1rem;
    opacity: 0.5;
}

.trophy-card-timeline {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, border-color;
}

.trophy-card-timeline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: var(--radius-xl);
}

.trophy-card-timeline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trophy-card-timeline:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
    border-color: var(--accent-gold);
}

.trophy-card-timeline:hover::before {
    opacity: 0.05;
}

.trophy-card-timeline:hover::after {
    left: 100%;
}

.trophy-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--accent-gold);
    color: var(--dark-primary);
    padding: 1rem;
    border-radius: var(--radius-lg);
    min-width: 80px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 2;
    animation: dateBadgeFloat 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: transform;
}

@keyframes dateBadgeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

.date-day {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0.25rem 0;
}

.date-year {
    font-size: 0.9rem;
    font-weight: 600;
}

.trophy-content {
    flex: 1;
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.trophy-photo-container {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trophy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trophy-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trophy-card-timeline:hover .trophy-photo {
    transform: scale(1.1);
}

.trophy-card-timeline:hover .trophy-photo-overlay {
    opacity: 0.2;
}

.trophy-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trophy-game-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--dark-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    width: fit-content;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trophy-card-timeline:hover .trophy-game-badge {
    background: var(--karmine-blue);
    color: white;
    transform: scale(1.05);
}

.game-icon-small {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
}

.game-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trophy-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: trophyNameShimmer 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    will-change: background-position;
}

@keyframes trophyNameShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.trophy-division {
    font-size: 1rem;
    font-weight: 600;
    color: var(--karmine-blue);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trophy-city {
    color: #666;
    font-size: 0.9em;
    margin: 4px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trophy-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.trophy-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.trophy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.trophy-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trophy-btn:hover::after {
    transform: translateX(100%);
}

.trophy-btn.primary {
    background: var(--accent-gold);
    color: var(--dark-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.trophy-btn.secondary {
    background: transparent;
    color: var(--karmine-blue);
    border: 1px solid var(--karmine-blue);
}

.trophy-btn:hover {
    transform: translateY(-2px) scale(1.05);
}

.trophy-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.trophy-btn.secondary:hover {
    background: var(--karmine-blue);
    color: white;
}

.btn-icon {
    font-size: 1rem;
}

.trophy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10vh;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.trophy-modal-overlay.modal-open {
    opacity: 1;
    visibility: visible;
}

.trophy-modal-card {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.35s ease;
}

.trophy-modal-overlay.modal-open .trophy-modal-card {
    transform: scale(1) translateY(0);
}

.modal-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    opacity: 0.05;
    border-radius: var(--radius-xl);
}

.trophy-modal-header {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.trophy-modal-banner {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
}

.trophy-modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.banner-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.55));
}

.trophy-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.trophy-close-btn:hover {
    background: var(--accent-red);
    color: white;
    border-color: var(--accent-red);
    transform: scale(1.1) rotate(90deg);
}

.trophy-modal-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.trophy-modal-info {
    text-align: center;
    margin-bottom: 2rem;
}

.trophy-modal-game-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--dark-tertiary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.game-icon-modal {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
}

.game-name-modal {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trophy-modal-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--accent-gold), var(--karmine-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trophy-modal-division {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--karmine-blue);
    margin: 0 0 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trophy-modal-city {
    color: #666;
    font-size: 0.95em;
    margin: 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.trophy-modal-date {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    font-weight: 600;
}

.trophy-modal-description {
    margin-bottom: 2rem;
}

.trophy-modal-description h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
}

.trophy-modal-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.trophy-modal-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.action-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.action-btn:hover::after {
    transform: translateX(100%);
}

.action-btn.primary {
    background: var(--accent-gold);
    color: var(--dark-primary);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.action-btn.secondary {
    background: transparent;
    color: var(--karmine-blue);
    border: 1px solid var(--karmine-blue);
}

.action-btn:hover {
    transform: translateY(-2px);
}

.action-btn.primary:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
}

.action-btn.secondary:hover {
    background: var(--karmine-blue);
    color: white;
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left: 4px solid var(--accent-gold);
    color: var(--accent-gold);
}

.notification.error {
    border-left: 4px solid var(--accent-red);
    color: var(--accent-red);
}

.notification.info {
    border-left: 4px solid var(--karmine-blue);
    color: var(--karmine-blue);
}

.notification-icon {
    font-size: 1.2rem;
}

.notification-text {
    color: var(--text-primary);
}

.empty-trophies {
    text-align: center;
    padding: 4rem;
    color: var(--text-muted);
    background: var(--glass-bg);
    border-radius: var(--radius-xl);
    border: 3px dashed var(--glass-border);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: emptyStateFloat 6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes emptyStateFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.empty-trophies::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%);
    animation: emptyBackground 8s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: -1;
}

@keyframes emptyBackground {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
    animation: emptyIconFloat 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes emptyIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.empty-trophies p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.empty-subtitle {
    font-size: 0.95rem;
    opacity: 0.7;
}

.titles-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(186, 85, 211, 0.05));
}

.title-timeline-item .timeline-dot-title {
    background: linear-gradient(135deg, #FFD700, #BA55D3);
    box-shadow: 0 0 20px rgba(186, 85, 211, 0.5);
}

.title-card-timeline {
    border-left: 4px solid #BA55D3;
}

.title-card-timeline:hover {
    box-shadow: 0 20px 60px rgba(186, 85, 211, 0.3);
    border-color: #BA55D3;
}

.title-date-badge {
    background: linear-gradient(135deg, #FFD700, #BA55D3);
}

.title-name {
    background: linear-gradient(135deg, #FFD700, #BA55D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-division {
    color: #BA55D3;
}

.title-modal-card {
    border: 2px solid rgba(186, 85, 211, 0.3);
}

.title-modal-banner {
    background: linear-gradient(135deg, #FFD700, #BA55D3);
}

.title-modal-name {
    background: linear-gradient(135deg, #FFD700, #BA55D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-modal-division {
    color: #BA55D3;
}

.title-stats {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(186, 85, 211, 0.05));
}

.trophy-photo-container .trophy-photo[src*="logos/"],
.trophy-modal-image[src*="logos/"] {
    object-fit: contain;
    padding: 20px;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
}

.trophy-type-badge {
    background: var(--accent-gold);
    color: var(--dark-primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.title-timeline-item .trophy-type-badge {
    background: linear-gradient(135deg, #FFD700, #BA55D3);
}

@media (max-width: 1024px) {
    #trophies-container {
        padding: 1.5rem;
    }

    .trophy-card-timeline {
        padding: 1.5rem;
    }

    .trophy-content {
        flex-direction: column;
        gap: 1rem;
    }

    .trophy-photo-container {
        width: 100%;
        height: 200px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #trophies-container {
        padding: 1rem;
    }

    .trophy-card-timeline {
        flex-direction: column;
        padding: 1.5rem;
    }

    .trophy-date-badge {
        align-self: flex-start;
        margin-bottom: 1rem;
    }

    .trophy-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trophies-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .trophy-modal-card {
        width: 95vw;
        max-width: 400px;
    }

    .trophy-modal-content {
        padding: 1.5rem;
    }

    .trophy-modal-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trophies-timeline {
        padding-left: 1rem;
    }

    .trophies-timeline::before {
        left: 20px;
    }

    .timeline-connector {
        left: -1rem;
    }
}

@media (max-width: 480px) {
    .trophy-card-timeline {
        padding: 1.25rem;
    }

    .trophy-photo-container {
        height: 150px;
    }

    .trophy-name {
        font-size: 1.25rem;
    }

    .trophy-modal-header {
        height: 150px;
    }

    .trophy-modal-content {
        padding: 1.25rem;
    }

    .trophy-stats {
        padding: 1.5rem;
    }

    .stats-title {
        font-size: 1.5rem;
    }

    .trophies-title {
        font-size: 1.5rem;
    }

    .notification {
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }

    .notification.show {
        transform: translateY(0);
    }
}

.stat-item:nth-child(1) { animation: statSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both; }
.stat-item:nth-child(2) { animation: statSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s both; }
.stat-item:nth-child(3) { animation: statSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both; }
.stat-item:nth-child(4) { animation: statSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s both; }

@keyframes statSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.15s !important;
    }

    .trophy-card-timeline:hover,
    .stat-item:hover,
    .trophy-btn:hover,
    .action-btn:hover {
        transform: none !important;
    }
}

.trophy-card-timeline:focus-within,
.stat-item:focus-within {
    outline: 3px solid var(--accent-gold);
    outline-offset: 3px;
}

.trophy-btn:focus,
.action-btn:focus {
    outline: 3px solid var(--accent-gold);
    outline-offset: 2px;
}

.trophy-card-timeline,
.stat-item,
.trophy-btn,
.action-btn {
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (prefers-color-scheme: dark) {
    .trophy-card-timeline {
        background: rgba(26, 35, 50, 0.9);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }

    .stat-item {
        background: rgba(26, 35, 50, 0.85);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    }

    .trophy-modal-card {
        background: rgba(26, 35, 50, 0.95);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    }
}
