* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

header {
    background-color: #0f0e14;
    padding: 15px 30px;
    border-bottom: 2px solid #ff9800;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 60px;
    right: 30px;
    background-color: #0f0f0f;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #ff9800;
    min-width: 200px;
    z-index: 100;
}

nav.active {
    display: flex;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    padding: 8px 0;
}

nav a:hover {
    color: #ff9800;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #ff9800;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.search-bar {
    background-color: #2a2a2a;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    color: #e0e0e0;
    width: 200px;
}

.container {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
    position: relative;
    box-shadow: 0 15px 15px rgba(255,255,255,0.1);
}

.container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(52, 46, 46, 0.9);
    z-index: -1;
}

.sidebar {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 4px;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-title {
    font-size: 14px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3a3a3a;
    text-transform: uppercase;
}

.left-sidebar-title {
    font-size: 14px;
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 15px;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3a3a3a;
    text-transform: uppercase;
}

.sidebar-item {
    padding: 8px 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-radius: 3px;
}

.sidebar-item:hover {
    background-color: #2a2a2a;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.featured {
    background: linear-gradient(135deg, #ff9800 0%, #e67e22 100%);
    padding: 30px;
    border-radius: 4px;
    color: white;
}

.featured h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.featured p {
    font-size: 14px;
    opacity: 0.9;
}

.matches-section {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 8px;
}

.section-title {
    position: relative;
    margin-left: 10px;
    padding-bottom: 12px;
    font-weight: bold;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 5px;
    width: 50%;
    height: 2px;
    background: #ff9800;
}

.match-card {
    background-color: #0f0f0f;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    border-left: 3px solid #ff9800;
}

.match-card:hover {
    background-color: #252525;
}

.match-teams {
    flex: 1;
}

.team {
    font-size: 14px;
    margin-bottom: 5px;
}

.team-name {
    font-weight: bold;
    color: #e0e0e0;
}

.match-time {
    color: #999;
    font-size: 12px;
    text-align: right;
}

.news-item {
    background-color: #0f0f0f;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.news-item:hover {
    background-color: #252525;
    border-left: 3px solid #ff9800;
}

.news-title {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 14px;
}

.news-meta {
    font-size: 12px;
    color: #999;
}

.right-sidebar {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 4px;
}

.stats-item {
    padding: 12px;
    background-color: #0f0f0f;
    margin-bottom: 10px;
    border-radius: 3px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s;
}

.stats-item:hover {
    background-color: #252525;
    color: #ff9800;
}

.stat-label {
    flex: 1;
}

.stat-value {
    color: #ff9800;
    font-weight: bold;
}

.minigame-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.minigame {
    background-color: #3a3a3a;
    aspect-ratio: 2/1.2;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s;
    font-weight: bold;
    border: none;
    overflow: hidden;
}

.minigame-image {
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
    object-fit: cover;
}

.minigame-title {
    width: 100%;
    height: 30%;
    background-color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
}

.minigame:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.rank-list {
    font-size: 13px;
}

.rank-item {
    padding: 8px;
    background-color: #0f0f0f;
    margin-bottom: 8px;
    border-radius: 3px;
    display: flex;
    justify-content: space-between;
}

.rank-number {
    color: #ff9800;
    font-weight: bold;
    margin-right: 10px;
}

footer {
    background-color: #000;
    border-top: 2px solid #ff9800;
    padding: 40px 30px;
    margin-top: 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-title {
    color: #ff9800;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ff9800;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer-copyright {
    flex: 1;
}

.footer-spotify {
    background-color: #1db954;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.footer-spotify:hover {
    background-color: #1ed760;
}

.logo img {
    height: 48px;
}

.pickem-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 13;
    overflow: hidden;
    border-radius: 8px;
    background-color: #2a2a2a;
    padding: 0;
    margin: 0;
    line-height: 0;
    margin-top: 10px;
}

.pickem-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    object-position: center;
    justify-content: center;
    margin: auto;
}

.pickem-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pickem {
    aspect-ratio: 2/1;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s;
    font-weight: bold;
    border: none;
    overflow: hidden;
}

.pickem-title {
    width: 100%;
    height: 30%;
    background-color: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
}

.points-section {
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 4px;
}

.standings-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2a2a2a;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -20px;
}

.standings-table thead {
    background-color: #1a1a1a;
    border-bottom: 2px solid #ff9500;
}

.standings-table th {
    padding: 16px;
    text-align: left;
    color: #ff9500;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.standings-table th:first-child {
    width: 10%;
    text-align: left;
}

.standings-table th:nth-child(2) {
    width: 70%;
    text-align: left;
}

.standings-table th:last-child {
    width: 20%;
    text-align: right;
}

.standings-table tbody tr {
    border-bottom: 1px solid #333;
    transition: background-color 0.3s ease;
}

.standings-table tbody tr:hover {
    background-color: rgba(255, 149, 0, 0.1);
}

.standings-table tbody tr:last-child {
    border-bottom: none;
}

.standings-table td {
    padding: 16px;
    font-size: 15px;
}

.rank-cell {
    color: #ff9500;
    font-weight: bold;
    min-width: 60px;
    width: 10%;
    text-align: left;
}

.team-cell {
    font-weight: 500;
    min-width: 200px;
    width: 70%;
    text-align: left;
}

.points-cell {
    font-weight: bold;
    text-align: right;
    min-width: 80px;
    width: 20%;
}

.loading {
    text-align: center;
    padding: 60px 20px;
    color: #888;
    font-size: 16px;
}

.error {
    background-color: #2a1a1a;
    border-left: 4px solid #ff6b6b;
    padding: 20px;
    margin-bottom: 20px;
    color: #ff6b6b;
    border-radius: 4px;
}

.update-info {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #888;
}

.zekakupu {
    aspect-ratio: 5 / 5;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s;
    font-weight: bold;
    border: none;
    overflow: hidden;
}

.zekakupu-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 5;
    overflow: hidden;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.zekakupu-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    object-position: center;
    justify-content: center;
    margin: auto;
}

.haberler-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 13;
    overflow: hidden;
    border-radius: 8px;
    background-color: #2a2a2a;
    padding: 0;
    margin: 0;
    line-height: 0;
    margin-top: 10px;
}

.haberler-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    object-position: center;
    justify-content: center;
    margin: auto;
}

.haberler-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.haberler {
    aspect-ratio: 2/1;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s;
    font-weight: bold;
    border: none;
    overflow: hidden;
}

/* ===================== */
/*   RESPONSIVE / MEDIA  */
/* ===================== */

/* Orta boy ekranlar: 3 kolon → 2 kolon (sol sidebar gizle) */
@media (max-width: 1100px) {
    .container {
        grid-template-columns: 200px 1fr 250px;
        padding: 20px;
        gap: 15px;
    }

    .points-section {
        padding: 15px;
    }
}

/* Tablet: yan sidebarları alta al */
@media (max-width: 900px) {
    .container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 15px;
    }

    .sidebar,
    .right-sidebar {
        width: 100%;
    }

    /* Sol ve sağ sidebar yan yana */
    .sidebar {
        order: 2;
    }

    .main-content {
        order: 1;
    }

    .right-sidebar {
        order: 3;
    }

    .points-section {
        width: 100%;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Küçük tablet / büyük telefon */
@media (max-width: 700px) {
    header {
        padding: 12px 15px;
    }

    .container {
        padding: 10px;
        gap: 10px;
    }

    .featured h2 {
        font-size: 22px;
    }

    .standings-table th,
    .standings-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

    .team-cell {
        min-width: 120px;
    }
}

/* Telefon */
@media (max-width: 480px) {
    header {
        padding: 10px 12px;
    }

    .logo img {
        height: 36px;
    }

    .container {
        padding: 8px;
        gap: 8px;
    }

    .sidebar,
    .right-sidebar,
    .matches-section,
    .main-content {
        padding: 12px;
    }

    .featured {
        padding: 18px;
    }

    .featured h2 {
        font-size: 18px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .standings-table th,
    .standings-table td {
        padding: 8px 6px;
        font-size: 12px;
    }

    .rank-cell,
    .team-cell,
    .points-cell {
        min-width: unset;
    }
}

.points-section {
margin: 0 auto;
width: 1100px;
background-color: #1a1a1a;
padding: 20px;
border-radius: 4px;
}

.standings-table {
width: 100%;
border-collapse: collapse;
background-color: #2a2a2a;
border-radius: 8px;
overflow: hidden;
margin-top: -20px;
}

.standings-table thead {
background-color: #1a1a1a;
border-bottom: 2px solid #ff9500;
}

.standings-table th {
padding: 16px;
text-align: left;
color: #ff9500;
font-weight: bold;
font-size: 14px;
text-transform: uppercase;
}

.standings-table th:first-child {
width: 10%;
text-align: left;
}

.standings-table th:nth-child(2) {
width: 70%;
text-align: left;
}

.standings-table th:last-child {
width: 20%;
text-align: right;
}

.standings-table tbody tr {
border-bottom: 1px solid #333;
transition: background-color 0.3s ease;
}

.standings-table tbody tr:hover {
background-color: rgba(255, 149, 0, 0.1);
}

.standings-table tbody tr:last-child {
border-bottom: none;
}

.standings-table td {
padding: 16px;
font-size: 15px;
}

.rank-cell {
color: #ff9500;
font-weight: bold;
min-width: 60px;
width: 10%;
text-align: left;
}

.team-cell {
font-weight: 500;
min-width: 200px;
width: 70%;
text-align: left;
}

.points-cell {
font-weight: bold;
text-align: right;
min-width: 80px;
width: 20%;
}

.loading {
text-align: center;
padding: 60px 20px;
color: #888;
font-size: 16px;
}

.error {
background-color: #2a1a1a;
border-left: 4px solid #ff6b6b;
padding: 20px;
margin-bottom: 20px;
color: #ff6b6b;
border-radius: 4px;
}

.update-info {
text-align: center;
margin-top: 20px;
font-size: 12px;
color: #888;
}

.main-content {
width: 100%;
max-width: 10000px;
margin: 0 auto;
}

.zekakupu {
    aspect-ratio: 5 / 5;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s;
    font-weight: bold;
    border: none;
    overflow: hidden;
}

.zekakupu-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 5;
    overflow: hidden;
    border-radius: 8px;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.zekakupu-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    object-position: center;
    justify-content: center;
    margin: auto;
}

.haberler-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 13;
    overflow: hidden;
    border-radius: 8px;
    background-color: #2a2a2a;
    padding: 0;
    margin: 0;
    line-height: 0;
    margin-top: 10px;
}

.haberler-image img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    display: block;
    object-position: center;
    justify-content: center;
    margin: auto;
}


.haberler-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.haberler {
    aspect-ratio: 2/1;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    transition: all 0.3s;
    font-weight: bold;
    border: none;
    overflow: hidden;
}

