
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}
body {
    background-color: #0a0a0a;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    text-align: center;
}
.shine {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(90deg, #0a0a0a, #ffd700, #0a0a0a);
    background-size: 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s linear infinite;
}
@keyframes shine {
    0% { background-position: 200%; }
    100% { background-position: -200%; }
}
.tagline {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 1rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}
.product {
    background-color: rgba(255, 215, 0, 0.1);
    border: 2px solid #ffd700;
    padding: 1.5rem;
    border-radius: 10px;
}
.product h2 {
    color: #ffd700;
    margin-bottom: 1rem;
}
.btn {
    background-color: #ffd700;
    color: #0a0a0a;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}
.btn:hover {
    background-color: #ffed4a;
}
.footer {
    margin-top: 2rem;
    color: #888;
    font-size: 0.9rem;
}
.top-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}
.top-nav a {
    color: #ffd700;
    text-decoration: none;
}
.ultimate {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    <!--margin-top: 20px;-->
}
.social-links a {
    color: #ffd700;
    font-size: 24px;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #ffffff;
}
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    .shine {
        font-size: 2.5rem;
    }
    .tagline {
        font-size: 1rem;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin: 20px 0;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: brightness(1) drop-shadow(0 0 0px #ffd700);
    }
    to {
        filter: brightness(1.3) drop-shadow(0 0 15px #ffd700);
    }
}

  .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
         <!--   min-height: 100vh; -->
            padding: 20px;
            text-align: center;
        }

        .tier-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
       <!--     margin: 2rem 0;  -->
            flex-wrap: wrap;
            width: 100%;
            max-width: 800px;
        }

        .tier-tab {
            color: #ffd700;
            text-decoration: none;
            padding: 15px 25px;
            border: 1px solid #ffd700;
            border-radius: 5px;
            transition: 0.3s ease;
            width: 100%;
            max-width: 200px;
        }

        .tier-tab:hover {
            background: #ffd700;
            color: #000;
        }

        .tier-info {
            margin-top: 20px;
            padding: 20px;
            background: rgba(0,0,0,0.5);
            border: 1px solid #ffd700;
            border-radius: 5px;
            width: 100%;
            max-width: 800px;
        }

        .tier-content {
            color: #fff;
            line-height: 1.6;
        }

        .tier-content h3 {
            color: #ffd700;
            margin-bottom: 10px;
        }

        .btn {
            display: inline-block;
            margin-top: 15px;
        }

        @media (max-width: 768px) {
            .tier-tabs {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .tier-tab {
                max-width: 80%;
            }

            .tier-info {
                max-width: 90%;
            }
        }
        .footer {
    background-color: #000; /* Solid black background */
    color: #fff; /* White text for contrast */
    text-align: center; /* Center-align the text */
    padding: 20px; /* Add some spacing inside the footer */
    width: 100%; /* Ensure it spans the full width of the browser */
    position: relative; /* Keeps it at its natural position on the page */
    box-sizing: border-box; /* Includes padding in width calculation */
}
.top-nav {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-menu a {
    margin: 0 15px;
    text-decoration: none;
    color: #fff;
}


/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu .menu-toggle {
    background-color: #000;
    color: #fff;
    border: 1px solid #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 10px;
    width: auto; /* This makes the button only as wide as its content */
    text-align: left;
    margin-left: 10px; /* This adds some space from the left edge */
}

.mobile-menu .dropdown-menu {
    display: none;
    flex-direction: column;
    background-color: #000;
    width: 43%; /* This makes it take up 1/3 of the screen */
    position: absolute;
    left: 0;
    top: 100%; /* This positions it right below the toggle button */
}

.mobile-menu .dropdown-menu a {
    padding: 10px 15px;
    text-decoration: none;
    color: #fff;
    text-align: left;
    border-top: 1px solid #333;
}

/* Responsive Design */
@media (max-width: 920px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
        position: relative;
        width: 100%;
    }
}


body {
  padding-top: 60px; /* Adjust this value based on your nav height */
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Your existing styles */
}
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
}

body {
    padding-bottom: 60px; /* Adjust this value if footer looks cut off */
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    background-color: #1a1a1a;
    border: 1px solid #ffd700;
    color: #ffffff;
}
.payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.payment-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
}

.payment-content input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.payment-content button {
    margin: 10px 5px;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#confirm-payment {
    background: #4CAF50;
    color: white;
}

#cancel-payment {
    background: #f44336;
    color: white;
}

#payment-status {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: var(--deep-black);
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 24px;
    cursor: pointer;
}

.payment-details {
    text-align: center;
    margin: 20px 0;
}

.xrp-address {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.xrp-address input {
    flex: 1;
    padding: 10px;
    background: #1a1a1a;
    border: 1px solid var(--primary-gold);
    color: #ffffff;
    border-radius: 5px;
}

#qrcode {
    margin: 20px auto;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

#authSection, #paymentSection {
    display: none;
}
/* Discount Section Styles */
.discount-section {
    background: rgba(241, 196, 15, 0.1);
    border: 1px solid #ffd700;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

#discount-code {
    background: #000000;
    border: 1px solid #ffd700;
    color: #ffffff;
    padding: 10px;
    margin-right: 10px;
    border-radius: 4px;
    width: 200px;
}

#discount-message {
    margin-top: 10px;
    font-weight: bold;
}

.discounted-price {
    color: #4CAF50;
    font-weight: bold;
    margin: 10px 0;
}
/* Sale and Discount Styles */
.price-container {
    position: relative;
    margin: 15px 0;
}

.original-price.on-sale {
    text-decoration: line-through;
    color: #666;
    font-size: 0.9em;
}

.sale-badge {
    background: #FFD700;
    color: #000;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.discount-percent {
    font-weight: bold;
    color: #FF4444;
}

.sale-timer {
    font-family: monospace;
    background: rgba(0, 0, 0, 0.5);
    padding: 2px 5px;
    border-radius: 3px;
}

.sale-price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2em;
}

/* Dashboard Discount Section */
.discount-list {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.discount-item {
    background: linear-gradient(45deg, #000 30%, #1a1a1a 100%);
    border: 1px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.discount-code {
    font-family: monospace;
    font-size: 1.2em;
    color: #FFD700;
    padding: 5px 10px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

.discount-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.discount-expiry {
    font-size: 0.9em;
    color: #999;
}


.tooltip {
    position: relative;
}

.tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.qr-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0; /* Optional: Adds margin before and after the QR code */
}
.tier-info {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0,0,0,0.5);
    border: 1px solid #ffd700;
    border-radius: 5px;
    width: 100%;
    max-width: 800px;
}

@media (max-width: 768px) {
    .tier-info {
        scroll-margin-top: 20px;
    }
}

 /* General styling for the textarea */
#message {
    width: 100%; /* Ensure it takes full width of its container */
    min-height: 100px; /* Set a minimum height */
    max-height: 300px; /* Limit the maximum height to prevent overflow */
    resize: vertical; /* Allow resizing only vertically */
    padding: 10px; /* Add some padding for better usability */
    font-size: 16px; /* Ensure readable font size */
    border: 1px solid #ccc; /* Add a border for clarity */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
   background-color: #1a1a1a;
   color: white;
}

/* Responsive design for mobile devices */
@media (max-width: 768px) {
    #message {
        min-height: 80px; /* Adjust minimum height for smaller screens */
        font-size: 14px; /* Reduce font size for better fit on mobile */
    }
}
/* Styles for the container holding the platform badges within a tier */
.tier-platforms {
    margin-top: 10px;     /* Adds space above the platform list */
    margin-bottom: 15px;  /* Adds space below the platform list */
    text-align: center;   /* Centers the badges and label within the container */
}

/* Optional style for the "Works on:" text label */
.platform-label {
    display: block;       /* Makes the label appear on its own line */
    margin-bottom: 5px;   /* Adds space below the label, before the badges */
    font-size: 0.9em;     /* Slightly smaller font size */
    color: #555;          /* Greyish text color */
    font-weight: bold;    /* Makes the label text bold */
}

/* Styles for the individual platform badges */
.platform-badge {
    display: inline-block; /* Allows setting margin/padding and keeps badges on one line */
    background-color: #0a0a0a; /* Light grey background */
    color: #888888;          /* Dark text color for contrast */
    padding: 4px 8px;     /* Inner spacing: 4px top/bottom, 8px left/right */
    margin: 3px 4px;      /* Outer spacing: 3px top/bottom, 4px left/right */
    border-radius: 4px;   /* Slightly rounded corners */
    font-size: 0.85em;    /* Smaller font size for the badge text */
    border: 1px solid #ffd700; /* Subtle light grey border */
    white-space: nowrap;  /* Prevents the text inside a badge from wrapping to the next line */
}