@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body{
    font-family:'Inter',sans-serif;
    background:#070707;
    color:white;
    overflow-x:hidden;
}

body::before{
    content:'';
    position:fixed;
    inset:0;
    background:
    radial-gradient(circle at top left, rgba(168,85,247,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,70,85,0.16), transparent 30%);
    z-index:-1;
}

.navbar{
    width:100%;
    padding:22px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(0,0,0,0.35);
    border-bottom:1px solid rgba(255,255,255,0.08);
}

.logo{
    font-size:28px;
    font-weight:800;
    letter-spacing:2px;
}

.logo span{
    color:#ff4655;
}

.nav-links{
    display:flex;
    gap:35px;
}

.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:#a855f7;
}

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:0 8%;
    position:relative;
}

.hero-content h1{
    font-size:82px;
    line-height:1;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#a855f7;
}

.hero-content p{
    max-width:750px;
    margin:auto;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.7;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
}

.btn{
    padding:15px 34px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.btn-primary{
    background:linear-gradient(135deg,#ff4655,#a855f7);
    color:white;
    box-shadow:0 0 30px rgba(168,85,247,0.4);
}

.btn-primary:hover{
    transform:translateY(-4px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,0.15);
    color:white;
    background:rgba(255,255,255,0.04);
}

.section{
    padding:110px 8%;
}

.section-title{
    font-size:48px;
    margin-bottom:50px;
    font-weight:800;
}

.section-title span{
    color:#ff4655;
}

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

.glass-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:24px;
    padding:30px;
    backdrop-filter:blur(14px);
    transition:0.3s;
    position:relative;
    overflow:hidden;
}

.glass-card:hover{
    transform:translateY(-6px);
    border-color:rgba(168,85,247,0.4);
}

.glow{
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(168,85,247,0.18);
    border-radius:50%;
    filter:blur(70px);
    top:-60px;
    right:-60px;
}

.card-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:12px;
}

.card-text{
    color:#bfbfbf;
    line-height:1.7;
}

.tournament-box{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.countdown{
    font-size:38px;
    font-weight:800;
    color:#ff4655;
}

.form-box{
    max-width:620px;
    margin:auto;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    padding:45px;
    border-radius:28px;
}

.input-group{
    margin-bottom:22px;
}

.input-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
}

.input-group input{
    width:100%;
    padding:16px;
    border:none;
    outline:none;
    border-radius:14px;
    background:#111;
    color:white;
    border:1px solid rgba(255,255,255,0.08);
}

.submit-btn{
    width:100%;
    padding:16px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#ff4655,#9333ea);
    color:white;
    font-weight:800;
    font-size:16px;
    cursor:pointer;
}

.hof-player{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px;
    border-radius:18px;
    background:rgba(255,255,255,0.03);
    margin-bottom:16px;
}

.rank{
    font-size:28px;
    font-weight:800;
    color:#ff4655;
}

.footer{
    padding:40px 8%;
    border-top:1px solid rgba(255,255,255,0.08);
    text-align:center;
    color:#999;
}

@media(max-width:900px){

.hero-content h1{
    font-size:54px;
}

.nav-links{
    display:none;
}

.hero-buttons{
    flex-direction:column;
}

.section-title{
    font-size:38px;
}

}

/* ========================================
   BUTTONS
======================================== */

.join-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #ff4655,
        #9333ea
    );

    color:white;

    text-decoration:none;

    font-weight:700;

    font-size:15px;

    transition:0.3s ease;

    box-shadow:
        0 0 25px rgba(168,85,247,0.25);

    margin-top:20px;
}

.join-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 0 35px rgba(168,85,247,0.45);

    background:linear-gradient(
        135deg,
        #ff5f6d,
        #a855f7
    );
}

/* ========================================
   GLOBAL BUTTONS
======================================== */

.join-btn{

    display:inline-flex !important;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #ff4655,
        #9333ea
    );

    color:white !important;

    text-decoration:none !important;

    font-weight:700;

    font-size:15px;

    margin-top:20px;

    transition:0.3s ease;

    box-shadow:
        0 0 25px rgba(168,85,247,0.25);

}

.join-btn:hover{

    transform:translateY(-3px);

    background:linear-gradient(
        135deg,
        #ff5f6d,
        #a855f7
    );

    box-shadow:
        0 0 35px rgba(168,85,247,0.45);

}

.profile-top{

    display:flex;

    align-items:center;

    gap:30px;

    margin-top:30px;

    margin-bottom:30px;

    flex-wrap:wrap;

}

.profile-avatar{

    width:120px;

    height:120px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #9333ea;

    box-shadow:
        0 0 30px rgba(147,51,234,0.35);

}

.profile-info{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.profile-line{

    display:flex;

    gap:12px;

    align-items:center;

    font-size:22px;

}

.profile-label{

    color:#888;

    font-weight:600;

    min-width:100px;

}

.profile-value{

    color:white;

    font-weight:700;

}

.hero{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    min-height:100vh;

    position:relative;

    overflow:hidden;

}

.hero-content{

    flex:1;

    z-index:2;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.hero-image img{

    width:520px;

    max-width:100%;

    filter:
    drop-shadow(0 0 60px rgba(168,85,247,0.35));

}

.hero-bg{

    position:absolute;

    width:700px;

    height:700px;

    background:
    rgba(168,85,247,0.15);

    border-radius:50%;

    filter:blur(140px);

    top:-200px;

    right:-200px;

    z-index:1;

}

.glass-card{

    transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}

.glass-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 0 35px rgba(168,85,247,0.18);

}

.live-badge {
    display: inline-flex;          /* passt die Breite an den Inhalt an */
    align-items: center;           /* zentriert Punkt und Text vertikal */
    gap: 8px;                      /* Abstand zwischen Punkt und Text */
    background: #ff465520;
    border: 1px solid #ff4655;
    color: #ff4655;
    padding: 6px 12px;             /* kleineres Padding für kompaktere Box */
    border-radius: 999px;
    font-weight: 300;
    font-size: 14px;               /* optional: kleiner Text */
    line-height: 1;                /* verhindert zu große Höhe */
    white-space: nowrap;            /* verhindert Umbruch */
}
.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4655;
    border-radius: 50%;
    flex-shrink: 0;                 /* Punkt bleibt fix */
    animation: pulse 1s infinite;
}

.player-placement{

    font-size:38px;

    margin-bottom:15px;

}

.champion-box{

    margin-top:25px;

    padding:24px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        rgba(255,215,0,0.12),
        rgba(168,85,247,0.12)
    );

    border:
    1px solid rgba(255,215,0,0.25);

}

.hero{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;

    min-height:100vh;

    position:relative;

    overflow:hidden;

}

.hero-content{

    flex:1;

    z-index:2;

}

.hero-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:2;

}

.hero-image img{

    width:520px;

    max-width:100%;

    filter:
    drop-shadow(0 0 60px rgba(168,85,247,0.35));

}

.hero-bg{

    position:absolute;

    width:700px;

    height:700px;

    background:
    rgba(168,85,247,0.15);

    border-radius:50%;

    filter:blur(140px);

    top:-200px;

    right:-200px;

    z-index:1;

}

.glass-card{

    transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}

.glass-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 0 35px rgba(168,85,247,0.18);

}

.live-badge {
    display: inline-flex;          /* passt die Breite an den Inhalt an */
    align-items: center;           /* zentriert Punkt und Text vertikal */
    gap: 8px;                      /* Abstand zwischen Punkt und Text */
    background: #ff465520;
    border: 1px solid #ff4655;
    color: #ff4655;
    padding: 6px 12px;             /* kleineres Padding für kompaktere Box */
    border-radius: 999px;
    font-weight: 300;
    font-size: 14px;               /* optional: kleiner Text */
    line-height: 1;                /* verhindert zu große Höhe */
    white-space: nowrap;            /* verhindert Umbruch */
}
.live-dot {
    width: 8px;
    height: 8px;
    background: #ff4655;
    border-radius: 50%;
    flex-shrink: 0;                 /* Punkt bleibt fix */
    animation: pulse 1s infinite;
}
.player-placement{

    font-size:38px;

    margin-bottom:15px;

}

.champion-box{

    margin-top:25px;

    padding:24px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        rgba(255,215,0,0.12),
        rgba(168,85,247,0.12)
    );

    border:
    1px solid rgba(255,215,0,0.25);

}

@media(max-width:1100px){

.hero{

    flex-direction:column;

    text-align:center;

}

.hero-stats{
    display:flex;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
    justify-content: center; /* <-- fügt horizontales Zentrieren hinzu */
    align-items: center;     /* optional, falls die Höhe der Boxen variiert */
}

.hero-buttons{

    justify-content:center;

}

.hero-image img{

    width:360px;

}


}
.hero-content {
    flex:1;
    z-index:2;

    /* Text nach oben verschieben */
    display:flex;
    flex-direction:column;
    justify-content:flex-start; /* statt center */
    padding-top: 60px; /* Abstand von oben, anpassen nach Wunsch */
}

.hof-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
    margin-top:30px;
}

.hof-player{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    border-radius:18px;
    background:rgba(255,255,255,0.03);
}

.match-card.win {
    border: 1px solid #10b981; /* grüne Umrandung */
    background: rgba(16,185,129,0.1); /* leichter grüner Schimmer */
}

.match-card.loss {
    border: 1px solid #ff4655; /* rote Umrandung */
    background: rgba(255,70,85,0.1); /* leichter roter Schimmer */
}

.match-card.win {
    box-shadow: 0 0 25px rgba(16,185,129,0.2);
}

.match-card.loss {
    box-shadow: 0 0 25px rgba(255,70,85,0.2);
}