* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

button:focus {
    outline: none;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: #0d1117;
    color: #c9d1d9;
    line-height: 1.6;
    overflow-x: hidden;
}

.mosaic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13,17,23,0.8), rgba(34,39,46,0.8)), url(bg.jpg) center / cover no-repeat;
    z-index: 0;
}

.mosaic-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255,107,107,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(107,107,255,0.1) 0%, transparent 50%);
    animation: mosaicPulse 15s ease infinite;
}

@keyframes mosaicGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes mosaicPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.header {
    padding: 35px 0;
    border-bottom: 2px solid rgba(255,107,107,0.2);
    margin-bottom: 60px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.brand-wrapper {
    display: flex;
    align-items: center;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mark-shape {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255,107,107,0.4);
    animation: shapeRotate 10s linear infinite;
}

@keyframes shapeRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.brand-text-main {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.brand-text-divider {
    font-size: 32px;
    font-weight: 300;
    color: #ff6b6b;
}

.brand-text-accent {
    font-size: 32px;
    font-weight: 800;
    color: #ff6b6b;
    text-shadow: 0 0 20px rgba(255,107,107,0.5);
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.language-picker {
    display: flex;
    gap: 3px;
    background: rgba(255,107,107,0.1);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(255,107,107,0.3);
}

.lang-option {
    padding: 10px 20px;
    background: transparent;
    border: none;
    color: rgba(201,209,217,0.7);
    font-weight: 600;
    font-size: 13px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-option:hover {
    color: #fff;
    background: rgba(255,107,107,0.2);
}

.lang-option.active {
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

.navigation-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.country-flag {
    font-size: 24px;
    margin-left: 10px;
}

.nav-link-item {
    color: rgba(201,209,217,0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b6b, #6b6bff);
    transition: width 0.3s ease;
}

.nav-link-item:hover {
    color: #fff;
}

.nav-link-item:hover::after {
    width: 100%;
}

.main {
    padding-bottom: 100px;
}

.hero-mosaic {
    margin-bottom: 80px;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    height: 600px;
}

.mosaic-tile {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,107,107,0.2);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.mosaic-tile::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mosaic-tile:hover::before {
    opacity: 1;
}

.mosaic-tile:hover {
    transform: translateY(-8px);
    border-color: rgba(255,107,107,0.5);
    box-shadow: 0 20px 50px rgba(255,107,107,0.2);
}

.mosaic-tile.large {
    grid-column: span 2;
    grid-row: span 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tile-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.tile-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255,107,107,0.2);
    border-radius: 25px;
    width: fit-content;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.tile-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tile-description {
    font-size: 18px;
    color: rgba(201,209,217,0.7);
    line-height: 1.8;
}

.tile-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tile-button {
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tile-button.primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

.tile-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.4);
}

.tile-button.secondary {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    border-radius: 30px;
}

.tile-button.secondary:hover {
    background: #ff6b6b;
    color: #fff;
}

.tile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    gap: 15px;
}

.stat-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 20px rgba(255,107,107,0.5));
}

.stat-figure {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: rgba(201,209,217,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tabs-section {
    margin-bottom: 80px;
}

.tabs-container {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,107,107,0.2);
    border-radius: 25px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.tabs-header {
    display: flex;
    gap: 0;
    border-bottom: 2px solid rgba(255,107,107,0.2);
    background: rgba(255,255,255,0.02);
}

.tab-button {
    flex: 1;
    padding: 20px 30px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: rgba(201,209,217,0.6);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    outline: none;
}

.tab-button:hover {
    color: #fff;
    background: rgba(255,107,107,0.1);
}

.tab-button.active {
    color: #ff6b6b;
    border-bottom-color: #ff6b6b;
    background: rgba(255,107,107,0.1);
}

.tab-icon {
    font-size: 20px;
}

.tabs-content {
    padding: 40px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.event-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,107,107,0.5);
    transform: translateY(-5px);
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.event-sport {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b6b;
}

.event-status {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.event-status.live {
    background: rgba(255,107,107,0.2);
    color: #ff6b6b;
}

.event-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.team {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.score {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(201,209,217,0.6);
}

.event-action {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.event-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list-item {
    display: grid;
    grid-template-columns: 150px 1fr 120px;
    gap: 25px;
    padding: 25px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: 15px;
    align-items: center;
    transition: all 0.3s ease;
}

.list-item:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,107,107,0.5);
}

.item-time {
    font-size: 14px;
    color: #ff6b6b;
    font-weight: 600;
}

.item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-sport {
    font-size: 13px;
    color: rgba(201,209,217,0.6);
}

.item-match {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.item-league {
    font-size: 13px;
    color: rgba(201,209,217,0.6);
}

.item-link {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.item-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

.accordion-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.accordion-item {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,107,107,0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: rgba(255,107,107,0.5);
}

.accordion-header {
    display: grid;
    grid-template-columns: 60px 1fr 150px 40px;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255,107,107,0.1);
}

.accordion-icon {
    font-size: 32px;
}

.accordion-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.accordion-count {
    font-size: 14px;
    color: rgba(201,209,217,0.6);
    text-align: right;
}

.accordion-arrow {
    font-size: 18px;
    color: #ff6b6b;
    transition: transform 0.3s ease;
    text-align: center;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 30px;
}

.accordion-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,107,107,0.2);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.accordion-card:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,107,107,0.5);
    transform: translateY(-3px);
}

.card-league {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.card-matches,
.card-teams {
    font-size: 14px;
    color: rgba(201,209,217,0.6);
    margin-bottom: 8px;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #6b6bff;
    padding-left: 5px;
}

.features-mosaic {
    margin-bottom: 80px;
}

.features-mosaic-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 25px;
}

.feature-tile {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,107,107,0.2);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-tile:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,107,107,0.5);
    transform: translateY(-5px);
}

.feature-tile.wide {
    grid-column: span 2;
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(255,107,107,0.5));
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.feature-text {
    font-size: 15px;
    color: rgba(201,209,217,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list li {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(201,209,217,0.6);
    position: relative;
    padding-left: 20px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: 700;
}

.feature-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-link:hover {
    color: #6b6bff;
    padding-left: 5px;
}

.cta-mosaic {
    margin-bottom: 80px;
}

.cta-tile {
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(107,107,255,0.1) 100%);
    border: 2px solid rgba(255,107,107,0.3);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 18px;
    color: rgba(201,209,217,0.7);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.main {
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255,107,107,0.3);
}

.cta-button.main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.4);
}

.cta-button.alt {
    background: transparent;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
    border-radius: 30px;
}

.cta-button.alt:hover {
    background: #ff6b6b;
    color: #fff;
}

.footer-mosaic {
    padding: 60px 0;
    border-top: 2px solid rgba(255,107,107,0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(201,209,217,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #fff;
    padding-left: 5px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
    }
    
    .mosaic-tile.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .tile-title {
        font-size: 36px;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        border-bottom: none;
        border-right: 3px solid transparent;
    }
    
    .tab-button.active {
        border-bottom: none;
        border-right-color: #ff6b6b;
    }
    
    .accordion-header {
        grid-template-columns: 50px 1fr 100px 30px;
        gap: 15px;
        padding: 20px;
    }
    
    .features-mosaic-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-tile.wide {
        grid-column: span 1;
    }
    
    .list-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #161b22;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 107, 107, 0.3);
    border: 2px solid rgba(255, 107, 107, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.modal-header p {
    color: rgba(201,209,217,0.6);
    font-size: 15px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.form-group input {
    padding: 14px 18px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.05);
    color: #ffffff;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6b6b;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group input::placeholder {
    color: rgba(201,209,217,0.4);
}

.register-submit-btn {
    padding: 16px;
    background: linear-gradient(135deg, #ff6b6b 0%, #6b6bff 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.register-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.analytics-card {
    background: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,107,107,0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.analytics-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.analytics-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.analytics-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
}

.item-rank {
    font-size: 18px;
    font-weight: 700;
    color: #ff6b6b;
    min-width: 30px;
}

.item-name {
    flex: 1;
    color: #fff;
    font-weight: 600;
}

.item-value {
    color: rgba(201,209,217,0.8);
    font-size: 14px;
}

.analytics-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
}

.analytics-link:hover {
    color: #6b6bff;
    padding-left: 5px;
}

.event-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.event-description {
    color: rgba(201,209,217,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.event-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 12px;
    color: rgba(201,209,217,0.6);
    text-transform: uppercase;
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    padding: 6px 14px;
    background: rgba(255,107,107,0.15);
    border: 1px solid rgba(255,107,107,0.3);
    border-radius: 15px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

.accordion-link {
    display: inline-block;
    margin-top: 15px;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    padding: 0;
}

.accordion-link:hover {
    color: #6b6bff;
    padding-left: 5px;
}
