* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a2e;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

#game-container {
    position: relative;
    width: 100%;
    height: 100%;
    /* Let media queries handle min-width for better responsiveness */
    /* min-width: 800px; */
    /* min-height: 600px; */
}

.screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    flex-direction: column;
}

.screen.active {
    display: flex;
}

.night-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0a0a2e 0%, #16213e 50%, #1a1a3a 100%);
    z-index: 1;
}

.night-bg canvas {
    width: 100%;
    height: 100%;
}

/* Main Menu */
.menu-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 40px;
}

.title-section {
    text-align: center;
}

.game-logo {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(138, 167, 255, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.subtitle {
    color: #8aa7ff;
    font-size: 24px;
    font-weight: 300;
    margin-top: 20px;
    text-shadow: 0 0 10px rgba(138, 167, 255, 0.5);
}

.menu-buttons {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.menu-btn {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(138, 167, 255, 0.3);
}

.menu-btn.primary {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, #4a5fff, #3a4fef);
}

.menu-btn img {
    width: 40px;
    height: 40px;
    filter: brightness(1.2);
    display: block; /* Ensure image is displayed block */
    z-index: 2; /* Ensure it's above the background */
    position: relative; /* Needs position for z-index */
}
/* Make SVG icons fill their container */
.menu-btn svg {
    width: 60%;
    height: 60%;
}
.menu-btn.primary svg {
    width: 80%;
    height: 80%;
}

/* Add specific size for the primary button icon */
.menu-btn.primary img {
    width: 50px;
    height: 50px;
}

.currency-display {
    display: flex;
    gap: 30px;
    align-items: center;
    z-index: 2; /* Ensure currency display is above background */
}

.currency-display.mini {
    gap: 15px;
}

.coin-count, .hearts-count {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(42, 42, 90, 0.8);
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid rgba(138, 167, 255, 0.3);
    min-height: 48px; /* Ensure consistent height */
}

.coin-count img, .hearts-count img {
    width: 24px;
    height: 24px;
}

.coin-count span, .hearts-count span {
    color: #fff;
    font-weight: bold;
    font-size: 18px;
}

.hearts-count {
    gap: 4px; /* Tighter gap for heart icons */
    padding: 10px;
}

.hearts-count .timer {
    font-size: 14px;
    color: #ccc;
    min-width: 50px; /* Give it some minimum width */
    text-align: right;
}

/* Level Select */
.level-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(26, 26, 58, 0.9);
    border-bottom: 2px solid rgba(138, 167, 255, 0.3);
}

.back-btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    transform: scale(1.1);
}

.back-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
}

.level-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(138, 167, 255, 0.5);
}

.level-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); /* Adjusted min width */
    gap: 15px;
    padding: 30px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    justify-items: center; /* Center items within their grid cell */
}

.level-item {
    aspect-ratio: 1;
    border: 3px solid rgba(138, 167, 255, 0.3);
    border-radius: 15px;
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensure item takes full width of its grid cell */
    max-width: 120px; /* Optional: Set a max width to prevent items from becoming too large */
}

.level-item:hover {
    transform: scale(1.05);
    border-color: #8aa7ff;
    box-shadow: 0 0 20px rgba(138, 167, 255, 0.4);
}

.level-item.completed {
    background: linear-gradient(145deg, #4a5fff, #3a4fef);
    border-color: #8aa7ff;
}

.level-item.locked {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(145deg, #1a1a2a, #0a0a1a);
}

.level-number {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.level-stars {
    display: flex;
    gap: 2px;
    margin-top: 5px;
}

.star {
    width: 12px;
    height: 12px;
    background-image: url('star-filled.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.star.empty {
    background-image: url('star-empty.png');
}

/* Game Screen */
.game-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    background: rgba(26, 26, 58, 0.9);
    border-bottom: 2px solid rgba(138, 167, 255, 0.3);
}

.game-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-btn:hover {
    transform: scale(1.1);
}

.game-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(1.2);
}

.level-info {
    text-align: center;
    color: #fff;
    display: flex; /* Allow inline-block elements like streak display */
    flex-direction: column;
    align-items: center;
}

.level-info span {
    display: block;
    font-weight: bold;
}

#current-level {
    font-size: 18px;
    color: #8aa7ff;
}

#target-shape {
    font-size: 24px;
    text-shadow: 0 0 10px rgba(138, 167, 255, 0.5);
    margin-top: 5px; /* Add space below level */
}

.level-info-header {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between level number and streak */
}

#win-streak-display {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(42, 42, 90, 0.8);
    padding: 5px 10px;
    border-radius: 15px;
    border: 2px solid #ff8a8a; /* Streak color */
    min-width: 80px; /* Ensure it has some width */
    justify-content: center;
}

/* Add specific style for the streak icon inside the header */
#win-streak-display img {
    width: 20px; /* Set a fixed size */
    height: 20px;
    filter: brightness(1.2);
    margin-right: 2px; /* Small space between icon and number */
}

#win-streak-display span {
    color: #ff8a8a; /* Streak color for text */
    font-weight: bold;
    font-size: 16px;
    display: inline-block; /* Allow it to be inline */
}

.streak-bar-container {
    flex-grow: 1; /* Allow bar to take available space */
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    overflow: hidden;
    min-width: 30px; /* Minimum width for the bar itself */
}

.streak-bar {
    height: 100%;
    width: 0%; /* Controlled by JS */
    background: #ff8a8a;
    transition: width 0.3s ease-out;
    border-radius: 4px;
}

.game-currency {
    display: flex;
    align-items: center;
}

.hearts-display {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(42, 42, 90, 0.8);
    padding: 8px;
    border-radius: 20px;
    border: 2px solid rgba(138, 167, 255, 0.3);
    min-height: 40px; /* Consistent height */
}

.hearts-display img {
    width: 20px;
    height: 20px;
}

.hearts-display span {
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

#game-canvas {
    position: relative;
    z-index: 2;
    flex: 1;
    background: transparent;
    cursor: crosshair;
}

.game-ui {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 26, 58, 0.9);
    border-top: 2px solid rgba(138, 167, 255, 0.3);
}

.power-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 15px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(138, 167, 255, 0.3);
    min-width: 80px;
}

.power-btn:hover {
    transform: translateY(-2px);
    border-color: #8aa7ff;
    box-shadow: 0 5px 15px rgba(138, 167, 255, 0.3);
}

.power-btn img {
    width: 30px;
    height: 30px;
    filter: brightness(1.2);
}

.power-btn span {
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
    padding: 1px 5px;
    border-radius: 5px;
    min-width: 20px;
    text-align: center;
}

/* Shop Screen */
.shop-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(26, 26, 58, 0.9);
    border-bottom: 2px solid rgba(138, 167, 255, 0.3);
}

.shop-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(138, 167, 255, 0.5);
}

.shop-content {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    overflow-y: auto;
}

.shop-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(145deg, #4a5fff, #3a4fef);
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(138, 167, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 95, 255, 0.4);
}

.shop-btn img {
    width: 24px;
    height: 24px;
}

.shop-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.shop-item {
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    border: 2px solid rgba(138, 167, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex; /* Use flexbox for layout within item */
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Distribute space */
    min-height: 220px; /* Increased height to accommodate description */
}

.shop-item:hover {
    border-color: #8aa7ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(138, 167, 255, 0.2);
}

.shop-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px; /* Reduced margin */
    filter: drop_shadow(0 0 10px rgba(138, 167, 255, 0.3));
}

.shop-item .item-label { /* Added style for the label */
    color: #fff;
    font-size: 18px; /* Increased font size */
    font-weight: bold;
    margin-bottom: 5px; /* Reduced margin */
}

.shop-item .item-description { /* New style for description */
    color: #ccc;
    font-size: 14px;
    margin-bottom: 10px; /* Added margin */
    flex-grow: 1; /* Allow description to take available space */
}

.item-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffd700;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.item-price img {
    width: 20px;
    height: 20px;
    margin: 0;
    filter: none;
}

.item-price::before {
    content: none;
}

.buy-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(145deg, #4a5fff, #3a4fef);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex; /* Added flex for potential icon inside */
    align-items: center; /* Center items if flex */
    justify-content: center; /* Center content if flex */
    gap: 8px; /* Space between text and icon */
}

.buy-btn img { /* Style for icon potentially inside buy-btn */
    width: 20px;
    height: 20px;
    margin: 0; /* Override default shop-item img margin */
    filter: brightness(1.2);
}

.buy-btn:hover {
    background: linear-gradient(145deg, #5a6fff, #4a5fff);
    transform: scale(1.05);
}

/* Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    border: 3px solid rgba(138, 167, 255, 0.5);
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

#popup-text {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
}

#popup-text .star-display {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

#popup-text .star-display img {
    width: 40px;
    height: 40px;
}

#popup-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

#popup-buttons button {
    padding: 12px 25px;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
}

#popup-buttons .primary {
    background: linear-gradient(145deg, #4a5fff, #3a4fef);
    color: #fff;
}

#popup-buttons .secondary {
    background: linear-gradient(145deg, #5a5a7a, #4a4a6a);
    color: #fff;
}

#popup-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(145deg, #4a5fff, #3a4fef);
    color: #fff;
    padding: 15px 25px;
    border-radius: 25px;
    display: none;
    align-items: center;
    gap: 10px;
    z-index: 999;
    border: 2px solid rgba(138, 167, 255, 0.5);
    box-shadow: 0 10px 25px rgba(74, 95, 255, 0.3);
    animation: slideIn 0.5s ease;
}

.notification.active {
    display: flex;
}

.notification img {
    width: 24px;
    height: 24px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Galactic Ladder Screen */
#ladder-screen {
    flex-direction: column;
}

.ladder-header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: rgba(26, 26, 58, 0.9);
    border-bottom: 2px solid rgba(138, 167, 255, 0.3);
}

.ladder-title {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(138, 167, 255, 0.5);
}

.ladder-progress-display { /* Styling for the ladder score display in header */
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(42, 42, 90, 0.8);
    padding: 5px 10px;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.5); /* Gold color for stars */
    min-width: 80px; /* Ensure it has some width */
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.ladder-progress-display img {
    width: 20px; /* Set a fixed size */
    height: 20px;
    filter: brightness(1.2);
}

.ladder-rewards-container {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 20px 30px; /* Adjusted padding */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between milestones */
    overflow-y: auto;
}

.ladder-milestone {
    background: linear-gradient(145deg, #2a2a5a, #1a1a3a);
    border: 2px solid rgba(138, 167, 255, 0.3);
    border-radius: 20px;
    padding: 15px 20px; /* Adjusted padding */
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.ladder-milestone:hover {
    border-color: #8aa7ff;
    box-shadow: 0 5px 15px rgba(138, 167, 255, 0.2);
}

.milestone-level {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #ffd700; /* Gold color */
}

.milestone-level img {
    width: 25px;
    height: 25px;
}

.milestone-rewards {
    display: flex;
    gap: 15px; /* Space between free and premium tracks */
    align-items: center;
}

.reward-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; /* Space between info and button */
}

.reward-info {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.reward-info img {
    width: 20px;
    height: 20px;
}

.claim-btn {
    padding: 8px 15px; /* Adjusted padding */
    border: none;
    border-radius: 10px; /* Slightly smaller radius */
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.claim-btn.free {
    background: linear-gradient(145deg, #4a5fff, #3a4fef);
    color: #fff;
}

.claim-btn.premium {
    background: linear-gradient(145deg, #ff8a8a, #ff6a6a); /* Streak color theme for premium/ads */
    color: #fff;
}

.claim-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.claim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.claim-btn img { /* Style for ad icon inside premium claim button */
    width: 18px;
    height: 18px;
    filter: brightness(1.2);
}

@media (max-width: 900px) {
    .menu-buttons {
        gap: 20px;
    }
    
    .menu-btn {
        width: 70px;
        height: 70px;
    }
    
    .menu-btn.primary {
        width: 85px;
        height: 85px;
    }
    
    .level-grid {
        grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)); /* Adjusted min width */
        gap: 10px;
        padding: 20px;
    }
     .level-item {
         max-width: 100px; /* Adjust max width for smaller screens */
     }

    .shop-items {
        grid-template-columns: 1fr;
    }

    .hearts-count .timer {
        min-width: unset; /* Allow smaller width on smaller screens */
        font-size: 12px;
    }
}

@media (max-width: 800px) {
    #game-container {
        min-width: unset;
        min-height: unset;
        /* Allow scaling/responsiveness below 800x600 */
        /* Comment out or remove the fixed scale */
        /* transform: scale(0.8); */
        /* transform-origin: top left; */
        overflow-y: auto; /* Allow scrolling if content overflows */
    }

    body {
        overflow-y: auto;
    }

    .screen {
        /* Adjust padding/margins for smaller screens */
        padding: 10px;
    }

    .level-header, .shop-header, .game-header {
        padding: 15px;
    }

    .back-btn, .game-btn {
        width: 40px;
        height: 40px;
    }

    .back-btn img, .game-btn img {
        width: 18px;
        height: 18px;
    }

    .level-title, .shop-title {
        font-size: 20px;
    }

    .currency-display {
        gap: 15px;
        padding: 8px 12px;
    }
    .currency-display img {
        width: 20px;
        height: 20px;
    }
    .currency-display span {
        font-size: 16px;
    }

    .level-grid {
        padding: 15px;
         grid-template-columns: repeat(auto-fit, minmax(50px, 1fr)); /* Adjusted min width */
    }
     .level-item {
         max-width: 90px; /* Adjust max width for smaller screens */
     }

    .game-ui {
        padding: 15px;
        gap: 10px;
    }

    .power-btn {
        min-width: 60px;
        padding: 10px;
    }

    .power-btn img {
        width: 25px;
        height: 25px;
    }

    .power-btn span {
        font-size: 12px;
    }

    .shop-content {
        padding: 20px;
        gap: 30px;
    }

    /* Removed: Wheel image size adjustment */
    /* .wheel-image {
        width: 150px;
        height: 150px;
    } */

    .shop-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .shop-item {
        padding: 15px;
        min-height: 200px; /* Adjusted for smaller screens */
    }
    .shop-item img {
        width: 60px;
        height: 60px;
    }
    .shop-item .item-label {
        font-size: 16px;
    }
    .shop-item .item-description {
        font-size: 12px;
    }
    .item-price {
        font-size: 16px;
    }
    .item-price img {
        width: 16px;
        height: 16px;
    }
    .buy-btn {
        padding: 10px;
    }

    .popup-content {
        padding: 30px;
    }
    #popup-text {
        font-size: 16px;
    }
    #popup-buttons button {
        padding: 10px 20px;
        min-width: 80px;
    }

    .notification {
        top: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 14px;
        gap: 5px;
    }
    .notification img {
        width: 20px;
        height: 20px;
    }

    .ladder-milestone {
        flex-direction: column; /* Stack elements vertically */
        gap: 15px; /* Space between milestone level and rewards */
        text-align: center;
    }

    .milestone-rewards {
        flex-direction: column; /* Stack free and premium tracks */
        gap: 10px;
    }

    .milestone-level {
        font-size: 18px;
    }
    .milestone-level img {
        width: 20px;
        height: 20px;
    }

    .reward-info {
        font-size: 14px;
    }
    .reward-info img {
        width: 16px;
        height: 16px;
    }

    .claim-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    .claim-btn img {
        width: 16px;
        height: 16px;
    }

    .ladder-rewards-container {
        padding: 15px;
        gap: 15px;
    }
}