    footer {
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 0 5px #ff000070, 0 0 10px #ff000070, 0 0 20px #ff000070;
        transition: background-color 0.3s ease-in, box-shadow 0.5s ease;
        padding: 40px 20px;
        display: flex;
        font-family: system-ui, -apple-system, BlinkMacGeeSystemFont, "Segoe UI", Roboto, sans-serif;
        flex-wrap: wrap;
        justify-content: space-around;
        margin: 0;
        padding: 2px 0;
        padding-bottom: 30px;
        width: 100%;
        position: relative;
        overflow-x: hidden;
        overflow-y: auto;
    }
        footer:hover{
            box-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 60px #ff0000;
            background-color: rgba(0, 0, 0, 1);
        }
        .footer-section {
            flex: 1 1 300px;
            margin: 10px;
            text-align: center;
        }

        .footer-section h3 {
            color: #f97e7e;
            text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 60px #ff0000;
            border-top: 1px solid #333;
            margin-top: 10px;
            padding-top: 20px;
            font-size: 28px;
        }

        /* Quick Links */

        .footer-quicklinks {
            display: flex;
            gap: 22px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-link {
            width: 48px;
            height: 48px;
            border: 2px solid rgba(255,255,255,0.35);
            border-radius: 50%;
            color: #fff;
            font-size: 23px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .footer-link:hover {
            background: #ffffff;
            color: #000;
            transform: translateY(-10px);
            border-color: #fff;
            box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        }

        /* Optional tooltip label on hover */
        .footer-link span {
            position: absolute;
            bottom: -34px;
            font-size: 0.85rem;
            color: #ff0000;
            text-shadow: 0 0 15px #ff0000, 0 0 30px #ff0000, 0 0 60px #ff0000;
            opacity: 0;
            white-space: nowrap;
            transition: opacity 0.3s;
        }

        .footer-link:hover span {
            opacity: 0.7;
        }

        /* Social Media Buttons */

        .white-round-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            padding: 40px 0;
        }

        .btn-round {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.15);   /* very subtle glass look */
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            color: #ffffff;
            font-size: 18px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .btn-round:hover {
            background: #ffffff;
            color: #000000;
            transform: translateY(-6px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        /* Remove underline & default link style */
        .btn-round {
            text-decoration: none;
        }

            a.icon{
                float: right;
            }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }

    .copyright {
        text-align: center;
        padding: 20px 10;
        color: #888;
        border-top: 1px solid #333;
        margin-top: 20px;
        font-size: 14px;
        position: relative;
        overflow-x: hidden;
    }
        .copyright p{
            padding: 10px;
            padding-bottom: 50px;
        }
            @media (max-width: 800px) {
                .copyright{
                    text-align: center;
                }
                    .copyright p{
                        font-size: 16px;
                        padding-bottom: 0px;
                    }

            }
    