        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f5f7fa;
        }

        /* =====================================================
           ICON MENU
        ===================================================== */
        .icon-menu {
            width: 100%;
            max-width: 1200px;
            margin: 30px auto;
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 16px;
        }

        .icon-menu > a {
            display: block;
            height: 130px;
            text-decoration: none;
        }

        .menu-item {
            height: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background-color: var(--nv-icon-menu-item-bg);
            border: 1px solid var(--nv-icon-menu-item-border);
            border-radius: 4px;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        }

        .menu-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
            background: var(--nv-icon-menu-item-hover);
        }

        .menu-item svg {
            width: 32px;
            height: 32px;
            margin-bottom: 12px;
            color: var(--nv-icon-menu-icon);
            stroke-width: 1;
        }

        .menu-item span {
            font-size: 14px;
            font-weight: 500;
            color: var(--nv-icon-menu-item-text);
            text-align: center;
        }

        /* Smaller screens */
        @media (max-width: 600px) {
            .icon-menu {
                padding: 12px;
                gap: 10px;
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }

            .icon-menu > a {
                height: 110px;
            }

            .menu-item {
                height: 100%;
                min-height: 0;
                border-radius: 4px;
            }

            .menu-item i {
                width: 30px;
                height: 30px;
                margin-bottom: 8px;
            }

            .menu-item span {
                font-size: 13px;
                line-height: 1.2;
            }
        }

        /* =====================================================
           VERSE OF THE DAY
        ===================================================== */
        .verse-today {
            background: var(--nv-top-verse-today-bg);
            padding: 40px;
        }

        .verse-today h4 {
            margin-top: 0;
            margin-bottom: 40px;
        }

        /* =====================================================
           IMAGE LINK / OVERLAY
        ===================================================== */
        .image-link {
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .image-container {
            position: relative;
            width: 100%;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .image-overlay-text {
            position: absolute;
            bottom: 40px;
            left: 20px;
            color: white;
            font-size: 28px;
        }

        .image-credit {
            font-size: 11px;
            color: #777;
            margin-top: -20px;
            margin-bottom: 20px;
        }

        /* =====================================================
           ADMIN SECTION
        ===================================================== */
        .for-admin {
            margin-bottom: 40px;
        }

        .for-admin p {
            margin: 4px 0;
        }

        /* =====================================================
           TOP SONGS LIST
        ===================================================== */
        .top-songs {
            list-style: none;
            padding: 0;
            margin-top: 0px;
            margin-bottom: 30px;
        }

        .top-songs li {
            font-weight: bold;
            line-height: 22px;
            padding: 12px 0;
            border-bottom: 1px solid var(--nv-border);
        }

        .top-songs li:last-child {
            border-bottom: none;
        }

        .hits {
            color: #a0a0a0;
        }

        .song-meta-row {
            font-size: 14px;
            font-weight: normal;
            color: #a0a0a0;
        }

        .smaller {
            color: #a0a0a0;
            margin-left: 5px;
            font-size: 14px;
        }

        /* =====================================================
           RECENT SONGS GRID
        ===================================================== */
        .recent-songs-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            width: 100%;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .song-item {
            flex: 1 1 calc(33.333% - 20px);
            display: flex;
            flex-direction: column;
            text-align: left;
            margin: 0;
            box-sizing: border-box;
        }

        .song-thumb img {
            width: 100%;
            height: auto;
            border-radius: 4px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            transition: transform 0.2s ease;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .song-thumb img:hover {
            transform: scale(1.05);
        }

        .song-information {
            margin-top: 12px;
        }

        .song-title {
            font-size: 18px;
            font-weight: 800;
            text-decoration: none;
            color: inherit;
            margin-top: 12px;
        }

        .song-title:hover {
            text-decoration: none;
        }

        .song-credits {
            color: #666;
            font-size: 0.85em;
        }

        .bottomline {
            text-align: left !important;
            color: #a0a0a0;
            font-size: 14px;
            margin-top: 20px;
        }

        @media (min-width: 768px) {
            .song-item {
                flex: 1 1 calc(33.3% - 15px);
            }
        }

        @media (max-width: 768px) {
            .recent-songs-grid {
                gap: 0px;
            }

            .song-item {
                flex: 1 1 100%;
                border-bottom: 1px solid var(--nv-border);
                padding-top: 10px !important;
                padding-bottom: 10px !important;
                margin-top: 0 !important;
                margin-bottom: 0 !important;
            }

            .song-thumb img {
                display: none;
            }

            .bottomline {
                display: none;
            }

            .song-title {
                font-size: 18px;
                font-weight: 800;
                text-decoration: none;
                color: inherit;
            }
        }

        @media (max-width: 480px) {
            .song-item {
                flex: 1 1 100%;
            }
        }

        /* =====================================================
           RECENT BLOGS
        ===================================================== */
        .recent-blogs ul {
            list-style: none;
            margin: 0;
            padding: 0;
            margin-bottom: 10px;
        }

        .recent-blogs li {
            margin: 0;
            padding: 0;
            margin-bottom: 30px;
        }

        /* =====================================================
           HOME COMMENTS
        ===================================================== */
        .home-comments-box {
            margin-top: 0;
        }

        .home-comment {
            padding: 10px 0;
            border-bottom: 1px solid #e0e0e0;
        }

        .home-comment p {
            margin: 6px 0;
            font-size: 14px;
            color: var(--nv-text);
        }

        .home-comment small {
            color: #777;
            font-size: 12px;
        }

        .admin-reply {
            margin-top: 8px;
            margin-left: 15px;
            padding-left: 10px;
            border-left: 3px solid #1e88e5;
            font-size: 14px;
            color: #333;
        }

        .admin-reply strong {
            color: #1e88e5;
        }

        /* =====================================================
           TOP 50 ALL TIME
        ===================================================== */
        #top50alltime {
            padding: 40px;
            background: var(--nv-background-light1);
        }

        @media (max-width: 768px) {
            #top50alltime {
                padding: 0;
                background: transparent;
            }
        }

        /* =====================================================
           PLAYLIST MESSAGE TOAST
        ===================================================== */
        .playlist-msg {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: #1c3470;
            color: #fff;
            padding: 10px 16px;
            border-radius: 6px;
            font-size: 14px;
            z-index: 9999;
            opacity: 0;
            transition: 0.3s;
        }

        .playlist-msg.show {
            opacity: 1;
        }

        .playlist-msg.error {
            background: #c0392b;
        }

        .hidden {
            display: none;
        }

        /* =====================================================
           DROP CAP
        ===================================================== */
        span.firstcharacter {
            color: #e64946;
            float: left;
            font-family: Georgia;
            font-size: 75px;
            line-height: 60px;
            padding-top: 4px;
            padding-right: 8px;
            padding-left: 3px;
        }
