/*-------------------------------------------------------+
| NextGen Theme für PHP-Fusion 9.10.10
| KrazzFM Design mit Limegreen
+--------------------------------------------------------*/

/* ===== Farbvariablen (Limegreen Theme) ===== */
:root {
    --primary-color: #32cd32;
    --primary-hover: #28a428;
    --primary-dark: #228b22;
    --primary-light: #7fff00;
}

/* ===== Reset & Basis ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
    background-color: #1a1a1a;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
}

a {
    color: #32cd32;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #7fff00;
    text-decoration: none;
}

.container {
    max-width: 1200px;
}

/* ===== Top Bar (Login/Register) ===== */
.top-bar {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-left {
    color: rgba(255, 255, 255, 0.6);
}

.top-bar a {
    color: #fff;
}

.top-bar .btn {
    padding: 4px 15px;
    font-size: 11px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar .btn-primary {
    background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(50, 205, 50, 0.3);
}

.top-bar .btn-primary:hover {
    background: linear-gradient(135deg, #28a428 0%, #7fff00 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.4);
}

.top-bar .btn-secondary {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.top-bar .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== Logo Area ===== */
.logo-area {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-area .row {
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 120px;
    height: auto;
    width: 300px;
    filter: drop-shadow(0 2px 8px rgba(50, 205, 50, 0.3));
}

.site-logo .site-title {
    margin: 0;
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 2px 10px rgba(50, 205, 50, 0.5);
}

.site-logo a {
    color: #fff;
}

.site-logo a:hover {
    color: #32cd32;
}

/* Radio Player Widget */
.header-player-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.header-radio-player {
    flex: 1;
    max-width: 450px;
}

.header-radio-player iframe {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Player Icons Box */
.header-player-icons {
    flex-shrink: 0;
    height: 150px;
}

.player-icons-box {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #444;
    border-radius: 5px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 170px;
    height: 125px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.player-icons-title {
    font-size: 10px;
    color: #05b61c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
    text-align: center;
    font-weight: bold;
    flex-shrink: 0;
}

.player-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    flex: 1;
    align-content: center;
}

.player-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5px 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
}

.player-icon-item:hover {
    background: rgba(5, 182, 28, 0.15);
    border-color: #05b61c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(5, 182, 28, 0.3);
}

.player-icon-item i {
    font-size: 18px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.player-icon-item:hover i {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.player-name {
    font-size: 7px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* ===== Navigation (Original Layout) ===== */
.main-navigation {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #32cd32;
}

.main-navigation .navbar {
    padding: 0;
}

.main-navigation .navbar-nav {
    width: 100%;
    justify-content: flex-end;
}

.main-navigation .nav-item {
    position: relative;
}

/* Zweizeiliges Layout wie im Original */
.main-navigation .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-navigation .nav-title {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    line-height: 1.2;
}

.main-navigation .nav-subtitle {
    font-size: 10px;
    font-weight: normal;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 2px;
    letter-spacing: 0.5px;
}

.main-navigation .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #32cd32;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-navigation .nav-link:hover::before,
.main-navigation .nav-item.active .nav-link::before {
    width: 80%;
}

.main-navigation .nav-link:hover,
.main-navigation .nav-item.active .nav-link {
    color: #32cd32 !important;
    background-color: rgba(50, 205, 50, 0.05);
}

.main-navigation .nav-link:hover .nav-subtitle {
    color: rgba(127, 255, 0, 0.8);
}

/* Dropdown Menü */
.main-navigation .dropdown-menu {
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-top: 2px solid #32cd32;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    padding: 10px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    min-width: 200px;
}

.main-navigation .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    font-size: 13px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.main-navigation .dropdown-item:hover {
    background: rgba(50, 205, 50, 0.1);
    color: #32cd32;
    border-left-color: #32cd32;
    padding-left: 25px;
}

.main-navigation .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: middle;
    border-top-color: #32cd32;
}

.main-navigation .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
}

.main-navigation .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(50, 205, 50, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== Slider (nur Startseite) ===== */
.slider-area {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.carousel-item {
    height: 550px;
    position: relative;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(50,205,50,0.3) 100%);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    padding: 0 20px;
    bottom: auto;
    right: auto;
    z-index: 2;
}

.slide-title {
    font-size: 56px;
    font-weight: bold;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    animation: fadeInDown 1s;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-subtitle {
    font-size: 24px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(50, 205, 50, 0.8);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #32cd32;
    transform: scale(1.1);
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #32cd32;
    border-color: #fff;
    transform: scale(1.2);
}

/* ===== Page Header (Unterseiten) ===== */
.page-header-area {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(50, 50, 50, 0.95) 100%);
    background-size: cover;
    background-position: center;
    padding: 30px 0;
    margin-bottom: 40px;
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #32cd32;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-header-area .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-nav {
    margin: 0;
    padding: 0;
}

.breadcrumb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0;
}

.breadcrumb-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.breadcrumb-list li a:hover {
    color: #32cd32;
    background-color: rgba(50, 205, 50, 0.1);
}

.breadcrumb-list li.separator {
    color: #32cd32;
    padding: 0 8px;
    font-size: 18px;
}

.breadcrumb-list li.active {
    color: #32cd32;
    font-weight: bold;
    padding: 5px 10px;
}

/* ===== Main Content ===== */
.main-wrapper {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

/* ===== Panels & Boxes (Transparenz!) ===== */
.panel {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.panel:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    border-color: rgba(50, 205, 50, 0.3);
}

.panel-heading {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.2) 0%, rgba(40, 164, 40, 0.2) 100%);
    color: #fff;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #32cd32;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.panel-body {
    padding: 20px;
    color: #ddd;
}

.side-panel {
    background: rgba(25, 25, 25, 0.8);
}

.side-panel .panel-heading {
    font-size: 14px;
    padding: 12px 15px;
}

.side-panel .panel-body {
    padding: 15px;
}

/* ===== News & Articles ===== */
.news-item {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(50, 205, 50, 0.2);
    border-color: rgba(50, 205, 50, 0.3);
}

.news-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.news-item:hover img {
    transform: scale(1.05);
}

.news-item-content {
    padding: 20px;
}

.news-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.news-item h3 a {
    color: #fff;
}

.news-item h3 a:hover {
    color: #32cd32;
}

.news-item-meta {
    color: #999;
    font-size: 12px;
    margin-bottom: 15px;
}

.news-item p {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 15px;
}

.btn-read-more {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.btn-read-more:hover {
    background: linear-gradient(135deg, #28a428 0%, #7fff00 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* ===== Buttons ===== */
.btn {
    border-radius: 4px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
    border: none;
    color: #fff;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #28a428 0%, #7fff00 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
}

/* ===== Forms ===== */
.form-control {
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #32cd32;
    box-shadow: 0 0 0 0.2rem rgba(50, 205, 50, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ===== Tables ===== */
.table {
    background: rgba(30, 30, 30, 0.7);
    color: #ddd;
}

.table thead th {
    background: rgba(50, 205, 50, 0.2);
    border-bottom: 2px solid #32cd32;
    color: #fff;
}

.table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.table tbody tr:hover {
    background: rgba(50, 205, 50, 0.05);
}

/* ===== Footer (4 Spalten Layout) ===== */
.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ddd;
    margin-top: 60px;
    border-top: 2px solid #32cd32;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.footer-widgets {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-col {
    margin-bottom: 30px;
}

.footer-widget {
    padding-right: 20px;
}

.footer-widget-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #32cd32;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #fff;
}

.footer-widget-content {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-widget-content p {
    margin-bottom: 20px;
    font-size: 14px;
}

/* Social Media Icons */
.footer-social {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(50, 205, 50, 0.1);
    color: #32cd32;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
    border: 1px solid rgba(50, 205, 50, 0.3);
}

.social-icon:hover {
    background: #32cd32;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.4);
}

/* Footer Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.footer-links-list li a i {
    font-size: 10px;
    margin-right: 8px;
    color: #32cd32;
}

.footer-links-list li a:hover {
    color: #32cd32;
    padding-left: 5px;
}

/* Footer News Liste */
.footer-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-news-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-news-list li:last-child {
    border-bottom: none;
}

.footer-news-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-news-list li a:hover {
    color: #32cd32;
}

.footer-news-list li a i {
    margin-right: 8px;
    color: #32cd32;
}

.footer-news-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    display: block;
}

/* Footer Kontakt */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.footer-contact-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list li i {
    color: #32cd32;
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #32cd32;
}

/* Newsletter */
.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter p {
    font-size: 14px;
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    outline: none;
    border-color: #32cd32;
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    padding: 10px 20px;
    background: linear-gradient(135deg, #32cd32 0%, #28a428 100%);
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #28a428 0%, #7fff00 100%);
    transform: scale(1.05);
}

/* Footer Copyright */
.footer-copyright {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-copyright p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-copyright strong {
    color: #32cd32;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links li {
    display: inline-block;
    margin: 0 15px;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: #32cd32;
}

/* ===== Animations ===== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .main-navigation .navbar-collapse {
        background: rgba(30, 30, 30, 0.98);
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px 0;
    }
    
    .main-navigation .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        align-items: flex-start;
        padding: 12px 20px;
    }
    
    .main-navigation .nav-item:last-child .nav-link {
        border-bottom: none;
    }
    
    .main-navigation .dropdown-menu {
        background: rgba(15, 15, 15, 0.95);
        margin-left: 20px;
        border-radius: 4px;
    }
    
    .header-player-area {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-radio-player {
        max-width: 100%;
    }
    
    .player-icons-box {
        width: 100%;
        max-width: 400px;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .footer-widgets {
        padding: 40px 0 20px;
    }
    
    .footer-col {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 13px;
    }
    
    .top-bar .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
    
    .logo-area {
        text-align: center;
        padding: 20px 0;
    }
    
    .site-logo {
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .site-logo img {
        max-height: 50px;
    }
    
    .header-player-area {
        justify-content: center;
        margin-top: 15px;
    }
    
    .header-radio-player iframe {
        max-width: 100%;
    }
    
    .player-icons-box {
        max-width: 300px;
    }
    
    .player-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .carousel-item {
        height: 400px;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .main-wrapper {
        padding: 20px 0;
    }
    
    .footer-copyright .col-md-6 {
        text-align: center !important;
        margin-bottom: 15px;
    }
    
    .footer-bottom-links li {
        display: block;
        margin: 10px 0;
    }
    
    .social-icon {
        margin: 5px;
    }
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #32cd32;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7fff00;
}

/* ===== Selection ===== */
::selection {
    background: #32cd32;
    color: #fff;
}

::-moz-selection {
    background: #32cd32;
    color: #fff;
}
/* Buzz */
@-webkit-keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

@keyframes buzz {
  50% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  100% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }
}

.buzz {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz:hover, .buzz:focus, .buzz:active {
  -webkit-animation-name: buzz;
  animation-name: buzz;
  -webkit-animation-duration: 0.15s;
  animation-duration: 0.15s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Buzz Out */
@-webkit-keyframes buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.buzz-out {
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.buzz-out:hover, .buzz-out:focus, .buzz-out:active {
  -webkit-animation-name: buzz-out;
  animation-name: buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}