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

body{
    background:#111;
    color:#f4ead2;
    font-family:Arial, sans-serif;
    padding-bottom:100px;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    padding:40px 20px;
    text-align:center;
    background:
        linear-gradient(
            to bottom,
            #3a0d0d,
            #111
        );
}

.hero-overlay{
    position:absolute;
    inset:0;
    opacity:0.15;
}

.hero-content{
    position:relative;
    z-index:2;
}

.upc-logo{
    width:180px;
    max-width:80%;
    border-radius:20px;
    margin-bottom:20px;
}

.tagline{
    font-size:14px;
    color:#d4b483;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    gap:12px;
    justify-content:center;
}

.hero-btn{
    border:none;
    border-radius:14px;
    padding:14px 18px;
    font-weight:bold;
    cursor:pointer;
}

.hero-btn.primary{
    background:#c89b3c;
    color:#111;
}

.hero-btn.secondary{
    background:#222;
    color:#f4ead2;
    border:1px solid #555;
}

/* =========================
   QUICK NAV
========================= */

.quick-nav{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    padding:20px;
}

.nav-card{
    background:#1b1b1b;
    border:1px solid #333;
    border-radius:18px;
    padding:22px 10px;
    text-align:center;
    font-size:20px;
}

.nav-card span{
    display:block;
    margin-top:10px;
    font-size:14px;
}

/* =========================
   GENERAL SECTION
========================= */

.section{
    padding:20px;
}

.section-title{
    font-size:20px;
    margin-bottom:16px;
    color:#d4b483;
}

/* =========================
   EVENT CARD
========================= */

.event-card{
    background:#1a1a1a;
    border:1px solid #4a2f2f;
    border-radius:20px;
    padding:20px;
}

.event-day{
    color:#d4b483;
    margin-bottom:10px;
}

.event-venue{
    font-size:28px;
    font-weight:bold;
    margin-bottom:8px;
}

.event-location{
    color:#aaa;
    margin-bottom:20px;
}

.event-buttons{
    display:flex;
    gap:12px;
}

.event-buttons button{
    flex:1;
    padding:14px;
    border:none;
    border-radius:14px;
    background:#c89b3c;
    color:#111;
    font-weight:bold;
}

/* =========================
   SCHEDULE
========================= */

.schedule-list{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.schedule-card{
    background:#1b1b1b;
    border-radius:16px;
    padding:16px;
    border:1px solid #333;
}

.schedule-card strong{
    display:block;
    color:#d4b483;
    margin-bottom:6px;
}

/* =========================
   STANDINGS
========================= */

.standings-card{
    background:#1b1b1b;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #333;
}

.standing-row{
    display:flex;
    justify-content:space-between;
    padding:16px;
    border-bottom:1px solid #2b2b2b;
}

.standing-row:last-child{
    border-bottom:none;
}

/* =========================
   ONLINE CARD
========================= */

.online-card{

    position:relative;
    overflow:hidden;

    background:
        linear-gradient(
            rgba(0,0,0,.38),
            rgba(0,0,0,.55)
        ),
        url('/upc/assets/bgimage.png');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    border:1px solid rgba(212,180,131,.18);

    border-radius:20px;

    padding:28px 24px;

    text-align:center;

    box-shadow:
        0 0 30px rgba(0,0,0,.45);
}

.coming-soon{
    color:#d4b483;
    font-size:12px;
    letter-spacing:2px;
    margin-bottom:10px;
}

/* =========================
   EVENT HERO
========================= */

.event-hero{
    position:relative;
    padding:50px 20px 35px;
    text-align:center;
    background:
        linear-gradient(
            to bottom,
            #4a1010,
            #111
        );
}

.event-overlay{
    position:absolute;
    inset:0;
    opacity:0.12;
}

.event-hero-content{
    position:relative;
    z-index:2;
}

.event-logo{
    width:120px;
    border-radius:18px;
    margin-bottom:20px;
}

.event-status{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:bold;
    letter-spacing:1px;
    margin-bottom:18px;
}

.event-status.live{
    background:#1d5c38;
    color:#c7ffd9;
}

.venue-title{
    font-size:34px;
    line-height:1.1;
    margin-bottom:10px;
}

.venue-location{
    color:#c9b08a;
    margin-bottom:8px;
}

.event-time{
    color:#aaa;
    font-size:15px;
}

/* =========================
   EVENT ACTIONS
========================= */

.event-actions{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
    padding:20px;
}

.action-btn{
    background:#1b1b1b;
    color:#f4ead2;
    border:1px solid #333;
    border-radius:18px;
    padding:18px 10px;
    font-weight:bold;
    font-size:15px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    appearance:none;
    -webkit-appearance:none;
}

.action-btn.primary{
    background:#c89b3c;
    color:#111;
    border:none;
}

/* =========================
   INFO CARD
========================= */

.info-card{
    background:#1b1b1b;
    border-radius:20px;
    overflow:hidden;
    border:1px solid #333;
}

.info-row{
    display:flex;
    justify-content:space-between;
    padding:18px;
    border-bottom:1px solid #2a2a2a;
}

.info-row:last-child{
    border-bottom:none;
}

.info-row span{
    color:#aaa;
}

/* =========================
   PLAYERS
========================= */

.players-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.player-card{
    display:flex;
    align-items:center;
    gap:16px;
    background:#1b1b1b;
    border-radius:18px;
    padding:18px;
    border:1px solid #333;
}

.player-rank{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#c89b3c;
    color:#111;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.player-name{
    font-size:18px;
    font-weight:bold;
    margin-bottom:4px;
}

.player-points{
    color:#aaa;
    font-size:14px;
}

/* =========================
   SPONSOR
========================= */

.sponsor-card{
    background:#1b1b1b;
    border-radius:20px;
    padding:24px;
    border:1px solid #4a2f2f;
}

.sponsor-card h2{
    margin-bottom:12px;
    color:#d4b483;
}

.sponsor-card p{
    color:#bbb;
    line-height:1.5;
}

/* =========================
   MOBILE NAV
========================= */

/* =========================
   MOBILE NAV
========================= */

.mobile-nav{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    height: 72px;

    background:
        linear-gradient(
            to top,
            #07131f,
            #0d1b2a
        );

    border-top: 1px solid rgba(63,169,245,0.18);

    display: flex;
    justify-content: space-around;
    align-items: center;

    z-index: 9999;

    backdrop-filter: blur(10px);

    box-shadow:
        0 -4px 18px rgba(0,0,0,0.45);
}

/* =========================
   NAV ITEM
========================= */

.mobile-nav-item{
    flex: 1;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: none;

    color: rgba(255,255,255,0.58);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;

    transition: all 0.18s ease;
}

/* =========================
   ICON
========================= */

.nav-icon{
    font-size: 20px;
    margin-bottom: 4px;
}

/* =========================
   ACTIVE
========================= */

.mobile-nav-item.active{
    color: #3fa9f5;

    text-shadow:
        0 0 10px rgba(63,169,245,0.55);
}

/* =========================
   TAP FEEDBACK
========================= */

.mobile-nav-item:active{
    transform: scale(0.96);
}

/* =========================
   MODAL
========================= */

.modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.78);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    z-index:9999;
}

.modal.hidden{
    display:none;
}

.modal-content{
    width:100%;
    max-width:420px;
    background:#181818;
    border-radius:24px;
    padding:30px 24px;
    border:1px solid #3a2a2a;
    text-align:center;
    animation:modalPop 0.18s ease;
}

@keyframes modalPop{
    from{
        transform:scale(0.95);
        opacity:0;
    }

    to{
        transform:scale(1);
        opacity:1;
    }
}

.modal-badge{
    display:inline-block;
    background:#2b1a1a;
    color:#d4b483;
    padding:8px 14px;
    border-radius:999px;
    font-size:11px;
    letter-spacing:1px;
    margin-bottom:18px;
}

.modal-content h2{
    font-size:28px;
    margin-bottom:8px;
}

.modal-sub{
    color:#aaa;
    margin-bottom:20px;
}

.checkin-count{
    background:#222;
    border-radius:16px;
    padding:16px;
    margin-bottom:24px;
    color:#d4b483;
}

.confirm-btn{
    width:100%;
    border:none;
    border-radius:16px;
    padding:16px;
    background:#c89b3c;
    color:#111;
    font-weight:bold;
    font-size:16px;
}

.success-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#1d5c38;
    color:#d7ffe4;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin:0 auto 20px;
}

.player-summary{
    background:#222;
    border-radius:18px;
    overflow:hidden;
    margin-bottom:24px;
}

.summary-row{
    display:flex;
    justify-content:space-between;
    padding:16px;
    border-bottom:1px solid #333;
}

.summary-row:last-child{
    border-bottom:none;
}

/* =========================
   AUTH
========================= */

.auth-buttons{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.secondary-auth-btn{
    width:100%;
    border:none;
    border-radius:16px;
    padding:16px;
    background:#222;
    color:#f4ead2;
    font-weight:bold;
    font-size:16px;
    border:1px solid #444;
}

.auth-input{
    width:100%;
    background:#222;
    border:1px solid #444;
    color:#f4ead2;
    border-radius:14px;
    padding:16px;
    margin-bottom:14px;
    font-size:16px;
}

.auth-input:focus{
    outline:none;
    border-color:#c89b3c;
}

/* =========================
   STANDINGS PAGE
========================= */

.standings-hero{
    text-align:center;
    padding:40px 20px 30px;
    background:
        linear-gradient(
            to bottom,
            #3d1010,
            #111
        );
}

.standings-logo{
    width:110px;
    border-radius:18px;
    margin-bottom:18px;
}

.standings-subtitle{
    color:#c9b08a;
    font-size:14px;
    margin-bottom:8px;
}

.standings-title{
    font-size:36px;
}

/* =========================
   FILTERS
========================= */

.filter-bar{
    display:flex;
    gap:10px;
    padding:20px;
    overflow-x:auto;
}

.filter-btn{
    border:none;
    border-radius:999px;
    padding:12px 18px;
    background:#222;
    color:#f4ead2;
    white-space:nowrap;
}

.filter-btn.active{
    background:#c89b3c;
    color:#111;
}

/* =========================
   PODIUM
========================= */

.podium-section{
    padding:10px 20px 30px;
}

.podium{
    display:flex;
    align-items:flex-end;
    justify-content:center;
    gap:14px;
}

.podium-player{
    flex:1;
    background:#1b1b1b;
    border-radius:20px;
    text-align:center;
    padding:20px 10px;
    border:1px solid #333;
}

.podium-player.first{
    padding-top:28px;
    border:1px solid #c89b3c;
}

.podium-player.second,
.podium-player.third{
    opacity:0.92;
}

.crown{
    font-size:28px;
    margin-bottom:8px;
}

.podium-rank{
    color:#c89b3c;
    font-weight:bold;
    margin-bottom:8px;
}

.podium-name{
    font-size:17px;
    font-weight:bold;
    margin-bottom:6px;
}

.podium-points{
    color:#aaa;
    font-size:14px;
}

/* =========================
   RANKINGS
========================= */

.rankings-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.ranking-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#1b1b1b;
    border-radius:18px;
    padding:18px;
    border:1px solid #333;
}

.ranking-left{
    display:flex;
    align-items:center;
    gap:16px;
}

.ranking-position{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#2a2a2a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}

.ranking-name{
    font-size:18px;
    font-weight:bold;
    margin-bottom:4px;
}

.ranking-meta{
    color:#999;
    font-size:13px;
}

.ranking-right{
    text-align:right;
}

.ranking-score{
    font-size:22px;
    font-weight:bold;
    margin-bottom:4px;
}

.ranking-change{
    font-size:13px;
    font-weight:bold;
}

.ranking-change.up{
    color:#4fd67b;
}

.ranking-change.down{
    color:#ff6d6d;
}

/* =========================
   VENUE PAGE
========================= */

.venue-hero{
    position:relative;
    padding:50px 20px 35px;
    text-align:center;
    background:
        linear-gradient(
            to bottom,
            #4a1515,
            #111
        );
}

.venue-overlay{
    position:absolute;
    inset:0;
    opacity:0.12;
}

.venue-hero-content{
    position:relative;
    z-index:2;
}

.venue-logo{
    width:210px;
    border-radius:18px;
    margin-bottom:20px;
}

.venue-badge{
    display:inline-block;
    background:#2b1a1a;
    color:#d4b483;
    padding:8px 14px;
    border-radius:999px;
    font-size:11px;
    letter-spacing:1px;
    margin-bottom:18px;
}

.venue-page-title{
    font-size:34px;
    line-height:1.1;
    margin-bottom:10px;
}

.venue-page-location{
    color:#c9b08a;
    margin-bottom:8px;
}

.venue-night{
    color:#aaa;
    font-size:15px;
}

/* =========================
   STATUS CARD
========================= */

.status-card{
    background:#1b1b1b;
    border-radius:20px;
    padding:24px;
    border:1px solid #333;
}

.status-live{
    color:#5fe08a;
    font-weight:bold;
    margin-bottom:12px;
    font-size:18px;
}

.status-details{
    color:#bbb;
    margin-bottom:20px;
    line-height:1.5;
}
/* =========================
   SCHEDULE FEED
========================= */

.schedule-feed{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.event-feed-card{
    background:#1b1b1b;
    border-radius:22px;
    padding:20px;
    border:1px solid #333;
}

.event-feed-card.featured{
    border:1px solid #c89b3c;
}

.featured-badge{
    display:inline-block;
    background:#c89b3c;
    color:#111;
    font-size:11px;
    font-weight:bold;
    padding:6px 10px;
    border-radius:999px;
    margin-bottom:14px;
}

.event-feed-day{
    color:#c9b08a;
    font-size:13px;
    letter-spacing:1px;
    margin-bottom:12px;
}

.event-feed-main{
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-bottom:18px;
}

.event-feed-title{
    font-size:24px;
    font-weight:bold;
    margin-bottom:6px;
}

.event-feed-location{
    color:#aaa;
}

.event-feed-time{
    font-size:18px;
    font-weight:bold;
    color:#f4ead2;
    white-space:nowrap;
}

.event-feed-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.event-tag{
    color:#d4b483;
    font-size:13px;
}

.feed-btn{
    border:none;
    border-radius:12px;
    padding:10px 16px;
    background:#c89b3c;
    color:#111;
    font-weight:bold;
}
/* =========================================
   AUTH MODAL
========================================= */

.upc-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.78);
    z-index: 5000;

    align-items: center;
    justify-content: center;

    padding: 20px;
}

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

/* =========================================
   MODAL CONTENT
========================================= */

.auth-modal-content {
    width: 100%;
    max-width: 420px;

    background: #121212;
    border: 1px solid #2c2c2c;

    border-radius: 18px;

    padding: 24px;

    position: relative;

    box-shadow:
        0 0 30px rgba(0,0,0,0.45);
}

/* =========================================
   CLOSE BUTTON
========================================= */

.upc-modal-close {
    position: absolute;

    top: 14px;
    right: 16px;

    background: none;
    border: none;

    color: #888;

    font-size: 28px;

    cursor: pointer;
}

.upc-modal-close:hover {
    color: white;
}

/* =========================================
   HEADER
========================================= */

.auth-header {
    text-align: center;
    margin-bottom: 22px;
}

.auth-header h2 {
    margin: 0 0 8px;
    color: white;
}

.auth-subtitle {
    color: #999;
    font-size: 14px;
    margin: 0;
}

/* =========================================
   TABS
========================================= */

.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;

    border: none;
    border-radius: 10px;

    padding: 12px;

    background: #1d1d1d;
    color: #aaa;

    cursor: pointer;

    font-weight: 600;
}

.auth-tab.active {
    background: #3fa9f5;
    color: white;
}

/* =========================================
   PANELS
========================================= */

.auth-panel {
    display: none;
}

.auth-panel.active {
    display: block;
}

/* =========================================
   FIELDS
========================================= */

.auth-field {
    margin-bottom: 18px;
}

.auth-field label {
    display: block;
    margin-bottom: 8px;

    color: #ccc;
    font-size: 14px;
}

.auth-field input {
    width: 100%;

    background: #1b1b1b;
    border: 1px solid #333;

    border-radius: 10px;

    padding: 14px;

    color: white;
    font-size: 15px;

    box-sizing: border-box;
}

.auth-field input:focus {
    outline: none;
    border-color: #3fa9f5;
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.auth-submit-btn {
    width: 100%;

    border: none;
    border-radius: 12px;

    padding: 14px;

    background: #3fa9f5;
    color: white;

    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.15s ease;
}

.auth-submit-btn:hover {
    transform: translateY(-1px);
}

/* =========================================
   STATUS
========================================= */

.auth-status {
    margin-top: 18px;

    text-align: center;

    font-size: 14px;
    min-height: 20px;

    color: #ff7b7b;
}

.auth-status.success {
    color: #67d98b;
}
a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   VENUES DIRECTORY HERO
========================= */

.page-hero{
    position:relative;
    padding:50px 20px 35px;
    text-align:center;

    background:
        linear-gradient(
            to bottom,
            #4a1515,
            #111
        );
}

.page-hero-overlay{
    position:absolute;
    inset:0;
    opacity:0.12;
}

.page-hero-content{
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;

    background:#2b1a1a;
    color:#d4b483;

    padding:8px 14px;

    border-radius:999px;

    font-size:11px;
    letter-spacing:1px;

    margin-bottom:18px;
}

.page-title{
    font-size:36px;
    line-height:1.1;
    margin-bottom:12px;
}

.page-subtitle{
    color:#c9b08a;
    font-size:15px;
    line-height:1.5;
}

/* =========================
   VENUE DIRECTORY
========================= */

.venue-directory{
    display:flex;
    flex-direction:column;
    gap:18px;
}

/* =========================
   VENUE CARD
========================= */

.venue-directory-card{
    display:block;

    background:#1b1b1b;

    border:1px solid #333;

    border-radius:22px;

    overflow:hidden;

    transition:0.15s ease;
}

.venue-directory-card:active{
    transform:scale(0.985);
}

/* =========================
   IMAGE
========================= */

.venue-directory-image-wrap{
    position:relative;
    height:190px;
    overflow:hidden;
}

.venue-directory-image{
    width:100%;
    height:100%;

    object-fit:cover;

    display:block;
}

.venue-directory-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.55),
            transparent 55%
        );
}

/* =========================
   CONTENT
========================= */

.venue-directory-content{
    padding:20px;
}

.venue-directory-name{
    font-size:28px;
    font-weight:bold;

    margin-bottom:8px;
}

.venue-directory-location{
    color:#c9b08a;

    margin-bottom:10px;
}

.venue-directory-night{
    color:#aaa;

    font-size:14px;

    margin-bottom:18px;
}

/* =========================
   BUTTON
========================= */

.venue-directory-button{
    display:inline-block;

    background:#c89b3c;
    color:#111;

    padding:12px 18px;

    border-radius:14px;

    font-weight:bold;
}

.feed-btn{
    display:inline-block;

    text-decoration:none;
}

/* =========================================
   PROFILE HERO
========================================= */

.profile-hero{
    position:relative;

    padding:80px 20px 50px;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.4),
            rgba(0,0,0,.8)
        ),
        url('/upc/assets/upclogo.png');

    background-size:cover;
    background-position:center;
}

.profile-hero-inner{
    position:relative;
    z-index:2;

    max-width:1100px;
    margin:0 auto;

    display:flex;
    align-items:center;
    gap:30px;

    flex-wrap:wrap;
}

.profile-avatar{
    width:130px;
    height:130px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #c89b3c;

    background:#111;
}

.profile-kicker{
    color:#d4b483;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:10px;
}

.profile-name{
    font-size:42px;

    margin-bottom:10px;
}

.profile-meta{
    color:#d5d5d5;
}
.profile-settings-form{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-top:16px;
}

.profile-label{
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    opacity:.7;
    text-transform:uppercase;
}

.profile-input{
    width:100%;
    padding:14px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.08);

    background:
        rgba(255,255,255,.04);

    color:#fff;

    font-size:15px;
}

.profile-divider{
    margin:28px 0;
    border:none;
    border-top:1px solid rgba(255,255,255,.08);
}
/* =========================================
   PROFILE SECTION
========================================= */

.profile-section{
    max-width:1100px;

    margin:0 auto;

    padding:30px 20px;
}

/* =========================================
   STATS
========================================= */

.profile-stats-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));

    gap:20px;
}

.profile-stat-card{
    background:#181818;

    border:1px solid #2b2b2b;

    border-radius:22px;

    padding:28px;
}

.profile-stat-number{
    font-size:36px;

    font-weight:bold;

    margin-bottom:10px;
}

.profile-stat-label{
    color:#aaa;
}

/* =========================================
   PROFILE CARD
========================================= */

.profile-card{
    background:#181818;

    border:1px solid #2b2b2b;

    border-radius:24px;

    padding:30px;
}

.profile-section-title{
    font-size:26px;

    margin-bottom:24px;

    color:#d4b483;
}

.profile-info-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(240px,1fr));

    gap:20px;
}

.profile-info-label{
    color:#aaa;

    font-size:13px;

    margin-bottom:8px;
}

.profile-info-value{
    font-size:18px;
}

/* =========================================
   ACTIONS
========================================= */

.profile-actions{
    display:flex;
    gap:16px;

    flex-wrap:wrap;
}
/* =========================================
   EVENT TOOLTIP
========================================= */

.event-info-wrap{

  position:relative;

  display:inline-flex;
  align-items:center;
}

.event-info-btn{

  width:22px;
  height:22px;

  border:none;
  border-radius:50%;

  cursor:pointer;

  font-size:12px;
  font-weight:800;

  color:#d7ecff;

  background:
    linear-gradient(
      145deg,
      rgba(0,229,255,.22),
      rgba(0,120,255,.18)
    );

  border:1px solid rgba(120,220,255,.35);

  box-shadow:
    0 0 8px rgba(0,229,255,.18);

  transition:.16s;
}

.event-info-btn:hover{

  transform:translateY(-1px);

  box-shadow:
    0 0 14px rgba(0,229,255,.35);
}

.event-info-popup{

  position:absolute;

  top:34px;
  left:0;

  width:240px;

  padding:14px;

  border-radius:14px;

  background:
    linear-gradient(
      180deg,
      rgba(16,20,30,.98),
      rgba(6,8,14,.98)
    );

  border:1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,.45);

  z-index:500;

  display:none;
}

.event-info-popup.active{
  display:block;
}

.event-info-title{

  font-size:14px;
  font-weight:800;

  color:#ffffff;

  margin-bottom:8px;
}

.event-info-desc{

  font-size:13px;
  line-height:1.45;

  color:#b7c7e6;

  margin-bottom:10px;
}

.event-info-prize{

  font-size:13px;
  font-weight:700;

  color:#ffd56b;
}

.auth-links{
    text-align:center;
    margin-top:8px;
}

.auth-links a{
    color:#3fa9f5;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
}

.auth-links a:hover{
    text-decoration:underline;
}