html {
	color: white;
}

body {
  font-family: Arial, sans-serif;
  margin:0;
  padding:0;
  background: rgba( 20,20,20);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
::-webkit-scrollbar {
	display: none;
}
#unlimitedStats {
            margin-top: 4vh;
            margin-bottom: 2vh;
            color: white;
            font-size: 2.2vh;
            font-weight: bold;
            text-align: center;
            line-height: 1.6;
			white-space: nowrap;
        }

        #unlimitedPrize {
            color: rgba(77,182,145);
			white-space: nowrap;
        }
#loadingScreen {
            width: 100%;
            min-height: 70vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

		#loadingCover {
            width: 55vw;
            max-width: 320px;
            margin-bottom: 4vh;
        }

        #loadingText {
            color: white;
            font-size: 2.5vh;
            font-weight: bold;
            margin-bottom: 2vh;
            text-transform: uppercase;
        }

        #loadingBarOuter {
            width: 60vw;
            max-width: 350px;
            height: 2vh;
            border: 0.2vh solid white;
            border-radius: 2vh;
            overflow: hidden;
        }

        #loadingBarInner {
            width: 0%;
            height: 100%;
            background: rgba(77,182,145);
            transition: width 0.25s ease;
        }

        #loadingPercent {
            color: white;
            font-size: 1.8vh;
            margin-top: 1.5vh;
            opacity: 0.8;
        }

.register-screen {
    height: 100vh;
	width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    overflow: hidden;
    background: #111;
}

/* Großes Wasserzeichen */
.register-screen::before {
    content: "";
    position: absolute;
    inset: -30%;
    background: url("Bilder/footballcardslogo.png") center center no-repeat;
    background-size: 1400px;
    opacity: 0.05;
    transform: rotate(-15deg);
    z-index: 0;
}

/* ===========================
   Loginbox
=========================== */

.register-box {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 320px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    gap: 14px;

    text-align: center;

    background: rgba(28, 28, 28, 0.94);

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;

    backdrop-filter: blur(8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        0 0 25px rgba(77,182,145,0.08);
}

/* ===========================
   Logo
=========================== */

.login-logo {
    width: 140px;
    margin: 0 auto 8px;
    display: block;

    filter: drop-shadow(0 10px 25px rgba(0,0,0,.45));
}

/* ===========================
   Überschrift
=========================== */

.register-box h1 {
    color: white;
    margin: 0 0 5px;
    font-size: 30px;
    font-weight: 700;
}

/* ===========================
   Eingabefelder
=========================== */

.register-box input {
    padding: 13px 15px;

    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.08);

    background: #101010;
    color: white;

    font-size: 15px;

    transition: .2s;
}

.register-box input::placeholder {
    color: #999;
}

.register-box input:focus {
    outline: none;
    border-color: rgb(77,182,145);

    box-shadow: 0 0 0 3px rgba(77,182,145,.20);
}

/* ===========================
   Button
=========================== */

.register-box button {
    padding: 13px;

    border: none;
    border-radius: 10px;

    background: rgb(77,182,145);
    color: #08130f;

    font-size: 15px;
    font-weight: bold;

    cursor: pointer;

    transition: .2s;
}

.register-box button:hover {
    background: rgb(92,205,164);
    transform: translateY(-2px);
}

.register-box button:active {
    transform: translateY(0);
}

/* ===========================
   Texte
=========================== */

.register-box p {
    color: rgba(255,255,255,.82);
    font-size: 14px;
    margin: 4px 0 0;
}

.register-box a {
    color: rgb(77,182,145);
    text-decoration: none;
    font-weight: bold;
}

.register-box a:hover {
    text-decoration: underline;
}

/* ===========================
   Fehlermeldung
=========================== */

.error-message {
    color: #ff6666 !important;
    background: rgba(255,102,102,.12);
    border: 1px solid rgba(255,102,102,.25);
    border-radius: 10px;
    padding: 10px;
    font-size: 14px;
}

.playercard-wrapper {
    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;   /* <-- neu */
    align-items: center;
    justify-content: center;

    gap: 2vh;
}

.fb-card-box {
    width: 14vh;
    float: left;
    margin-left: 2vh;
    margin-top: 3vh;
}

.fb-card-box .fb-card-image2 {
    float: none;
    margin: 0;
}

.fb-card-info2 {
    width: 15vh;
    margin-top: 0.6vh;
    padding: 0.5vh 0.8vh;
    box-sizing: border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 0.8vh;
    font-size: 1.4vh;
}

.fb-card-info3 {
    width: 15vh;
    margin-top: 0.6vh;
    padding: 1.5vh 0.8vh;
    box-sizing: border-box;

    display: flex;
    justify-content: center;
    align-items: center;

    background: rgba(37,142,105,1);
    color: white;
    border-radius: 0.8vh;
    font-size: 1.4vh;
}
.fb-card-info3:hover {
    background: rgba(60,234,173,1);
}

.fb-card-image,
.fb-card-info {
    background: rgba(100,100,100,0.2);
    color: white;
    font-size: 1.8vh;
    line-height: 1.5;
    font-weight: bold;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 2vh;
    border-radius: 1vh;

    width: 28vh;      /* gleiche Breite wie die Karte */
    box-sizing: border-box;
}

.fb-card-image {
    width: 28vh;
    height: 42vh;

    background-size: cover;
    background-position: center;

    border: 0.5vh solid;
    border-radius: 1vh;
}
.fb-card-image2 {
    width: 14vh;
    height: 21vh;
	
    background-size: cover;
    background-position: center;

    border: 0.5vh solid;
    border-radius: 1vh;
}

.fb-card-info {
    background: rgba(100,100,100,0.2);
    color: white;
    font-size: 1.8vh;
    line-height: 1.5;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.screen {
    display: none;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.screen.active {
    display: flex;
}

.pack-cover {
    text-align: center;
    cursor: pointer;
}

.card-screen {
    cursor: pointer;
}

.pack-status {
    position: fixed;
    top: 15vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    padding: 1vh 3vh;
    border-radius: 999px;

    color: white;
    font-size: 2.4vh;
    font-weight: bold;
    text-transform: uppercase;
}

.pack-status.new {
    background: rgba(77, 182, 145, 0.5);
}

.pack-status.duplicate {
    background: rgba(255, 0, 0, 0.5);
	display: none;
}

.summary-status {
    color: white;
	width: 14vh;
    font-weight: bold;
    text-align: center;
	margin-left: 2vh;
	margin-top: 3vh;
    margin-bottom: -1.5vh;
    font-size: 1.5vh;
    text-transform: uppercase;
	background: ;
}

.summary-status.new {
    color: rgba(77, 182, 145, 0.95);
}

.summary-status.duplicate {
    color: rgba(255, 0, 0, 0.95);
	display: none;
}

#summary-screen {
    flex-direction: column;
	background: ;
}

.summary-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0vh;
    justify-content: center;
	align-items: center;
	text-align: center;
}

.click-hint {
    margin-top: 2vh;
    font-size: 2vh;
    color: white;
    text-align: center;
    animation: blinkHint 1s infinite;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@keyframes blinkHint {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.25;
    }
}

.menutop {
	height: 4vh;
	padding: 0 2vh;
	background: rgba(0,0,0,0.3);
	margin-top: 2vh;
	margin-right: 2vh;
	color: white;
	border-radius: 1vh;
	z-index: 1000;
	font-size: 1.6vh;
	text-align: center;
	display:flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(10px);
	text-decoration: none;
	font-weight: bold;
	float: right;
}

#outerbar{
    width: 100%;
    height: 45vh;
    margin-top: 2vh;
    color: white;
    overflow: hidden;
    box-sizing: content-box;
    float: left;
}

#innerbar{
    width: auto;
    height: 45vh;
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    box-sizing: content-box;
}

#packimage2{
    width: 20vh;
    height: 43vh;
    display: inline-block;
    margin-left: 2vh;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
    vertical-align: top;
}

.packimage{
    width: 20vh;
    height: 30vh;
    background-size: cover;
    background-position: center;
}

.packname{
    width: 100%;
	height: 3vh;
    text-align: center;
    font-size: 1.8vh;
    font-weight: bold;
    color: white;
    margin-top: 1vh;
}

.packprice{
    width: 100%;
	height: 3vh;
	display: flex;
    text-align: center;
	justify-content: center;
	align-items: center;
    font-size: 1.7vh;
	font-weight: bold;
    color: white;
    margin-top: 0.5vh;
	background: rgb(77,182,145);
	border-radius: 0.5vh;
}
#theme{
	padding: 0 10vh;
	width: fit-content;
	margin-left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4vh;
	margin-top: 10vh;
	background: linear-gradient(to right,rgba(0,0,0,0) 10%,rgba(77,182,145,0.8) 25%,rgba(77,182,145,0.8) 75%,rgba(0,0,0,0) 90%);
	overflow: hidden;
	font-size: 2vh;
	font-weight: bold;
	float: top;
	white-space: nowrap;
}
#theme2{
	padding: 0 3vh;
	height: 4vh;
	background: linear-gradient(to right,rgba(0,0,0,0) 10%,rgba(77,182,145,0.8) 25%,rgba(77,182,145,0.8) 75%,rgba(0,0,0,0) 90%);
	font-size: 2vh;
	font-weight: bold;
	display:flex;
	align-items: center;
	justify-content: center;
	width: 30vh;
}

.sortbar{
    width:100%;
    display:flex;
    justify-content:center;
    gap:1vh;
    margin-top:2vh;
    margin-bottom:2vh;
    flex-wrap:wrap;
}

.sortbar a{
    text-decoration:none;
    color:white;
	font-weight: bold;
    background:rgba(255,255,255,0.1);
    padding:1vh 2vh;
    border-radius:1vh;
    font-size:1.7vh;
    transition:0.2s;
}

.sortbar a.active{
    background:rgba(77,182,145,0.4);
}

.sortbar a:hover{
    background:rgba(255,255,255,0.2);
}
.collection-card{
    display:none;
}

.show-more{
    width:80%;
    margin-left:10%;
    margin-top:4vh;
    margin-bottom:6vh;
	float: left;

    padding:2vh 0;

    text-align:center;

    background:rgba(255,255,255,0.12);
    color:white;

    border-radius:2vh;

    font-size:2vh;
    font-weight:bold;

    cursor:pointer;
}

.show-more:hover{
    background:rgba(77,182,145,0.9);
}



#fb0029{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	overflow: hidden;
	text-align: center;
	align-items: center;
	justify-content: center;
}

#fb0039{
	width: 41vh;
	height: 72vh;
	display: block;
	overflow: ;
}

#fb0049{
	margin-top: 2vh;
	margin-bottom: 2vh;
	font-weight: bold;
	color: white;
}



.fb0059{
	width: 18.5vh;
	height: 8vh;
	display: flex;
	float: left;
	margin-top: 1vh;

	background: rgba(77,182,145);

	font-size: 2vh;
	font-weight: bold;
	color: rgb(20,20,20);

	text-align: center;
	align-items: center;
	justify-content: center;

	border-radius: 1vh;
	cursor: pointer;
	transition: 0.2s;
}

.fb0059:hover{
	transform: scale(1.03);
}




.playercard{
	width: 24vh;
	height: 36vh;
	position: relative;
    overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;

	border: 0.5vh solid white;
	border-radius: 2vh;

	margin: 2vh auto;

	box-shadow: 0 0 1vh rgba(0,0,0,0.5);
}

.cardNameBlur {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;
    height: 22%;

    backdrop-filter: blur(2vh);
    -webkit-backdrop-filter: blur(2vh);

    background: rgba(255,255,255,0.08);

    opacity: 1;

    z-index: 10;

    pointer-events: none;
}


#fb0000{
	width: 100%;
	height: 31vh;
	margin-top: 2vh;
	color: white;
	overflow: hidden;
	box-sizing: content-box;
	float: left;
}
#fb000{
	width: auto;
	height: 31vh;
	overflow-x: scroll;
	overflow-y: hidden;
	white-space: nowrap;
	box-sizing: content-box;
	background: ;
}
#fb0001{
	width: 20vh;
	height: 30vh;
	display: inline-block;
	background: rgb(60,60,60);
	border-radius: 1vh;
	margin-left: 2vh;
	overflow: hidden;
	text-overflow: ellipsis;
	border: 0.5vh solid rgb(100,100,100);
	text-decoration: none;
}
#fb0001:hover{
	border: 0.5vh solid white;
}
#fb0002{
	width: 100%;
	height: 100%;
	display: flex;
	background: ;
	overflow: hidden;
	font-size: 2.5vh;
	font-weight: bold;
	color: white;
}
#fb0003{
	width: 100%;
	height: 8vh;
	display: flex;
	background: linear-gradient(to top, rgba( 0,0,0,0.8) 70%, rgba(0,0,0,0) 100%);
	overflow: hidden;
	font-size: 2.5vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
	float: top;
	margin-top: 22vh;
}
#fb001{
	width: 100%;
	height: 10vh;
	float: left;
	position: fixed;
	top: 0;
	display: flex;
	background: rgb(60,60,60);
	overflow: hidden;
	font-size: 2.5vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#fb0011{
	width: 100%;
	height: 10vh;
	position: fixed;
	top: 0;
	background: rgb(60,60,60);
	overflow: hidden;
	z-index: 90;
}
#fb002{
	width: 100%;
	height: 100vh;
	display: flex;
	background: ;
	overflow: hidden;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#fb003{
	width: 44vh;
	height: 56vh;
	display: block;
	background: ;
	overflow: hidden;
}
#fb004{
	width: 42vh;
	height: 13vh;
	display: flex;
	padding: 1vh;
	float: left;
	background: rgb(0,142,150);
	overflow: hidden;
	font-size: 2vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-radius: 1vh;
}
.fb005{
	width: 19vh;
	height: 13vh;
	margin-top: 2vh;
	padding: 1vh;
	display: flex;
	float: left;
	background: rgb(60,60,60);
	overflow: hidden;
	font-size: 1.8vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-radius: 1vh;
}
.fb005:hover{
	background: rgb(100,100,100);
}
#fb006{
	width: 100%;
	height: 15vh;
	display: flex;
	float: left;
	background: rgb(60,60,60);
	overflow: visible;
	font-size: 2vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-radius: 1vh;
	line-height: 1.5;
}
#fb007{
	width: 100%;
	height: 5vh;
	display: flex;
	float: left;
	margin-top: 2vh;
	background: rgb(0,142,150);
	text-decoration: none;
	overflow: hidden;
	font-size: 2vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-radius: 1vh;
}
#fb007:hover{
	background: rgb(40,182,190);
}



























#a000 {
	width: 65vh;
	max-width: 96%;
	height: 3.4vh;
	margin-left: 2%;
	margin-top: 0.5vh;
	float: top;
	display: flex;
	background: rgb(60,60,60);
	overflow: hidden;
	font-size: 1.5vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#a000:hover{
	color: yellow;
}
#a0001 {
	width: 65vh;
	max-width: 96%;
	height: 3.4vh;
	margin-left: 2%;
	margin-top: 0.5vh;
	float: top;
	display: flex;
	background: rgb(60,60,60);
	overflow: hidden;
	font-size: 1.5vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#a0002 {
	width: 65vh;
	max-width: 96%;
	height: 3.4vh;
	margin-left: 2%;
	margin-top: 0.5vh;
	float: top;
	display: flex;
	background: white;
	overflow: hidden;
	font-size: 1.5vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.a001 {
	width: 4vh;
	height: 2.6vh;
	margin-left: 0.5vh;
	margin-top: 0vh;
	float: left;
	display: flex;
	background: ;
	font-size: 1.2vh;
	font-weight: bold;
	text-align: center;
	align-items: center;
	justify-content: center;
	border-left: 0.2vh solid rgb(180,180,180);
}
.arr-hidden {
    display: none;
}
#show-more-btn{
	width: 65vh;
	height: 3.4vh;
	max-width: 96%;
	margin-left: 2%;
	margin-top: 0.5vh;
	margin-bottom: 3vh;
	float: top;
	display: flex;
	background: rgb(60,60,60);
	overflow: hidden;
	font-size: 1.5vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#a002 {
	width: 65vh;
	height: 3.4vh;
	max-width: 96%;
	margin-left: 2%;
	margin-top: 2vh;
	float: top;
	display: block;
	background: rgb(60,60,60);
	overflow: hidden;
	font-size: 1.5vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
}
#a003 {
	width: 10vh;
	height: 3.4vh;
	margin-right: 0.5vh;
	margin-top: 0vh;
	float: left;
	display: flex;
	background: ;
	font-size: 1.4vh;
	font-weight: bold;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 0vh 0vh 1.5vh 1.5vh;
}
#a003:hover{
	background: rgb(100,100,100);
}
#a004 {
	width: 3.2vh;
	height: 3.2vh;
	margin-right: 0.9vh;
	margin-top: 0.9vh;
	float: right;
	display: flex;
	background: ;
	font-size: 4.5vh;
	font-weight: lighter;
	color: white;
	text-align: center;
	align-items: center;
	justify-content: center;
	overflow: hidden
}