 /* Reset some default browser styles */
 body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    }

    /* Full-screen background image with opacity and luminosity blend */
    .background {
    position: fixed; /* Keep the background fixed */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/bg-ads.jpg') no-repeat center 5%; /* Move background 5% from the top */
    background-size: cover; /* Ensure the background covers the entire screen */
    z-index: -1; /* Make sure the background is behind all other content */


    }

    /* Overlay with color #F0BD61 and opacity */
    .background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 35, 13, 0.4); /* Apply #F0BD61 with opacity */
    z-index: 1; /* Place overlay above the background but behind the content */
    mix-blend-mode: luminosity; /* Apply luminosity blend mode */
    }
    .mobile{
    display:none!important;
    }


    /* Main container with fixed width */
    .container {
    width: 805px;  /* Fixed container width */
    margin: 0 auto; /* Center the container horizontally */
    text-align: center;
    padding-top: 50px;
    z-index: 2; /* Make sure content stays on top of the background */
    }

    /* Logo at the top */
    .logo {
    margin-bottom: 100px;
    }

    .logo img {
    max-width: 595px; /* You can adjust the logo size */
    height: auto;
    }

    /* Custom font for links */
    @font-face {
    font-family: 'Paperlogy';
    src: url('assets/fonts/Paperlogy-1.001/Paperlogy-4Regular.ttf') format('truetype'); /* Adjust with the correct font path */
    }

    /* Style for the links (used to look like buttons) */
    .buttons {
    display: flex;
    justify-content: space-between;  /* Distribute links evenly */
    gap: 23px;
    margin-bottom: 50px;
    }

    .buttons a {
    flex: 1; /* Each link takes up equal space within the flex container */
    padding: 19px;
    font-family: 'Paperlogy', sans-serif; /* Use custom Paperlogy font */
    font-size: 23px; /* Font size from your request */
    font-weight: 600;
    line-height: 27.09px;
    text-align: center;
    text-decoration: none; /* Remove underline */
    background: linear-gradient(175deg, #F0BD61, #BC9045); /* Updated gradient direction to 175deg */
    color: white;
    border: none;
    border-radius: 5px; /* Border radius of 5px */
    cursor: pointer;
    display: flex;
    align-items: center; /* Align SVG icon and text */
    justify-content: center; /* Align SVG icon and text */
    gap: 5px; /* Added space between text and icon */
    transition: background-color 0.3s, transform 0.2s;
    position:relative;
    }
    .notify{
    font-family: 'Paperlogy', sans-serif; /* Use custom Paperlogy font */
    font-size: 16px; /* Font size from your request */
    line-height: 27.09px;
    color:#fff;
    }
    .notify b{
        color:#ffe47f;
    }

    .buttons a:hover {
    background: linear-gradient(175deg, #BC9045, #F0BD61); /* Reverse the gradient on hover */
    transform: scale(1.05); /* Slightly enlarge the link on hover */
    }

    /* SVG style adjustments */
    .buttons a svg {
    width: 28px;
    height: 30px; /* Make the icon fit within the link */
    stroke: white;
    stroke-width: 4;
    stroke-miterlimit: 10;
    position: relative;
    left: 4%;
    }

    /* Ads section - vertically aligned ads, 100% width */
    .ads {
    display: flex;  /* Flex container for vertical layout */
    flex-direction: column; /* Stack the ads vertically */
    gap: 20px; /* Space between the ads */
    }

    .ad {
    width: 100%; /* Make each ad take up 100% of the container width (900px) */
    height: 250px; /* Fixed height for each ad */
    background-color: rgba(0, 0, 0, 0.5); /* Background color for visibility */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    margin-top: 21px;
    }

    .ad img {
    width: 100%; /* Make ad images stretch to fill the ad container width */
    height: auto;
    }

    /* Make layout responsive for screens less than 1000px */
    @media (max-width: 1000px) {
    /* Adjust container width for medium screens */
    .notify{
    margin:5%;
    font-size:11px;
    }
    .desktop{
    display:none
    }
    .mobile{
    display:block!important;
    margin-left:2%;
    margin-right:2%;
    }
    .container {
    width: 100%; /* Make container full-width on medium screens */
    }

    /* Links stack vertically on medium screens */
    .buttons {
    flex-direction: column; /* Stack the links vertically */
    gap: 15px; /* Reduced gap between links */
    }
    .buttons a {
    width: 250px;
    margin: 0 auto;
    }

    /* Ads section for medium screens (still vertically stacked but no extra gap) */
    .ads {
    gap: 15px; /* Reduced gap between ads */
    }

    .ad {
    width: 100%; /* Ensure each ad takes full width */
    height: auto; /* Make ad height responsive */
    }

    /* Logo */
    .logo img {
    max-width: 300px; /* Reduce logo size on medium screens */
    }
    }

    /* For extra small screens (phones in portrait mode) */
    @media (max-width: 480px) {
    .logo img {
    max-width: 120px; /* Even smaller logo for very small screens */
    }

    .buttons a {
    padding: 8px; /* Smaller link padding for smaller screens */
    font-size: 14px; /* Smaller font size */
    }
    }