@font-face {
    font-family: 'futura-medium-bt';
    src: url('../fonts/futura-medium-bt.woff') format('woff');
}

@font-face {
    font-family: 'UberMove-Regular';
    src: url('../fonts/UberMove-Regular.otf') format('opentype');
}


.ios-button, .android-button{
  display: none;
  background-color: rgba(255, 255, 255, 0.0); /* Transparent background */
  border: none;
  height: 30%;
  width: 60%;
}
.ios-system .ios-button, .android-system .android-button{
  display: block;
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none; 
}

/*To prevent highlight of the selection - Start */
* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important; 
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important; 
    outline: none !important;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
/* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'futura-medium-bt', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #f7e7d3;
            color: #333;
            padding: 0;
            min-height: 100vh;
        }

        /* Header section with background */
        .header {
            width: 100%;
            max-width: 400px;
            background: url('../images/bg.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px; /* Adjust padding to control height */
            box-sizing: border-box;
            min-height: 60vh; /* Ensures header takes up space till the start of .container */
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #b19777;
            margin-bottom: 20px;
        }

        /* Container for message, buttons, and privacy link */
        .container-message {
            width: 100%;
            background-color: white;
            /* border-radius: 10px 10px 0 0; */
            overflow: hidden;
            text-align: center;
            /* padding: 20px; */
			box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
        }
		.container-footer {
            width: 100%;
            background-color: #f7e7d3;
            /* border-radius: 10px 10px 0 0; */
            overflow: hidden;
            text-align: center;
            /* padding: 20px; */
            
            display: flex;
            flex-direction: column;
        }

        .message {
            font-size: 1rem;
            margin: 20px 0;
            color: #000000;
		    font-family: 'futura-medium-bt', sans-serif;
        }

        .locate-button{
            display: block;
            width: 100%;
            padding: 12px;
            font-size: 1rem;
            color: #fff;
            background-color: #333;
            border: none;
            font-family: 'futura-medium-bt', sans-serif; 
            text-decoration: none;
            text-align: center;
        }

		.wallet-buttons {
			display: flex;
			align-items: center;
            justify-content: center;
			font-family: 'futura-medium-bt', sans-serif;
			font-size: 1.4em;
			margin: 5px 0 10px 0;
			color:#1b5279;
			text-align: center;
			gap: 10px;
		}


        .wallet-buttons button img {
    width: 150px;
    height: auto;
    margin-top: 10px;
}

        .privacy-policy{
		font-family: 'UberMove-Regular', sans-serif;
		/*font-size: 0.8em;*/
		color: hsla(0,0%,13%,1);
		margin: 0.1% 0 0 0;
	}

        .privacy-link:hover {
            text-decoration: underline;
        }
		
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black with opacity */
    justify-content: center;
    align-items: center;
}

/* Set the image container as relative to position the close button */
.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

/* Close button positioned on the top-right corner of the image */
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 50%;
    padding: 5px 10px;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
}

        
        /* Responsive */
        @media (max-width: 480px) {
			.header {
				/*min-height: 55vh;*/
				max-width: 100%;
			}
            .container {
                max-width: 100%;
            }
            .logo {
                font-size: 2rem;
            }
            .message {
                font-size: 1.4rem;
                padding: 0 10px;
            }
        }