body {

    background: linear-gradient(to bottom, #09627d, #021f33);
    
    
    
}

/* color Variables */
:root {
    --white: #ffffff;
    --blue: #1a9ba6;
    --blueOcu: rgba(26, 155, 166, 0.5);
}

a {
    text-decoration: none;
    color: white;
}

#banner {
    position: relative;
    min-height: 660px;
    background-image: linear-gradient(rgba(2, 31, 51, 0.55), rgba(2, 31, 51, 0.85)),
        url(../images/tournaments_bg2.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 767px) {
    #banner {
        min-height: unset !important;
        padding-bottom: 30px;
    }
    .banner-content {
        position: relative !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100%;
        padding: 0 10px;
        margin-top: 15px;
    }
}

.bg-dark {
    background: transparent !important;
}

nav {
    border-top: 1px solid var(--blue);
    padding: 10px 0px !important;
    margin-top: 20px !important;
    border-bottom: 1px solid var(--blue);
    z-index: 99;
}

.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link {
    color: var(--white) !important;
    font-size: 17px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 8px;
}

.nav-link:hover {
	background: var(--blueOcu);
	
}

.login-btn {
    border: 2px solid var(--blue);
    background: transparent;
    color: var(--white);
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-family: 400;
}

.login-btn:hover {
    background: var(--blue);
    color: white;
    border: 2px solid transparent;
}

.banner-content {
    position: absolute;
    left: 50%;
    top: 56%;
    width: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

/* Hero-Zusätze im Home-Stil */
.t-hero-eyebrow {
    display: inline-block;
    color: #45f4f8;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    text-shadow: 0 0 12px rgba(69, 244, 248, 0.7);
}

.t-hero-text {
    max-width: 640px;
    font-size: 18px;
    line-height: 1.7;
    margin: 0 auto 1.8rem;
    color: #e6f7f8 !important;
}

.banner-content>img {
    width: 150px;
}

.banner-content h1 {
    color: var(--white);
    font-size: 70px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 0;
}

.banner-content h3 {
    color: #45f4f8;
    font-weight: 700;
    font-size: 35px;
    letter-spacing: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.banner-content p {
    color: var(--white);
}

.btn2 {
    background: #081f35;
    color: #45f4f8;
    padding: 16px 26px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 20px;
    width: fit-content;
    border: 2px solid #45f4f8;
}

.btn2 span {
    padding: 0px 30px;
}

.btn2:hover {
    background: var(--blue);
    color: #45f4f8;
    
}

/* Boxes: .glowing-table* + t-status/t-pool/t-meta liegen jetzt in
   style_tournament.css (geteilt mit allen Turnier- + Admin-Seiten) */

                .container-custom {
            display: flex;
            justify-content: center;
            align-items: stretch; /* Ensures both sections are the same height */
            flex-wrap: wrap;
            padding: 50px 20px;
            gap: 20px; /* Adds spacing between the sections */
        }

        .image-section,
        .text-section {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 15px;
        }

        .image-section {
            background-color: #111;
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.5), 0 0 15px rgba(255, 0, 255, 0.5);
        }

        .image-section img {
            max-width: 100%;
            max-height: 100%; /* Ensures the image fits within its container */
            border-radius: 15px;
        }

        .text-section {
            background-color: rgba(0, 0, 0, 0.8);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.5);
            flex-direction: column;
        }

        .text-section h2 {
            color: #ff6600;
            text-shadow: 0 0 10px rgba(255, 102, 0, 0.8), 0 0 10px rgba(255, 102, 0, 0.8);
            font-weight: bold;
            margin-bottom: 20px;
        }

        .text-section p {
            color: #fff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
            line-height: 1.6;
        }

        .text-section p strong {
            color: #00ffff;
            text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
        }

        @media (max-width: 768px) {
            .container-custom {
                flex-direction: column;
            }

            .image-section,
            .text-section {
                height: auto; /* Allow content to define height for small screens */
            }
        }

/* Turnier-Tabelle (Status-Badges, Pool & Meta): nach style_tournament.css
   verschoben – wird dort für alle Turnier- + Admin-Seiten geladen. */