html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #0d0d0d; /* dunkelgrau/schwarz */
    font-family: 'Courier New', monospace;
    color: #00FF00;
    overflow-x: hidden;
}

/*** Matrix Canvas ***/
#matrixCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/*** Wetter Card ***/
.weather-card {
    background-color: rgba(0,0,0,0.7);
    border: 1px solid #00FF00;
    color: #00FF00;
    font-family: 'Courier New', monospace;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px #00FF00;
}

/*** Wetter Info ***/
.weather-info span,
.weather-info small {
    display: block;
    margin: 5px 0;
}

/*** Input & Button ***/
#cityInput {
    background-color: #111;
    color: #00FF00;
    border: 1px solid #00FF00;
}

#cityInput::placeholder {
    color: #00FF00;
}

#searchBtn {
    background-color: #00FF00;
    border: none;
    color: #0d0d0d;
}

#searchBtn:hover {
    background-color: #00cc00;
}

/*** Topbar ***/
.topbar {
    background-color: #0d0d0d;
    color: #00FF00;
}

.topbar a {
    color: #00FF00;
    text-decoration: none;
}

.topbar a:hover {
    color: #0cc000;
}

/*** Navbar ***/
.navbar {
    background-color: #0d0d0d !important;
}

.navbar .nav-link {
    color: #00FF00 !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #0cc000 !important;
}

/*** Footer ***/
footer {
    background-color: #0d0d0d;
    color: #00FF00;
    font-family: 'Courier New', monospace;
    text-align: center;
    padding: 20px 0;
}

/*** Latest News Carousel ***/
.latest-news-carousel .item {
    background-color: #111;
    color: #00FF00;
    border: 1px solid #00FF00;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-family: 'Courier New', monospace;
}

.latest-news-carousel .owl-nav .owl-prev,
.latest-news-carousel .owl-nav .owl-next {
    color: #00FF00;
    background-color: #111;
    border: 1px solid #00FF00;
    border-radius: 10px;
}

.latest-news-carousel .owl-nav .owl-prev:hover,
.latest-news-carousel .owl-nav .owl-next:hover {
    background-color: #00cc00;
    color: #0d0d0d;
}

/*** Buttons allgemein ***/
.btn {
    font-family: 'Courier New', monospace;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background-color: #00cc00;
    color: #0d0d0d;
}

/*** Back to Top ***/
.back-to-top {
    background-color: #00FF00;
    color: #0d0d0d;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.back-to-top:hover {
    background-color: #0cc000;
    color: #0d0d0d;
}
