:root {
    --primary-color: #00f0ff;
    --secondary-color: #ff00f0;
    --background-dark: #020b1a;
    --background-light: #041633;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --gradient-primary: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    /* Removed --text-dark as it's no longer needed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Container */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

h3, h4 {
    color: var(--text-primary);
}

/* Navigation */
.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* Ensure navbar is above other elements */
    padding: 20px 0;
    background: rgba(2, 11, 26, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 90px;
}

.nav-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-login, .btn-signup {
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-login {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
}

.btn-login:hover {
    background: var(--primary-color);
    color: var(--text-primary);
}

.btn-signup {
    background: var(--gradient-primary);
    margin-left: 15px;
    color: var(--text-primary);
}

.btn-signup:hover {
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    z-index: 1100; /* Higher than navbar to ensure visibility */
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px; /* Adjust based on navbar height */
        right: 20px;
        background: rgba(2, 11, 26, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        border-radius: 10px;
        width: 200px;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block; /* Show hamburger icon on mobile */
    }

    /* Adjust Hero Section */
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Contact Section Adjustments */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .info-item {
        justify-content: center;
    }

    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Roadmap Timeline Adjustments */
    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item::before {
        left: 20px;
    }

    .roadmap-content {
        width: calc(100% - 50px);
        left: 50px !important;
    }
}

@media (max-width: 480px) {
    .nav-links {
        width: 100%;
        right: 0;
        left: 0;
        margin: 0 auto;
        max-width: none;
    }

    .container {
        padding: 0 10px;
    }

    /* Further Adjustments for Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    /* Adjust Buttons in Hero Section */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Contact Section Mobile Adjustments */
    .contact-section {
        padding: 60px 20px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Footer Mobile Adjustments */
    .footer {
        padding: 60px 20px 20px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 11, 26, 0.7);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    padding: 0 20px; /* Added padding to prevent content from touching edges */
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.6);
}

.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    background: transparent;
    transition: all 0.3s ease;
    height: 50px;
    width: 300px;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-primary);
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--text-primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* About Section */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
    width: 500px;
    height: 300px;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        width: 100%;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
        margin-top: 30px;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 100px 0;
    background: var(--background-light);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.reason-card:hover {
    transform: translateY(-10px);
}

.reason-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    position: relative;
    color: var(--text-primary);
    background: var(--background-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    backdrop-filter: blur(5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Mining Plans Section */
.mining-plans-section {
    padding: 100px 0;
    background: var(--background-light);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.plan-card.featured {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.plan-header {
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.8rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.plan-features li {
    margin: 15px 0;
    font-size: 1rem;
}

.btn-plan {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

.btn-plan:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 240, 255, 0.6);
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: var(--background-dark);
    overflow: hidden;
}

.partners-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.partners-slider {
    display: flex;
    animation: slide 20s linear infinite;
    gap: 50px;
}

.partner-logo {
    min-width: 180px;
    height: 80px;
    background: rgba(255, 255, 255, 1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.partner-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background: var(--background-light);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-50%);
}

.roadmap-item {
    position: relative;
    margin-bottom: 60px;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
}

.roadmap-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.roadmap-item:nth-child(odd) .roadmap-content {
    left: 55%;
}

.roadmap-item:nth-child(even) .roadmap-content {
    left: 0;
}

@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item::before {
        left: 20px;
    }

    .roadmap-content {
        width: calc(100% - 50px);
        left: 50px !important;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--background-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 20px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    position: relative;
    background: var(--background-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 5px;
    background: var(--background-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 15px 30px;
    border-radius: 5px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin: 10px 0;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Parallax Effect */
.parallax-window {
    background: transparent;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    /* Navigation Adjustments */
    .nav-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info .info-item {
        justify-content: center;
    }

    /* Footer Adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Roadmap Timeline Adjustments */
    .roadmap-timeline::before {
        left: 20px;
    }

    .roadmap-item::before {
        left: 20px;
    }

    .roadmap-content {
        width: calc(100% - 50px);
        left: 50px !important;
    }

    /* Hero Section Adjustments */
    .hero-content {
        max-width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Navigation Adjustments */
    .nav-links {
        width: 100%;
        right: 0;
        left: 0;
        margin: 0 auto;
        max-width: none;
    }

    .container {
        padding: 0 10px;
    }

    /* Hero Section Adjustments */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    /* Adjust Buttons in Hero Section */
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Contact Section Mobile Adjustments */
    .contact-section {
        padding: 60px 20px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }

    /* Footer Mobile Adjustments */
    .footer {
        padding: 60px 20px 20px;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column a {
        font-size: 0.9rem;
    }

    .social-links a {
        font-size: 1.3rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-right {
    animation: slideInFromRight 1s ease-out;
}

/* Glowing effect for buttons */
.btn-primary:hover, .btn-secondary:hover, .btn-plan:hover {
    box-shadow: 0 0 15px var(--primary-color);
}

/* Improve readability of text on video background */
.hero-content p {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

/* 3D Cube Animation */
.cube-animation {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
}

/* Crypto Price Ticker */
.crypto-ticker {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    overflow: hidden;
}

.ticker-container {
    display: flex;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    margin-right: 30px;
    white-space: nowrap;
}

.crypto-name {
    font-weight: bold;
    margin-right: 10px;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Login and Signup Pages */
.login-page,
.signup-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 20px;
}

.login-container,
.signup-container {
    width: 100%;
    max-width: 400px;
}

.login-form,
.signup-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.logo {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: #00f0ff;
}

.login-form h2,
.signup-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00f0ff;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.btn-primary {
    width: 100%;
    height: 50px;
    padding: 12px;
    background: linear-gradient(45deg, #00f0ff, #ff00f0);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}


.btn-primarynew {
    width: 210px;
    height: 50px;
    padding: 12px;
    background: linear-gradient(45deg, #00f0ff, #ff00f0);
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}





.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);
}

.btn-primary .btn-text {
    position: relative;
    z-index: 1;
}

.btn-primary .btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.form-footer a {
    color: #00f0ff;
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-form,
    .signup-form {
        padding: 30px;
    }

    .logo {
        font-size: 36px;
    }

    .login-form h2,
    .signup-form h2 {
        font-size: 24px;
    }
}

.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
}





/* Add these styles to your existing CSS file */

.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
}

/* Adjust the existing styles to accommodate the new pages */
.login-page,
.signup-page,
.forgot-password-page,
.reset-password-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 20px;
}

.login-container,
.signup-container,
.forgot-password-container,
.reset-password-container {
    width: 100%;
    max-width: 400px;
}

.login-form,
.signup-form,
.forgot-password-form,
.reset-password-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}






/* Record High Numbers Section */
.sui-record-numbers {
    padding: 100px 0;
    background-color: var(--background-dark);
}

.sui-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.sui-number-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.sui-number-item:hover {
    transform: translateY(-5px);
}

.sui-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 10px;
    flex-shrink: 0;
}

.sui-icon-wrapper i {
    font-size: 24px;
    color: var(--background-dark);
}

.sui-number-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.sui-highlight {
    color: var(--primary-color);
    font-weight: bold;
}

/* One-Stop Service Section */
.sui-one-stop {
    padding: 100px 0;
    background-color: var(--background-light);
}

.sui-one-stop-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.sui-one-stop-slider {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sui-slider-container {
    position: relative;
    width: 100%;
    height: 400px;
}

.sui-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sui-slide.active {
    opacity: 1;
}

.sui-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sui-one-stop-text {
    padding: 20px;
}

.sui-one-stop-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.sui-slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.sui-dot {
    width: 30px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sui-dot.active {
    background: var(--primary-color);
}

/* How to Start Mining Section */
.sui-start-mining {
    padding: 100px 0;
    background-color: var(--background-dark);
    text-align: center;
}

.sui-steps-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.sui-mining-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.sui-mining-step:hover {
    transform: translateY(-10px);
}

.sui-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sui-step-icon i {
    font-size: 32px;
    color: var(--background-dark);
}

.sui-step-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

.sui-cta-button {
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .sui-one-stop-content {
        grid-template-columns: 1fr;
    }

    .sui-steps-container {
        flex-direction: column;
    }

    .sui-step-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .sui-number-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .sui-steps-container {
        gap: 20px;
    }

    .sui-mining-step {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .sui-one-stop-text h2 {
        font-size: 1.8rem;
    }

    .sui-number-content h3 {
        font-size: 1rem;
    }
}












/* Spinner Overlay */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Spinner Animation */
.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

/* Spin Keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}










/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

/* Individual Toast */
.toast {
    min-width: 250px;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    color: #fff;
    opacity: 0.9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: fadeIn 0.5s, fadeOut 0.5s 4.5s;
}

/* Success Toast */
.toast-success {
    background-color: #28a745;
}

/* Error Toast */
.toast-error {
    background-color: #dc3545;
}

/* Info Toast */
.toast-info {
    background-color: #17a2b8;
}

/* Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 0.9; transform: translateY(0); }
}

/* Fade Out Animation */
@keyframes fadeOut {
    from { opacity: 0.9; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

/* Toast Close Button */
.toast .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
