        @font-face {
            font-family: ge;
            font-weight: 100;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/ge-light.woff) format("woff")
        }
        
        @font-face {
            font-family: ge;
            font-weight: 300;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/ge-medium.woff) format("woff")
        }
        
        @font-face {
            font-family: ge;
            font-weight: 400;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/ge-medium.woff) format("woff")
        }
        
        @font-face {
            font-family: proxima-nova;
            font-weight: 100;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/proxima-nova-light.woff) format("woff")
        }
        
        @font-face {
            font-family: proxima-nova;
            font-weight: lighter;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/proxima-nova-light.woff) format("woff")
        }
        
        @font-face {
            font-family: proxima-nova;
            font-weight: 400;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/proxima-nova-regular.woff) format("woff")
        }
        
        @font-face {
            font-family: proxima-nova;
            font-weight: 300;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/proxima-nova-regular.woff) format("woff")
        }
        
        @font-face {
            font-family: proxima-nova;
            font-weight: 400;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/proxima-nova-semibold.woff) format("woff")
        }
        
        @font-face {
            font-family: proxima-nova;
            font-weight: 600;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/proxima-nova-bold.woff) format("woff")
        }
        
        @font-face {
            font-family: proxima-nova;
            font-weight: 700;
            font-style: normal;
            font-variant: normal;
            src: url(../fonts/proxima-nova-bold.woff) format("woff")
        }
        body {
            font-family: proxima-nova,ge,helvetica,arial,sans-serif;
            margin: 0;
            padding: 0;
            background-image: url('../images/cover.webp');
            background-size: cover;
            background-position: center;
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }

        #popup-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #popup {
            background: #fff;
            border-radius: 5px;
            padding: 30px;
            text-align: center;
            width: calc(100% - 100px);
            max-width: 350px;
            box-shadow: 0 0px 10px 10px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        #popup h2 {
            margin-bottom: 20px;
            font-size: 1.15rem;
            color: #333;
            margin-top: 0;
        }

        select {
        width: 100%;
        height: 45px;
        padding: 12px;
        margin-bottom: 20px;
        font-size: 16px;
        border-radius: 5px;
        border: 1px solid #f3f6f9;
        background-color: #ffffff;
        transition: border-color 0.3s ease;
        font-family: proxima-nova, ge, helvetica, arial, sans-serif;
        box-shadow: -3px 4px 6px 0px #e4e4e45c;
        }

        select:focus {
            border-color: #6c2d88;
            outline: none;
        }

        button {
            width: 100%;
            background-color: #6c2d88;
            color: #fff;
            padding: 12px;
            font-size: 16px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-family: proxima-nova, ge, helvetica, arial, sans-serif;
        }

        button:disabled {
            background-color: #f3f6f9;
            color: #c1c1c1;
            cursor: not-allowed;
        }

        button:hover {
            background-color: #0056b3;
        }

        .hidden {
            display: none;
        }