body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    background-color: black;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

.top-header {
    width: 100%;
    height: 50px;
    background-color: #000000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

a {
    text-decoration: none;
}

.header {
    position: relative;
    width: 100%;
    background-color: #000000;
    margin: 0;
    padding: 0;
}

.kapak {
    width: 100%;
    height: 35vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -20px;
}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
    box-sizing: border-box;
    height: 100%;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropbtn {
    background-color: rgba(17, 17, 17, 0.774);
    color: white;
    padding: 1px 14px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    border-radius: 7px;
    height: 32px;
    transition: all 0.3s ease;
}

.dropbtn:hover {
    background-color: rgba(219, 10, 139, 0.658);
    transform: scale(1.05);
}

.current-lang {
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 3px;
}

.arrow-down {
    border: solid rgb(255, 255, 255);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.3s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: rgba(17, 17, 17, 0.774);
    width: 100%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 7px;
    margin-top: 5px;
    overflow: hidden;
}

.dropdown-content a {
    color: white;
    padding: 8px 14px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    text-align: center;
    transition: all 0.2s ease;
    opacity: 0.8;
}

.dropdown-content a:hover {
    background-color: rgba(219, 10, 138, 0.5);
    opacity: 1;
}

.kapak-resmi {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 15px 0 15px;
    margin-top: 5px;
}

.sosyal-medya, .review-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 1rem;
    padding: 0;
    width: 100%;
}

.sosyal-medya-item, .review-button, .menu-container {
    width: calc(50% - 5px);
    height: 80px;
    padding: 10px;
    margin: 0;
    box-sizing: border-box;
    background-color: #333;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sosyal-medya-item:hover, .review-button:hover, .menu-container:hover {
    background-color: #141414;
}

.sosyal-medya-item img, .review-button img, .menu-container img {
    width: 35px;
    height: 35px;
    margin-bottom: 8px;
}

.sosyal-medya-item p, .review-button p, .menu-container p {
    margin: 0;
    font-size: 12px;
    color: #fff;
    line-height: 1.2;
    text-align: center;
    width: 100%;
}

.sosyal-slider-item {
    cursor: pointer;
    text-align: center;
    background-color: #333;
    color: white;
    padding: 1px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
}

.social-slider {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    margin-bottom: 10px;
}

.social-slider img {
    width: 32px;
    margin: 0 5px;
}

.sosyal-slider-item:hover {
    background-color: #141414;
}

.logo {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000;
    border: 2px solid #000;
    border-radius: 50%;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 30;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.logo img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.navbar {
    width: 100%;
    padding: 5px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 20;
    background-color: transparent;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.navbar li {
    margin: 0;
    padding: 0;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.navbar a:hover {
    color: #fff;
    opacity: 1;
    transform: scale(1.05);
}

.content h3 {
    color: white;
    font-size: 12px;
    margin-top: -10px;
}

.content h1 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 26px;
    margin-top: 55px;
    margin-bottom: 10px;
    font-weight: 700;
    font-style: normal;
    color: #fff;
    text-align: center;
    width: 100%;
}

.language-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
    text-align: center;
}

.language-buttons img {
    width: 32px;
    height: 20px;
    margin: auto;
    align-items: center;
}

.language-buttons button h1 {
    font-size: 10px;
}

.language-buttons button {
    margin: 10px;
    padding: 5px;
    border: 1px solid #fff;
    border-radius: 5px;
    background-color: #333;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 50px;
    height: 60px;
}

.language-buttons button:hover {
    background-color: #141414;
    transform: scale(1.0);
}

footer {
    text-align: center;
    background-color: #000;
    padding: 8px 0;
    position: relative;
    margin-top: auto;
    margin-bottom: 20px;
    width: 100%;
}

.webniva {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #000;
    z-index: 100;
}

.webniva a {
    font-size: 12px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

.webniva a .powered-by {
    color: rgba(255, 255, 255, 0.74); /* Daha silik/yarı saydam beyaz */
    font-weight: normal;
}

.webniva a .webniva-text {
    color: #ffffff; /* Tam beyaz */
    font-weight: bold;
}

.webniva a:hover .powered-by {
    color: rgba(255, 255, 255, 0.767); /* Hover durumunda biraz daha belirgin */
}

.webniva a:hover .webniva-text {
    color: #ffffff; /* Hover durumunda da tam beyaz kalır */
}

.degerlendir {
    background-color: #282828;
    padding:5px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 12px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 150px;
    height: auto;
    margin-top: 3.75rem;
    cursor: pointer;
}

.degerlendir a {
    color: white;
}

.degerlendir2 {
    background-color: #fff;
    padding:5px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 12px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 150px;
    height: auto;
    margin-top: 3.75rem;
    cursor: pointer;
}

.degerlendir2 a {
    color: #282828;
}

.degerlendir a:hover {
    color: #fff;
}

.degerlendir2 a:hover {
    color: #fff;
}

.degerlendir2:hover {
    background-color: #141414;
}

/* Mobil için özel düzenlemeler */
@media (max-width: 768px) {
    .wrapper {
        padding: 0;
    }

    .content {
        padding: 10px 10px 0 10px;
    }

    .social-slider {
        margin-bottom: 5px;
    }

    .webniva {
        padding: 5px 0;
        margin-bottom: 5px;
    }

    .navbar {
        padding: 10px 15px;
    }

    .navbar ul {
        gap: 20px;
    }

    .navbar a {
        font-size: 13px;
    }

    .logo {
        bottom: -55px;
    }

    .logo img {
        width: 140px;
        height: 140px;
    }

    .kapak {
        height: 30vh;
    }

    .content h1 {
        margin-top: 50px;
        margin-bottom: 8px;
        font-size: 24px;
    }

    .nav-container {
        padding: 0 10px;
        gap: 8px;
    }
    
   
 

    .live-music-button .sosyal-medya-item,
    .sosyal-medya-item {
        padding: 8px;
    }

    .sosyal-medya-item img, .review-button img, .menu-container img {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }

    .sosyal-medya-item p, .review-button p, .menu-container p {
        font-size: 11px;
    }
}

/* Küçük ekranlar için */
@media (max-width: 360px) {
    .kapak {
        height: 25vh;
    }

    .navbar ul {
        gap: 15px;
    }

    .navbar a {
        font-size: 12px;
    }

    .logo {
        bottom: -50px;
    }

    .logo img {
        width: 70px;
        height: 70px;
    }

    .content h1 {
        margin-top: 45px;
        margin-bottom: 6px;
        font-size: 22px;
    }

    .navbar {
        padding: 8px 8px;
    }

    .nav-container {
        padding: 0 8px;
        gap: 5px;
    }

 

  
    .live-music-button .sosyal-medya-item,
    .sosyal-medya-item {
        padding: 6px;
    }

    .sosyal-medya-item img, .review-button img, .menu-container img {
        width: 25px;
        height: 25px;
        margin-bottom: 4px;
    }

    .sosyal-medya-item p, .review-button p, .menu-container p {
        font-size: 10px;
    }
}

/* Menü butonu için özel stil */
.menü-buton {
    width: 100% !important;
    height: auto !important;
    padding: 10px !important;
    margin: 0 !important;
    box-sizing: border-box;
    background-color: #333;
    border-radius: 5px;
}

.menü-buton img {
    width: 30px;
    height: 30px;
}

.menü-buton p {
    font-size: 14px !important;
    margin-top: 5px !important;
}

.menu-container {
    background-color: #333;
    margin: 0;
    padding: 10px;
}

.menu-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-link {
    width: calc(50% - 5px);
    height: 80px;
    text-decoration: none;
}

.review-buttons {
    margin: 10px 0;
}

.review-button {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: #333;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 320px;
    border-radius: 15px;
    padding: 25px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

.modal-header h2 {
    color: #fff;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
}

.wifi-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.wifi-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wifi-item:last-child {
    margin-bottom: 0;
}

.wifi-label {
    color: #888;
    font-size: 14px;
}

.wifi-value {
    color: #fff;
    font-size: 14px;
    font-family: monospace;
    padding: 5px 10px;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
    background: transparent;
}

.section {
    display: none;
}

.section.active {
    display: block;
}

.close {
    position: fixed;
    right: 15px;
    top: 15px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1001;
}

.close:hover {
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

@media (max-width: 500px) {
    .language-buttons {
        display: flex;
        justify-content: center;
    }
}

/* Canlı Müzik Modal Stilleri */
.live-music-content {
    max-width: 100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
}

.live-music-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.95);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
}

.live-music-header .close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 1001;
}

.live-music-header .close:hover {
    background: transparent;
    transform: translateY(-50%) rotate(90deg);
}

.live-music-header img {
    display: none;
}

.live-music-header h2 {
    color: white;
    font-size: 20px;
    margin: 0;
    font-weight: 500;
    text-align: center;
    flex-grow: 1;
}

.live-music-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    align-items: center;
    padding: 0 20px 30px 20px;
    box-sizing: border-box;
}

.live-music-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.live-music-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.live-music-item h3 {
    display: none;
}

.day-badge {
    background: #e91e63;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    padding: 6px 18px;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    text-align: center;
}

.live-music-item .artist-name {
    color: #fff;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .live-music-item {
        max-width: 355px;
    }

    .live-music-item h3 {
    }

    .day-badge {
        font-size: 14px;
        padding: 5px 15px;
        margin-top: 10px;
        margin-bottom: 8px;
    }

    .live-music-item .artist-name {
        font-size: 12px;
        margin-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .live-music-item {
    }

    .live-music-item h3 {
    }

    .day-badge {
        font-size: 12px;
        padding: 4px 12px;
        margin-top: 8px;
        margin-bottom: 6px;
    }

    .live-music-item .artist-name {
        font-size: 10px;
        margin-bottom: 8px;
    }
}

.live-music-button {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.live-music-button .sosyal-medya-item img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    margin-bottom: 5px;
}

.live-music-header img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .live-music-button .sosyal-medya-item img {
        width: 30px;
        height: 30px;
    }

    .live-music-header img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 360px) {
    .live-music-button .sosyal-medya-item img {
        width: 25px;
        height: 25px;
    }

    .live-music-header img {
        width: 25px;
        height: 25px;
    }
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 32px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        right: -11px;
    }
    
 

 
}

@media (max-width: 360px) {
    .language-selector {
        top: 10px;
        right: -11px;
    }
}

.review-button.google-review img {
    width: 26px;
    height: 26px;
}

.review-button.google-review {
    display: none;
}

@media (max-width: 768px) {
    .review-button.google-review {
        display: block;
    }
}

@media (max-width: 360px) {
    .review-button.google-review {
        display: block;
    }
}