:root {
    --primary-color: #005082; /* Mavi */
    --primary-color-low: rgba(0, 80, 130, 0.5);
    --primary-color-dark: #003c66;

    --secondary-color: #adb5bd; /* Açık Gri */
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef; /* Beyazımsı Gri */
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #f8f9fa; /* Beyaz */
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e9ecef;

    --text-dark: #343a40; /* Koyu Gri */
    --text-dark-low: #495057;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa; /* Beyaz */
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #005082; /* Daha koyu ve soft mavi */
    --button-color-low: rgba(0, 80, 130, 0.5);
    --button-color-dark: #003c66;
}

/* Mobile Bottom Bar Styles */
.mobileBottomBar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--card-bg);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 0 10px;
    justify-content: space-around;
    align-items: center;
}

.mobileBottomBar .bottomBarItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 20%;
    color: var(--text-dark-low);
    font-size: 0.7rem;
    font-weight: 500;
    padding: 5px 0;
    transition: all 0.2s ease;
    position: relative;
}

.mobileBottomBar .bottomBarItem i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: var(--text-dark-low);
    transition: all 0.2s ease;
}

.mobileBottomBar .bottomBarItem span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    text-align: center;
}

.mobileBottomBar .bottomBarItem:hover {
    color: var(--primary-color);
}

.mobileBottomBar .bottomBarItem:hover i {
    color: var(--primary-color);
}

.mobileBottomBar .bottomBarItem.featured {
    position: relative;
    margin-top: -20px;
}

.mobileBottomBar .bottomBarItem.featured .featuredIcon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--card-bg);
}

.mobileBottomBar .bottomBarItem.featured .featuredIcon i {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1.2rem;
}

.mobileBottomBar .bottomBarItem.featured span {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Responsive styles for mobile bottom bar */
@media screen and (max-width: 768px) {
    .mobileBottomBar {
        display: flex;
    }
    
    body {
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 480px) {
    .mobileBottomBar {
        height: 55px;
    }
    
    .mobileBottomBar .bottomBarItem {
        font-size: 0.5rem;
    }
    
    .mobileBottomBar .bottomBarItem i {
        font-size: 1rem;
    }
    
    .mobileBottomBar .bottomBarItem.featured .featuredIcon {
        width: 35px;
        height: 35px;
    }
    
    .mobileBottomBar .bottomBarItem.featured .featuredIcon i {
        font-size: 1.1rem;
    }
    
    .mobileBottomBar .bottomBarItem.featured span {
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 350px) {
    .mobileBottomBar {
        height: 50px;
        padding: 0 5px;
    }
    
    .mobileBottomBar .bottomBarItem {
        font-size: 0.48rem;
    }
    
    .mobileBottomBar .bottomBarItem i {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .mobileBottomBar .bottomBarItem.featured .featuredIcon {
        width: 32px;
        height: 32px;
    }
    
    .mobileBottomBar .bottomBarItem.featured .featuredIcon i {
        font-size: 1rem;
    }
    
    .mobileBottomBar .bottomBarItem.featured span {
        font-size: 0.50rem;
    }
}
