/* to do list
3. implement dashboard
4. massping strats to give me some reviews, welcome page, information etc
*/

body {
    background-color: black;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p, span, div, h1, h2, h3, h4, h5, h6 {
  cursor: default;
}


.text {
    color: #fff; /* Fully opaque white */
    font-weight: 600;
    position: relative; /* Ensure stacking context */
    z-index: 1;         /* Bring text above backgrounds if needed */
}

#topBar {
    position: fixed;
    top: 12px;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(3px);
    margin: 0 auto;
    max-width: 700px;
    width: 90vw;
    border-radius: 25px;
    box-shadow: 0 1px 8px 0 rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 12px 20px;
    overflow: hidden; /* Ensures border-radius clips the pseudo-element */
}
/* This is for the spinning gradient border effect */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}


@keyframes spin {
    from{
        --angle: 0deg;
    }
    to{
        --angle: 360deg;
    }
}
#topBar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.8);
    z-index: 0;
    border-radius: 25px;
    pointer-events: none;
}

#topBar::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: conic-gradient(from var(--angle), #b952d881, #97508e7c, #ae35dd69);
    filter: blur(1.5rem);
    opacity: 0.6;
    border-radius: 25px;
    animation: 3s spin linear infinite;
    z-index: 1;
    pointer-events: none;
}

#topBar > * {
    position: relative;
    z-index: 2;
}

#topBar .brand {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    max-height: 40px;  /* Keep max-height for size control */
    width: auto;       /* Let width adjust to image ratio */
    height: auto;      /* Let height adjust naturally */
    object-fit: contain;
    image-rendering: auto;
    margin-right: 18px;
    margin-left: 0px;
    display: flex;
    letter-spacing: 1px;
    border-radius: 200px;
    outline: none;
}

#topBar .nav-links {
    display: flex;
    gap: 14px;
    flex: 1; /* Takes up all available space */
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-width: 0; /* Prevent overflow */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    padding: 0; /* Remove default padding */
    list-style: none; /* Remove default list style */
    max-width: 50%;
}

#topBar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 14px;                      /* Less gap between links */
    align-items: center;
    flex: 1;
}

#topBar li {
    display: flex;
    align-items: center;
}

#topBar a {
    color: #ccc;
    text-decoration: none;
    font-weight: 550;
    font-size: 0.95rem;             /* Smaller link text */
    padding: 4px 12px;              /* Smaller padding */
    border-radius: 14px;
    transition: background 0.2s, color 0.2s;
    background: none;
    border: none;
    outline: none;
    display: inline-block;

}

#topBar a:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

#topBar a.logo-link:hover {
    background: none; /* No background for logo link */
}

#topBar .dashboard-btn {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 0;
    align-self: auto;
    font-size: 0.95em;
    padding: 4px 10px;
    flex-shrink: 0;
}

#topBar .dashboard-btn,
#topBar button.active {
    background: #fff;
    color: #111;
    font-weight: 600;
    border: none;
    border-radius: 999px;      /* Makes it a pill/oval */
    padding: 6px 22px;         /* More horizontal padding for pill shape */
    font-size: 1rem;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
    outline: none;
    cursor: pointer;
    display: inline-block;
}

#topBar .dashboard-btn:hover,
#topBar button.active:hover {
    background: #fff;
    color: #111;
    box-shadow:
        0 2px 8px 0 rgba(0,0,0,0.10),
        0 0 5px 1px #fff,
        0 0 10px 2px #ffecb3;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}

.bg-gif {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -3;         /* Lower z-index so it's under the grid */
    filter: blur(20px);  /* Adjust blur as needed */
    pointer-events: none;
}

.background-grid {
    position: fixed; /* Cover the whole viewport while scrolling */
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(
            to right,
            rgba(200,200,200,0.12) 0px,
            rgba(200,200,200,0.12) 1px,
            transparent 1px,
            transparent 40px
        ),
        repeating-linear-gradient(
            to bottom,
            rgba(200,200,200,0.12) 0px,
            rgba(200,200,200,0.12) 1px,
            transparent 1px,
            transparent 40px
        );
    background-size: 40px 40px, 40px 40px;
    background-position: 0 0, 0 0;
    background-repeat: repeat, repeat;
    /* Fade at the sides using a mask (works in Chromium browsers) */
    -webkit-mask-image: 
        linear-gradient(
            to right,
            transparent 0,
            black 500px,
            black 550px,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0,
            black 500px,
            black 550px,
            transparent 100%
        );
    -webkit-mask-composite: intersect;
    mask-image: 
        linear-gradient(
            to right,
            transparent 0,
            black 500px,
            black 550px,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            transparent 0,
            black 500px,
            black 550px,
            transparent 100%
        );
    mask-composite: intersect;

}

.content {
    position: relative;
    z-index: 1;
}

@media (max-width: 700px) {
  #topBar {
    max-width: 95w;
    width: 94vw;
    left: 0;
    right: 0;
    padding: 6px 4px;
    gap: 6px;
    border-radius: 20px;
    font-size: 0.95em;
    /* Keep flex-direction: row for a horizontal navbar */
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #topBar .brand {
    width: 48px;
    height: 48px;
    object-fit: contain;
    image-rendering: auto;
    margin: 0 10px 0 0;
  }
  #topBar .nav-links,
  #topBar ul {
    gap: 6px;
    font-size: 0.95em;
    max-width: 60vw;
  }
  #topBar .dashboard-btn {
    padding: 4px 12px;
    font-size: 0.95em;
    margin: 0 0 0 6px;
  }
  #about-box {
    margin-top: 100px;
    margin-bottom: 20px;
    padding: 0px;
  }
}
#pricing, #about-box, #support, #dashboard, #reviews {
    
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 200px auto;
    margin-top: 300px;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#pricing:hover, #about-box:hover, #support:hover, #dashboard:hover, #reviews:hover {
    box-shadow:
        0 8px 32px 0 rgba(0,0,0,0.7),  /* Stronger, larger shadow */
        0 0 8px 2px #fff2;              /* Optional: subtle white glow */
    border-color: rgba(255, 255, 255, 0.25);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#about-box {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 40px;
    padding: 18px;
}
#about {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 40px;
    padding: 18px;
    min-height: auto;
}
#aboutGif {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}
#operation-time {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

.timer-months .timer-num {
    background: linear-gradient(90deg, #2196f3, #21cbf3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.timer-weeks .timer-num {
    background: linear-gradient(90deg, #43e97b, #38f9d7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.timer-days .timer-num {
    background: linear-gradient(90deg, #f7971e, #ffd200);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.timer-hours .timer-num {
    background: linear-gradient(90deg, #f953c6, #b91d73);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.timer-minutes .timer-num {
    background: linear-gradient(90deg, #fd6e6a, #ffc600);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
.timer-seconds .timer-num {
    background: linear-gradient(90deg, #43cea2, #185a9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
}
#customerGradient {
    background: linear-gradient(90deg, #ff8a00, #e52e71, #9b00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bolder;
    font-size: 1.2em;
}

.reviews-container {
    margin-top: 0; /* Changed from 50px to 0 */
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

#reviews {
    /* Restore the box styling */
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 200px auto;
    margin-top: 300px;
    max-width: 700px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 30px; /* Reduced from 30px to 10px */
}

.reviews-scroll-container {
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    margin-top: 10px; /* Reduced from 20px to 10px */
    width: 100vw;
    overflow: hidden;
    position: relative;
    height: 460px;
    padding: 0 32px;
    box-sizing: border-box;
}

.reviews-wrapper {
    display: flex;
    width: max-content;
    position: relative; /* Add this */
}


.reviews-list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: nowrap;
    flex-shrink: 0;
    width: max-content;
}

.review-card {
    flex: 0 0 340px;
    box-sizing: border-box;
    height: 400px;
    padding: 24px 28px;
    color: #fff;
    backdrop-filter: blur(8px);
    transition: box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.review-card:hover {
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.35), 0 0 8px 2px #fff2;
    border-color: rgba(255,255,255,0.25);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #b952d8;
    background: #222;
}

.review-name {
    font-weight: 600;
    font-size: 1em; /* Fixed: removed extra 'm' */
    color: #eaeaea;
    margin: 0; /* Fixed: removed 'ht: auto;' */
    line-height: 1.5;
    flex-grow: 1; /* Ensures text takes up available space */
}

.review-rating {
    font-size: 1.2em;
    background: linear-gradient(90deg, #ffd700, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    letter-spacing: 1px;
}

.review-text {
    font-size: 1em;
    color: #eaeaea;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1; /* Ensures text takes up available space */
}

.review-rank {
    font-size: 0.9em;
    color: #ccc;
    margin-top: 6px;
    font-weight: 500;
    text-align: left;
}

/* Hide scrollbars for the entire page */
html, body {
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE and Edge */
}

html::-webkit-scrollbar, 
body::-webkit-scrollbar {
    display: none;                  /* Chrome, Safari, Opera */
}
#center-title {
    margin-top: 6px;
    text-align: center;
}
#support {
    /* Restore the box styling */
    
    display: block;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin: 200px auto;
    margin-top: 300px;
    max-width: 700px;
    max-height: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    color: #fff;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    margin-bottom: 30px; /* Reduced from 30px to 10px */
}
#support-input, #support-email {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#support-input:focus, #support-email:focus {
    border-color: #b952d8;
    box-shadow: 0 0 8px rgba(185, 82, 216, 0.6);
}
#support button.active {
    background: #fff;
    color: #111;
    font-weight: 600;
    border: none;
    border-radius: 999px;      /* Makes it a pill/oval */
    padding: 6px 22px;         /* More horizontal padding for pill shape */
    font-size: 1rem;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
    outline: none;
    cursor: pointer;
    display: block;      /* make margin auto work */
    margin: 0 auto;
    margin-top: 30px;
}
#support button.active:hover {
    background: #fff;
    color: #111;
    box-shadow:
        0 2px 8px 0 rgba(0,0,0,0.10),
        0 0 5px 1px #fff,
        0 0 10px 2px #ffecb3;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
#support .support-submit {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 0;
    align-self: auto;
    font-size: 0.95em;
    padding: 4px 10px;
    flex-shrink: 0;
}
#support-error {
    color: #ffffff;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
    opacity: 0;
}
#line-break {
    border: 0.01em solid rgba(255, 255, 255, 0.4);
    display: block;
    margin: 20px auto;
    width: 80%;
}
#support-other {
    text-align: center;
    margin-top: 10px;
    font-size: 1em;
    color: #ccc;
}
#discord-button {
    background: #7289da;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #111;
    font-weight: 600;
    border: none;
    border-radius: 999px;      /* Makes it a pill/oval */
    padding: 6px 22px;         /* More horizontal padding for pill shape */
    font-size: 1rem;
    box-shadow: 0 2px 8px 0 rgba(0,0,0,0.10);
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
    outline: none;
    cursor: pointer;
    display: block;      /* make margin auto work */
    margin: 0 auto;
    margin-top: 10px;
}
#discord-button:hover {
    background: #5b6eae;
    color: #111;
    box-shadow:
        0 2px 8px 0 rgba(0,0,0,0.10),
        0 0 5px 1px #fff,
        0 0 10px 2px #ffecb3;
    transition: box-shadow 0.3s, background 0.3s, color 0.3s;
}
