html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: 
        linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.9)),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px),
        radial-gradient(ellipse at center, rgba(40, 40, 40, 0.9) 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #fff;
}

h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.noise-overlay {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='noise' x='0' y='0' width='100' height='100'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.15'/%3E%3C/svg%3E"); 
    pointer-events: none; 
    z-index: 1; 
    opacity: 0.4;
}

.background-fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(100, 100, 100, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 60%, rgba(80, 80, 80, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1em 0 0 0;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.logo {
    position: absolute;
    left: 2rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0px 0px 10px rgba(255, 64, 129, 0.3);
}

.logo img {
    max-height: 3.2rem;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.logo:hover img {
    transform: scale(1.1);
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0; 
    padding: 0.5rem 2.5rem;
    gap: 0.5rem;
    background-color: rgb(0 0 0 / 21%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    box-shadow: 0px 0px 5px #010101;
    transition: all 0.3s ease;
}

.nav-links li {
    margin: 0 0.25rem; 
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 0.6rem 1rem; 
    display: block;  
    border-radius: 8px;
    letter-spacing: 0.3px;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-right {
    display: flex;
    align-items: center;
}

.btn-nav-cta {
    padding: 0.6rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.3px;
}

.btn-nav-cta:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.connection-status {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    color: #00e676;
    font-size: 0.875rem;
    font-weight: 500;
}

.status-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background-color: #00e676;
    margin-right: 0.3125rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.sol-amount {
    margin-left: 0.625rem;
    color: #fff;
}

.btn {
    padding: 0.625rem 1.25rem; 
    border: none;
    border-radius: 1.5625rem;
    cursor: pointer;
    font-size: 0.875rem; 
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #ff0066, #ff4081);
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 102, 0.5);
}

.btn-logout {
    background-color: transparent;
    color: #ff0066;
    border: 2px solid #ff0066;
}

.btn-logout:hover {
    background-color: #ff0066;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

.hamburger {
    display: none; 
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
}

.hero {
    text-align: center;
    padding: 6rem 1.5rem; 
    position: relative;
}

.hero .logo img{
   max-height: 60px;
   margin-bottom: 1rem;
}

.hero h1 {
    font-size: 6rem;
    background: radial-gradient(circle at center, #f8b9de 0%, #ff69b4 70%, #d63384 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero p {
    font-size: 1.125rem; 
    margin-bottom: 2rem;
    color: #ddd;
}

.hero-image {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features {
    padding: 3rem 1.5rem; 
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr)); 
    gap: 1.5rem;
}

@media (min-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

.feature-card {
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 0px 5px #010101;
    background-color: rgb(0 0 0 / 21%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.feature-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff4081;
    transition: color 0.3s ease;
}

.feature-card:hover i {
    color: #ff0066;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: #bbb;
    font-size: 1rem;
    line-height: 1.4;
}

.pricing {
    padding: 3rem 1.5rem; 
    text-align: center;
}

.pricing-card {
    background-color: rgba(34, 34, 34, 0.9);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: auto;
    max-width: 30rem;
}
.pricing-card p{
  margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 1.5rem;  
    background-color: rgba(20, 20, 20, 0.9);
    font-size: 0.9rem;
    color: #888;
    margin-top: 3rem; 
    box-shadow: 0px 0px 5px #010101;
    background-color: rgb(0 0 0 / 21%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .navbar{
        padding: 0.5rem 1rem;
    }
    
    .logo {
        left: 1rem;
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .logo img {
        max-height: 2rem;
    }
    
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute;
        top: 5rem; 
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 2rem);
        border-radius: 20px;
        padding: 1rem;
    }

    .nav-links.active {
        display: flex; 
    }

    .nav-links li {
        margin: 0.5rem 0;
    }
    .nav-links a {
        padding: 0.75rem;
    }

    .nav-right {
        position: absolute;
        right: 4rem;
    }
    
    .btn-nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    .hamburger {
        display: block;
        position: absolute;
        right: 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
     .hero-image {
        max-width: 95%;
    }
}

.pricing {
    padding: 3rem 1.5rem;
    text-align: center;
}

.pricing-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center; 
}

.pricing-card {
    padding: 2rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
    max-width: 300px;
    width: 300px;
    box-shadow: 0px 0px 5px #010101;
    background-color: rgb(0 0 0 / 21%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); 
}

.pricing-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ff4081;
    transition: color 0.3s ease;  
}

.pricing-card:hover i {
    color: #ff0066; 
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.pricing-description {
    color: #bbb;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left; 
    width: 100%; 
}
.pricing-features li{
   margin-bottom: .5rem;
   color: #bbb;
   font-size: .9rem;
}

.pricing-card .btn {
    margin-top: auto; 
    width: 100%; 
}

.btn-secondary {
    background-color: transparent;
    color: #ff0066;
    border: 2px solid #ff0066;
}

.btn-secondary:hover{
     background-color: #ff0066;
    color: #fff;
    box-shadow: 0 4px 12px rgba(255, 0, 102, 0.3);
}

@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); 
    }
}
/*
     FILE ARCHIVED ON 20:51:22 Apr 09, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 17:01:18 Nov 06, 2025.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.49
  exclusion.robots: 0.019
  exclusion.robots.policy: 0.009
  esindex: 0.01
  cdx.remote: 21.664
  LoadShardBlock: 142.875 (3)
  PetaboxLoader3.datanode: 152.832 (5)
  PetaboxLoader3.resolve: 252.439 (2)
  load_resource: 276.167
  loaddict: 26.074
*/