:root {
    --primary: #6e44ff;
    --secondary: #1a1a2e;
    --dark: #121212;
    --light: #f8f9fa;
    --accent: #00f5d4;
    --gradient-start: #121212;
    --gradient-end: #1a1a2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    position: relative;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(110, 68, 255, 0.5);
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    display: none;
}

@media (min-width: 992px) {
    .cursor {
        display: block;
    }
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.img-load {
    width: 120px;
    height: 120px;
    border: white solid 2px;
    border-radius: 50%;

}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.yin-yang-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: rotate 3s linear infinite;
    display: block;
    margin: 0 auto;
}

.yin-yang-img-2 {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotate 3s linear infinite;
    display: block;
    margin: 0 auto;
}

.yin-yang-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: rotate 3s linear infinite;
    display: block;
    margin: 0 auto;
}


.yin-yang {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(var(--light) 0%, var(--light) 50%, var(--dark) 50%, var(--dark) 100%);
    position: relative;
    animation: rotate 2s linear infinite;
}

.yin-yang:before,
.yin-yang:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.yin-yang:before {
    top: 10px;
    left: 10px;
    background: var(--dark);
    border: 10px solid var(--light);
}

.yin-yang:after {
    bottom: 10px;
    right: 10px;
    background: var(--light);
    border: 10px solid var(--dark);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.3s ease;
    padding: 1.5rem 0;
}

.navbar.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
}

.zen-symbol {
    width: 50px;
    height: 50px;
    border: solid 2px white;
    border-radius: 50%;
    
}

.newsletter-signup {
    color: white;
}

.form-control::placeholder {
    color: white;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background-color: var(--dark);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(110, 68, 255, 0.1) 0%, rgba(18, 18, 18, 0.9) 70%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--light), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a35e0;
    border-color: #5a35e0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 68, 255, 0.3);
}

.btn-outline-light {
    border-color: var(--light);
    color: var(--light);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--light);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.zen-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(26, 26, 46, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 50px rgba(110, 68, 255, 0.3);
}

.yin-yang-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(var(--light) 0%, var(--light) 50%, var(--dark) 50%, var(--dark) 100%);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.yin-yang-large:before,
.yin-yang-large:after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.yin-yang-large:before {
    top: 25px;
    left: 25px;
    background: var(--dark);
    border: 25px solid var(--light);
}

.yin-yang-large:after {
    bottom: 25px;
    right: 25px;
    background: var(--light);
    border: 25px solid var(--dark);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.bg-dark {
    background-color: var(--dark);
}

.bg-dark-light {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Section */
.about-image {
    position: relative;
    height: 400px;
    background: radial-gradient(circle at center, rgba(110, 68, 255, 0.2) 0%, transparent 70%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-element {
    width: 200px;
    height: 200px;
    background: url('/images/main.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    
    background-size: contain;
    animation: float 6s ease-in-out infinite, pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(110, 68, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.feature-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Token Section */
.token-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.token-card.featured {
    background-color: rgba(110, 68, 255, 0.1);
    border: 1px solid rgba(110, 68, 255, 0.3);
}

.token-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.token-icon i {
    color: var(--accent);
    font-size: 1.8rem;
}

.token-card h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

.token-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* Staking Section */
.staking-benefits {
    margin-top: 30px;
}

.benefit {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(110, 68, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

.benefit-content h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.staking-animation {
    position: relative;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.meditation-figure {
    position: relative;
}

.head {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
}

.body {
    width: 100px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    margin-top: -25px;
    position: relative;
    z-index: 1;
}

.aura {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(110, 68, 255, 0.5) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

/* Community Section */
.social-feed {
    margin-bottom: 40px;
}

.tweet-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.tweet-card:hover {
    transform: translateY(-5px);
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.tweet-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.tweet-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.tweet-content p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.tweet-tags {
    font-size: 0.85rem;
    color: var(--primary);
}

.social-links {
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: var(--light);
    transform: translateY(-5px);
}

.newsletter-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    border-radius: 30px 0 0 30px;
    padding: 0.75rem 1.5rem;
}

.newsletter-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: none;
    color: var(--light);
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 0.75rem 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--secondary);
    padding: 60px 0 30px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-tagline {
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-links a {
    color: var(--light);
    margin-left: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-divider {
    margin: 30px 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-motto {
    opacity: 0.7;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-left, .reveal-right, .reveal-up {
    opacity: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .zen-circle {
        width: 250px;
        height: 250px;
        margin-top: 40px;
    }
    
    .yin-yang-large {
        width: 150px;
        height: 150px;
    }
    
    .yin-yang-large:before,
    .yin-yang-large:after {
        width: 75px;
        height: 75px;
    }
    
    .yin-yang-large:before {
        top: 18.75px;
        left: 18.75px;
        border: 18.75px solid var(--light);
    }
    
    .yin-yang-large:after {
        bottom: 18.75px;
        right: 18.75px;
        border: 18.75px solid var(--dark);
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .footer-links a {
        margin-left: 15px;
    }
}

@media (max-width: 575.98px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn:last-child {
        margin-right: 0;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 5px;
    }
}

/* Auth Pages Styles */
.auth-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding-top: 80px;
}

.auth-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.auth-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.auth-form .form-label {
    color: var(--light);
    font-weight: 500;
}

.auth-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    border-radius: 0 5px 5px 0;
}

.auth-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: none;
    color: var(--light);
}

.auth-form .input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    border-radius: 5px 0 0 5px;
}

.auth-form .btn-outline-secondary {
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.2);
    border-radius: 0 5px 5px 0;
}

.auth-form .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.auth-form .form-check-label {
    color: var(--light);
}

.auth-form .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.auth-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Animation for auth logo */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Alert animations */
.alert {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Page Section Styles */
.page-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    padding: 120px 0 60px;
}

/* Contact Form Styles */
.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact-form .form-label {
    color: var(--light);
    font-weight: 500;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    border-radius: 0 5px 5px 0;
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: none;
    color: var(--light);
}

.contact-form .input-group-text {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    border-radius: 5px 0 0 5px;
}

/* About Page Styles */
.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-card h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-card p {
    color: var(--light);
    opacity: 0.9;
    margin-bottom: 0;
}

/* Policy & Terms Page Styles */
.policy-card, .terms-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.policy-card h3, .terms-card h3 {
    color: var(--light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-card p, .terms-card p {
    color: var(--light);
    opacity: 0.9;
}

.policy-card ul, .terms-card ul {
    color: var(--light);
    opacity: 0.9;
    padding-left: 1.5rem;
}

.policy-card li, .terms-card li {
    margin-bottom: 0.5rem;
}

/* Forgot Password Modal Styles */
.modal-zen {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
}

.modal-zen .modal-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.modal-zen .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-zen .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-zen .close {
    color: var(--light);
}