* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            font-family: 'League Spartan', sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;            
            flex-direction: column;            
            max-width: 1200px;        
            color: white;
            margin: 0 auto;
            background-color: black;
            z-index: -1;
        }

        body {
            padding-top: 60px;        
        }

        a {
            margin: 0 auto;
            color: #fff;
            
            text-decoration: underline;
        }
        a:hover {            
            text-shadow: 0 0 5px #d4a14d, 
                        0 0 10px #d4a14d, 
                        0 0 20px #d4a14d;  
        }

        .goldBadge {
            font-size: 18px;
            color: black;
            background: linear-gradient(135deg, #f7d488, #d4a14d);
            border: 2px solid #d4a14d;  
            border-radius: 6px;  
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 223, 125, 0.5);  
        }

        .goldLargeButton {	
            color: black;
             background: linear-gradient(135deg, #f7d488, #d4a14d);
             border: 2px solid #d4a14d; /* Add a clear, solid border */
             border-radius: 1rem;
             cursor: pointer;                                  
             text-align: center;    
             box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), /* subtle inset shadow */
                         0 0 10px rgba(255, 223, 125, 0.5); /* subtle outer shadow for definition */
                font-size: 21px;
               font-weight:bold;        
             margin-top: 13px;    
             padding: 1rem 2rem;
             margin-bottom: 20px;    
             width: 80%;
             outline: none;   
         }

         .gold {
                background-image: linear-gradient(135deg, #f7d488, #d4a14d);
                background-clip: text;
                color: transparent;
                -webkit-background-clip: text; /* for webkit-based browsers */
            }
        
          
        .main-container {
            margin-top: 1rem;
            position: relative;
            width: 920px;
            height: 526px;
            overflow: hidden;
            border-radius: 1rem;
            z-index: 1;
            box-shadow: 0 0 15px rgba(112, 75, 2, 0.8);
                        
                        
        }

        .main-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(1);           
            z-index: 1;
        }

        /* When an image is shown */
        .main-container img.revealed {
            opacity: 1;
            z-index: 1;
            transform: scale(1.2);
        }

        /* When an image fades out */
        .main-container img.fade-out {
            opacity: 0;
            z-index: 2;
        }




        .main-container button {
            position: absolute; 
            z-index: 10;
        }        

        .subheading {
            font-size: 3rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 4rem auto 3rem;
            text-shadow: 0 0 5px #d4a14d;
            
        }

        .content {
            margin-bottom: 4rem;
            display: flex;
            flex-direction: row;            
        }

        /* Equal width columns for specific sections */
        section.content[aria-label="Scope of Services"],
        section.content[aria-label="Activities"] {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: start;
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            section.content[aria-label="Scope of Services"],
            section.content[aria-label="Activities"] {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
        }

        .content img {
            border-radius: 0.5rem;
            max-width: 360px;
            height: auto;
            flex-shrink: 0; /* Prevents the image from shrinking */
            box-shadow: 0 0 9px rgba(112, 75, 2, 0.8);
        }

        .content p {
            flex-grow: 1; /* Allows the text to take up the remaining space */
            font-size: 1.5rem;
        }

        .content div {
            position: relative;
            flex-grow: 1; /* Allows the text to take up the remaining space */
            font-size: 1.5rem;
        }
        .content .details {            
            width: 75%;
            margin: 0.5rem auto;
            font-size: 1.2rem;
            text-align: left;
            color: #eab766;
            text-shadow: none;
        }

        .content .details br {            
            margin-bottom: 3px;
        }

        .button-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            padding: 1rem 0;
        }

        .button-container > * {
            display: flex;
            flex-direction: column;
        }



        .btn {
            font-family: 'League Spartan', sans-serif;
            background: linear-gradient(135deg, #f7d488, #d4a14d); /* Gradient gold/bronze */
            color: black;
            padding: 10px 20px 8px;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            
        }

        .btn:hover {
            color:  #f7d488; /* Gradient gold/bronze */;
            background: black;
            box-shadow: 0 0 10px rgba(255, 223, 125, 0.7); /* Soft glow effect on hover */
        }

        .smlBtn {
            font-family: 'League Spartan', sans-serif;
            background: linear-gradient(135deg, #f7d488, #d4a14d); /* Gradient gold/bronze */
            color: black;
            padding: 6px 12px 5px;
            border: none;
            border-radius: 5px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }

        .smlBtn:hover {
            color:  #f7d488; /* Gradient gold/bronze */;
            background: black;
            box-shadow: 0 0 10px rgba(255, 223, 125, 0.7); /* Soft glow effect on hover */
        }


        .btn-login, .btn-signup {
            color: #f7d488;            
            background: black;
            border-radius: 5px;
            top: 2%;
            right: 2%;
            padding: 6px 1.2rem 3px;
            font-size: 1rem;
            cursor: pointer;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);            
            transition: background-color 0.3s ease;
            z-index: 5;
        }

        .btn-login:hover, .btn-signup:hover { 
            background: linear-gradient(135deg, #f7d488, #d4a14d); /* Gradient gold/bronze */
            color: black; /* Keep text black for contrast */
        }


        .btn-login {
            right: 19%; /* Separate login button from the signup button */
        }

        /* 1) register --angle as an animatable <angle> */
        @property --angle {
        syntax: "<angle>";
        initial-value: 0deg;
        inherits: false;
        }


        .btn-watch-video {
  position: relative;
  bottom: 3%;
  right: 3%;
  min-width: 200px;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  padding: 10px 20px;
  color: #f7d488;
  background: black;

  /* ⬇️ make room for the rotating glow ⬇️ */
  border: 2px solid transparent;
  border-radius: 5px;

  cursor: pointer;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  box-shadow:
    inset 0 0 5px rgba(0,0,0,0.3),
    0 0 10px rgba(255,223,125,0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  /* ⬇️ rotating glow border ⬇️ */
  --angle: 0deg;
  border-image: 
    conic-gradient(
      from var(--angle),
      transparent 0deg 330deg,
      #d4a14d   330deg 360deg
    ) 1;
  animation: spinBorderVideo 3s linear infinite;
}

/* spin the --angle through 360deg */
@keyframes spinBorderVideo {
  to { --angle: 360deg; }
}

/* keep your icon-color animation */
.btn-watch-video i {
  font-size: 1.5rem;
  animation: colorChange 3s infinite alternate;
}
/* …and the rest of your existing rules */



        .btn-watch-video:hover {
            background: linear-gradient(135deg, #f7d488, #d4a14d);
            color: black;
        }
        
        .btn-watch-video .left-icon {
            margin-right: 8px; /* Adjust margin for spacing */
        }

        .btn-watch-video .right-icon {
            margin-left: 8px; /* Adjust margin for spacing */
        }

        @keyframes colorChange {
            0% { color: #000000; }
            33% { color: #d4a14d; }
            66% { color: #f7d488; }
            100% { color: #dc9b33; }
        }



        .btn-watch-video span {
            display: inline-block;           
        }        

        .banner .priceContainer, .banner .averagesContainer {          
            color: black;
            background: linear-gradient(135deg, #f7d488, #d4a14d);
            border: 2px solid #d4a14d; /* Add a clear, solid border */
            border-radius: 5px;
                                           
            text-align: center;
            border-radius: 6px;
            position: absolute;
            bottom: 1%;            
            padding: 3px 9px 0;
            font-size: 18px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), /* subtle inset shadow */
                        0 0 10px rgba(255, 223, 125, 0.5); /* subtle outer shadow for definition */
        }
        .banner .averagesContainer {
            color: black;
            left: 50%;        
            transform: translateX(-50%);    
            font-weight: bold;            
            cursor: pointer;   
        }
        .banner .leftPrice {
            color: black;
            left: 6%;            
            font-weight: bold;
        }
        .banner .rightPrice {            
            right: 6%;                                    
            font-weight: bold;
        }
        .fa-bitcoin {
            color: rgb(226, 154, 20);
            background-color: #000000;
            border-radius: 50%;
        }
        .fa-ethereum {
            color: rgb(66, 66, 171);
        }


        @keyframes glowing {
            0% {
                box-shadow: 0 0 5px #d4a14d, 0 0 10px #d4a14d, 0 0 20px #d4a14d, 0 0 40px #f7d488, 0 0 80px #f7d488, 0 0 90px #f7d488, 0 0 100px #f7d488;
            }
            50% {
                box-shadow: 0 0 10px #f7d488, 0 0 20px #f7d488, 0 0 40px #f7d488, 0 0 80px #d4a14d, 0 0 160px #d4a14d, 0 0 180px #d4a14d, 0 0 200px #d4a14d;
            }
            100% {
                box-shadow: 0 0 5px #d4a14d, 0 0 10px #d4a14d, 0 0 20px #d4a14d, 0 0 40px #f7d488, 0 0 80px #f7d488, 0 0 90px #f7d488, 0 0 100px #f7d488;
            }
        }


        .page-content {
            max-width: 920px;
            text-align: center;
            margin: 0 auto;
            padding: 0;
            background-color: rgba(0, 0, 0, 0.1);
            border-radius: 10px;
           
        }

        .page-content .heading {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 3rem;
            color: #f7d488;
            text-transform: uppercase;
            letter-spacing: 2px;            
            margin-bottom: 20px;
            
            box-shadow: 0 0 5px #d4a14d, 0 0 10px #d4a14d, 0 0 20px #d4a14d, 0 0 40px #f7d488, 0 0 80px #f7d488, 0 0 90px #f7d488, 0 0 100px #f7d488;
            border-radius: 5px;            
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);            
        }




        .image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .image-container img {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 1;
        }

        .image-container img.bottom-image {
            z-index: 0; /* Bottom image */
        }

        .image-container img.top-image {
            z-index: 1; /* Top image */
            opacity: 1; /* Start fully visible */
        }

        .image-text {
            position: absolute;
            bottom: 3%;
            left: 3%;
            text-transform: uppercase;
            font-size: 3.3rem;
            color: #070707;
            text-shadow: 0px 0px 10px rgba(255, 223, 125, 0.9), 
                        0px 0px 20px rgba(255, 223, 125, 0.7), 
                        0px 0px 30px rgba(255, 223, 125, 0.5), 
                        0px 0px 40px rgba(255, 223, 125, 0.3), 
                        -1px -1px 0px #000, /* Fallback outline for non-WebKit browsers */
                        1px 1px 0px #000,
                        -1px 1px 0px #000,
                        1px -1px 0px #000; /* Create a solid black outline for text */
            -webkit-text-stroke: 1px black; /* Outline for WebKit browsers */
            opacity: 1;           
            z-index: 3;
            max-width: 200px;
            
            line-height: 3.2rem;
        }

        @keyframes glowingText {
            0% {
                text-shadow: 0px 0px 10px rgba(255, 223, 125, 0.7), 
                            0px 0px 20px rgba(255, 223, 125, 0.5),
                            0px 0px 30px rgba(255, 223, 125, 0.3),
                            -1px -1px 0px #000, 
                            1px 1px 0px #000,
                            -1px 1px 0px #000,
                            1px -1px 0px #000;
                transform: scale(1);
            }
            100% {
                text-shadow: 0px 0px 20px rgba(255, 223, 125, 1),
                            0px 0px 40px rgba(255, 223, 125, 0.8),
                            0px 0px 60px rgba(255, 223, 125, 0.6),
                            -1px -1px 0px #000, 
                            1px 1px 0px #000,
                            -1px 1px 0px #000,
                            1px -1px 0px #000;
                transform: scale(1.05);
            }
        }

        @keyframes glowingText2 {
            0% {
                text-shadow: 0px 0px 10px rgba(255, 223, 125, 0.7),                             
                            -1px -1px 0px #000, 
                            1px 1px 0px #000,
                            -1px 1px 0px #000,
                            1px -1px 0px #000;
                transform: scale(1);
            }
            100% {
                text-shadow: 0px 0px 20px rgba(255, 223, 125, 1),
                            -1px -1px 0px #000, 
                            1px 1px 0px #000,
                            -1px 1px 0px #000,
                            1px -1px 0px #000;
                transform: scale(1.05);
            }
        }        

        .screenshotImage {            
            max-width: 80%;

            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 5px #d4a14d, 
                        0 0 10px #d4a14d, 
                        0 0 20px #d4a14d, 
                        0 0 40px #f7d488, 
                        0 0 80px #f7d488, 
                        0 0 90px #f7d488,                         
                        0 0 100px #f7d488;
        }

        .highlightedText {
            font-weight: bold;
            text-shadow: 0 0 5px #d4a14d, 
                        0 0 10px #d4a14d, 
                        0 0 20px #d4a14d;                                  
        }

        .main-container button {
            position: absolute;
            z-index: 10;
        }


  /* Footer Styling */
         footer {
            font-size: 0.9rem;
            background-color: #000;
            color: #fff;
            padding: 20px;
        }

        footer .disclaimer {
            font-size: 0.9rem;
            color: rgba(170, 167, 167, 0.9);
        }
        

        .footer a {
            margin: 0 auto;
            color: #fff;
            
            text-decoration: underline;
        }
        .footer a:hover {            
            text-shadow: 0 0 5px #d4a14d, 
                        0 0 10px #d4a14d, 
                        0 0 20px #d4a14d;  
        }


        .footerContainer {
            display: flex;
            flex-direction: row;
            justify-content: center; /* Center the quick-link divs */
            margin: 2rem auto;
            align-items: center;
            gap: 20px; /* Optional: Add space between the two quick-link divs */
        }

        .footerNavContainer {
            display: flex;          
            width: 80%;
            margin: 0 auto;  
        }


        .footerNav div  {
            margin: 6px 0 0;
        }


        .footerNavContainer > * {
            flex-basis: 100%;
            display: flex;
            flex-direction: column;
            
            margin-left: 2.5rem;
            
        }


        .footerNav a {            
            
            font-size: 15px;
            margin: 0 1rem;
        }

        .footerNav i {
            display: inline;
        }


        .quick-link {
            display: flex;
            flex-direction: column; /* Make the links stack vertically */
            text-align: center; /* Center the links within each column */
        }
                
        .footer .quick-link a {
            margin: 0 auto;
            color: #fff;
            text-decoration: none;
        }

        .disclaimer {
            font-size: 0.8rem;
            color: rgba(216, 215, 215, 0.7);
            margin: 3rem auto;
            padding: 1rem;
            max-width: 80%;
        }

        .details .btnCont {
            width: 100%; 
            margin: 1rem auto 0; 
            text-align: center;
        }

       
        .imageSlides {
            position: relative; /* Ensure the container has a defined position for the children */
            width: 100%;
            max-width: 360px;
            aspect-ratio: 16 / 9; /* Adjust aspect ratio as needed */
        }

        .imageSlides img {
            position: absolute; /* Stack images on top of each other */
            top: 0;
            left: 0;
            width: 360px; /* Set to ensure all images take the same space */
            height: auto; /* Adjust as necessary */
            display: none; /* Hide all images initially */
            z-index: 1; /* Default z-index */
        }

        .imageSlides img.active {
            display: block; /* Display active image */
            z-index: 2; /* Higher z-index so it’s on top */
        }
        
        .details i {
            color: green;
            margin-right: 0.5rem;
        }


        /* Main Navigation Bar */
    .main-navigation {        
        position: fixed;        /* Makes the nav bar stick to the top */
        top: 0.5rem;                 /* Sets it at the very top */                
        z-index: 1000;          /* Ensures it's above other content */        
        max-width: 1024px;        
        width: 95%;        
        background: black;
        border-radius: 5px;
        cursor: pointer;
        text-align: center;
        padding: 0;
        font-size: 18px;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
        box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 223, 125, 0.5);        
    }

    /* Primary Menu Container */
    .primary-menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;  /* Padding for better spacing */
    }

    /* Logo Styling */
    .logo {
        height: 50px;  /* Adjust the logo size for visibility */
    }

    /* Menu List Styling */
    .primary-menu-menu {
        list-style-type: none;  /* Removes bullet points from list items */
        margin: 0;
        padding: 0;
        display: flex;          /* Aligns menu items in a row */
        gap: 30px;              /* Adds spacing between menu items */
    }

    /* Menu Item Links */
    .primary-menu-menu li a {
        font-family: 'League Spartan', sans-serif !important;
        color: #eae2da;            /* Golden text color */
        text-decoration: none;  /* Removes underline */
        font-size: 18px;        /* Adjust font size */
        font-weight: bold;
        transition: color 0.3s, transform 0.3s; /* Smooth transition for hover effect */
        font-family: 'Arial', sans-serif;  /* Make sure the font matches your theme */
    }

    /* Hover Effect for Menu Links */
    .primary-menu-menu li a:hover {
        color: #ffd700; /* Bright golden color on hover */
        transform: scale(1.1); /* Slightly enlarge on hover */
    }

    /* Additional Styling for the Golden Feel */
    .primary-menu-menu li a::after {
        content: '';
        display: block;
        width: 0;
        height: 2px;
        background: #f39c12; /* Golden underline */
        transition: width .3s;
    }

    .primary-menu-menu li a:hover::after {
        width: 100%; /* Underline effect on hover */
    }