        /* Modal/Popup Styles */
        .smodal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            animation: fadeIn 0.3s ease;
        }

        .smodal.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .smodal-content {
            position: relative;
            background: #fff;
            border-radius: 12px;
            padding: 40px 30px 30px;
            max-width: 500px;
            width: 90%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            animation: slideIn 0.3s ease;
        }

        .sclose-btn {
            position: absolute;
            top: 10px;
            right: 15px;
            color: #333;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.2s;
        }

        .sclose-btn:hover {
            transform: scale(1.1);
            color: #000;
        }

        .smodal-title {
            margin: 0 0 20px 0;
            font-size: 24px;
            color: #333;
            text-align: center;
        }

        .slinks-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .slink-item {
            display: block;
            padding: 15px 20px;
            background: linear-gradient(135deg, #51ADE6 0%, #51ADE6 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 8px;
            text-align: center;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
        }

        .slink-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideIn {
            from {
                transform: scale(0.8);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }
        