:root {
    --primary: #6e45e2;
    --primary-dark: #4a2bb8;
    --secondary: #88d3ce;
    --dark: #0f0e17;
    --light: #fffffe;
    --accent: #ff8906;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--dark);
    color: var(--light);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

code,
.mono {
    font-family: 'Space Mono', monospace;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(15, 14, 23, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(15, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand i {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--light);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at 30% 50%, rgba(110, 69, 226, 0.2) 0%, rgba(15, 14, 23, 1) 70%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('./images/photo-1639762681057-408e52192e55.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(136, 211, 206, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.floating-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 100px;
    animation-delay: 2s;
}

.floating-3 {
    width: 150px;
    height: 150px;
    top: 200px;
    right: -50px;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.stat-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--light);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-description {
    opacity: 0.8;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
}

/* Stats Card */
.stats-card {
    background: var(--gradient);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: rotate 15s linear infinite;
}

.stats-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* NFT Cards */
.nft-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
}

.nft-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.nft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nft-card:hover .nft-image img {
    transform: scale(1.05);
}

.nft-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 14, 23, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nft-card:hover .nft-overlay {
    opacity: 1;
}

.nft-like {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(15, 14, 23, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nft-like i {
    color: var(--light);
    font-size: 1rem;
}

.nft-like:hover {
    background: var(--primary);
}

.nft-content {
    padding: 1.5rem;
}

.nft-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.nft-artist {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.nft-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.nft-price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--secondary);
}

.nft-meta span {
    margin-left: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Roadmap */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: var(--gradient);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-marker {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark);
    border: 4px solid var(--primary);
    top: 15px;
    right: -17px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -17px;
}

.timeline-marker.completed {
    background: var(--primary);
    border-color: var(--primary);
}

.timeline-marker.completed i {
    color: var(--light);
    font-size: 0.8rem;
}

.timeline-marker.in-progress {
    border-color: var(--accent);
}

.timeline-marker.in-progress i {
    color: var(--accent);
    font-size: 0.8rem;
}

.timeline-marker.upcoming {
    border-color: var(--secondary);
    margin-left: 2px;
}

.timeline-marker.upcoming i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.timeline-content {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
}

.timeline-quarter {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-description {
    opacity: 0.8;
    margin-bottom: 1rem;
}

.timeline-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-features li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.timeline-features i {
    color: var(--primary);
}

/* App Download Section */
.download-section {
    background: linear-gradient(135deg, rgba(110, 69, 226, 0.1) 0%, rgba(15, 14, 23, 1) 70%);
    position: relative;
    overflow: hidden;
}

.app-feature {
    display: flex;
    margin-bottom: 2rem;
}

.app-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.app-feature-icon i {
    font-size: 1.5rem;
    color: var(--light);
}

.app-feature-content h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.app-feature-content p {
    opacity: 0.8;
    font-size: 0.95rem;
    margin: 0;
}

.app-download-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.app-download-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
}

.app-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.app-icon i {
    font-size: 2.5rem;
    color: var(--light);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--light);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.download-icon {
    margin-right: 0.75rem;
}

.download-icon i {
    font-size: 1.5rem;
}

.download-text {
    text-align: left;
}

.download-text small {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.download-text strong {
    display: block;
    font-size: 1rem;
}

/* Contact Section */
.contact-info {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.2rem;
    color: var(--light);
}

.contact-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-content p {
    opacity: 0.8;
    margin: 0;
}

.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 0.25rem rgba(110, 69, 226, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(110, 69, 226, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: var(--light);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-marker {
        left: 15px !important;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .download-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

.text-muted {

    color: rgb(255 255 255 / 75%) !important;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
    z-index: 99;
}

.timeline-marker {
    text-align: center;
    margin-right: 1px;
}

/* Add these at the end of your style section */

/* Prevent horizontal overflow */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix timeline overflow on mobile */
@media (max-width: 992px) {
    .timeline-item {
        padding-left: 50px;
        padding-right: 15px;
    }
}

/* Ensure all containers don't cause overflow */
.container,
.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fix potential overflow in stats section */
@media (max-width: 576px) {
    .hero-stats .col-4 {
        padding-left: 5px;
        padding-right: 5px;
    }

    .stat-item {
        padding: 1rem;
    }
}

/* Fix contact form overflow */
.contact-form {
    max-width: 100%;
}

/* Fix newsletter form overflow */
.newsletter-form .input-group {
    flex-wrap: wrap;
}

.newsletter-form .form-control {
    min-width: 100%;
    margin-bottom: 10px;
}

.newsletter-form .btn {
    width: 100%;
}

/* NFT Detail Section */
.nft-detail-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.nft-detail-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.nft-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 600px;
}

.nft-image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.nft-image-actions {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nft-like {
    width: 40px;
    height: 40px;
    background: rgba(15, 14, 23, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nft-like i {
    color: var(--light);
    font-size: 1rem;
}

.nft-like:hover {
    background: var(--primary);
}

.nft-share {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    background: rgba(15, 14, 23, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--light);
}

.share-btn:hover {
    background: var(--primary);
}

.nft-details {
    flex: 1;
    min-width: 300px;
}

.nft-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.nft-creator {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.creator-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.creator-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.creator-info p {
    opacity: 0.8;
    font-size: 0.9rem;
    margin: 0;
}

.nft-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.nft-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    min-width: 120px;
}

.meta-label {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.meta-value {
    font-weight: 700;
    font-size: 1.1rem;
}

.meta-value.eth {
    color: var(--secondary);
}

.nft-actions {
    margin-top: 2rem;
}

.bid-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 0.25rem rgba(110, 69, 226, 0.25);
}

.input-group {
    position: relative;
}

.input-group-text {
    position: absolute;
    right: 10px;
    top: 35%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--secondary);
    font-weight: 700;
}

.price-conversion {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.bid-history {
    margin-top: 3rem;
}

.bid-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.bidder-info {
    display: flex;
    align-items: center;
}

.bidder-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.bidder-name {
    font-weight: 600;
}

.bid-time {
    font-size: 0.8rem;
    opacity: 0.7;
}

.bid-amount {
    font-weight: 700;
    color: var(--secondary);
}

.properties-container {
    margin-top: 3rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.property-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.2);
}

.property-type {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.property-value {
    font-weight: 700;
}

/* More NFTs Section */
.more-nfts {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.nft-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.2);
}

.nft-card-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.nft-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nft-card:hover .nft-card-image img {
    transform: scale(1.05);
}

.nft-card-content {
    padding: 1.5rem;
}

.nft-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.nft-card-artist {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.nft-card-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nft-card-price {
    font-weight: 700;
    color: var(--secondary);
}

/* Footer */
footer {
    background: rgba(15, 14, 23, 0.8);
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(110, 69, 226, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-brand i {
    font-size: 1.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 0.5rem;
}

.footer-brand span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: var(--light);
}

.footer-links-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--light);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nft-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nft-detail-section {
        padding: 3rem 0;
    }

    .nft-title {
        font-size: 1.8rem;
    }

    .properties-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
}

@media (max-width: 1200px) {

    .hero-title {
        margin-top: 70px;
    }


}

@media (max-width: 576px) {
    .nft-title {
        font-size: 1.5rem;
    }

    .nft-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .meta-item {
        width: 100%;
    }

    .nft-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nft-actions .btn:last-child {
        margin-bottom: 0;
    }
}

.form-control::placeholder {
    color: #ffff;
    opacity: 1;
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding: 4rem 0;
    background: radial-gradient(circle at 30% 50%, rgba(110, 69, 226, 0.2) 0%, rgba(15, 14, 23, 1) 70%);
}

.auth-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.auth-subtitle {
    opacity: 0.8;
    font-size: 1rem;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 0.25rem rgba(110, 69, 226, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}





.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    opacity: 0.7;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}

.divider-text {
    padding: 0 1rem;
    font-size: 0.9rem;
}

.wallet-connect {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--light);
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wallet-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.wallet-icon {
    font-size: 1.5rem;
}

.terms-text {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 1rem;
    text-align: center;
}

.terms-text a {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .auth-container {
        padding: 2rem 0;
    }

    .auth-card {
        padding: 2rem;
    }

    .auth-title {
        font-size: 1.8rem;
    }
}

.form-control::placeholder {
    color: #ffff;
    /* Change to your desired color */
    opacity: 1;
    /* Ensure full visibility in some browsers */
}

/* Privacy Content Styles */
.privacy-hero {
    background: radial-gradient(circle at 30% 50%, rgba(110, 69, 226, 0.2) 0%, rgba(15, 14, 23, 1) 70%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-content {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    margin: -3rem auto 5rem;
    max-width: 1200px;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    position: relative;
    padding-bottom: 0.5rem;
}

.privacy-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
}

.privacy-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
}

.privacy-section p,
.privacy-section ul {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.privacy-section ul {
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.75rem;
}

.highlight-box {
    background: rgba(110, 69, 226, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
    margin: 2rem 0;
}

.update-date {
    font-size: 0.9rem;
    opacity: 0.7;
    text-align: right;
    margin-top: 3rem;
    font-style: italic;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 6rem 0 3rem;
    }

    .privacy-hero h1 {
        font-size: 2.2rem;
    }

    .privacy-content {
        padding: 2rem;
        margin: -2rem auto 3rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }
}

/* Profile Header */
.profile-header {
    background: radial-gradient(circle at 30% 50%, rgba(110, 69, 226, 0.2) 0%, rgba(15, 14, 23, 1) 70%);
    padding: 6rem 0 3rem;
    position: relative;
}

.profile-container {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    object-fit: cover;
    margin-top: -60px;
    background: var(--dark);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-username {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.profile-bio {
    max-width: 600px;
    opacity: 0.9;
    line-height: 1.6;
}

.profile-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Account Content */
.account-content {
    padding: 3rem 0;
}

.account-sidebar {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
}

.account-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.account-menu li {
    margin-bottom: 0.5rem;
}

.account-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.account-menu a:hover,
.account-menu a.active {
    background: rgba(110, 69, 226, 0.2);
    color: var(--secondary);
}

.account-menu a i {
    width: 24px;
    text-align: center;
    margin-right: 0.75rem;
}

.account-main {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    display: none;
    /* Initially hidden */
}

.account-main.active {
    display: block;
    /* Show active section */
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient);
}

/* NFT Grid */
.nft-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.nft-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nft-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.2);
}

.nft-image {
    width: 100%;

    object-fit: cover;
}

.nft-info {
    padding: 1rem;
}

.nft-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nft-price {
    color: var(--secondary);
    font-weight: 700;
}

/* Activity Timeline */
.activity-timeline {
    position: relative;
    padding-left: 30px;
}

.activity-timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient);
}

.activity-item {
    position: relative;
    padding-bottom: 2rem;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid var(--dark);
}

.activity-date {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.activity-content {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1rem;
}

/* Settings Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    width: 100%;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 0.25rem rgba(110, 69, 226, 0.25);
}

.btn {
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.4);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

/* Wallet List */
.wallet-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.wallet-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.wallet-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(110, 69, 226, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wallet-address {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Notifications */
.notification-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notification-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    gap: 1rem;
}

.notification-item.unread {
    border-left: 4px solid var(--primary);
}

.notification-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.notification-time {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Security */
.security-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.security-status .badge {
    background: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-avatar {
        margin-top: -80px;
    }

    .nft-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}


@media (max-width: 1200px) {
    .profile-info{margin-top: 40px !important;}
}

@media (max-width: 1200px) {
    .profile-header{margin-top: 70px !important;}
}

@media (max-width: 768px) {
    .profile-header{margin-top: 80px !important;}
    .profile-header {
        padding: 5rem 0 2rem;
    }
    .profile-name {
        font-size: 1.5rem;
    }

    .profile-username {
        font-size: 1rem;
    }

    .profile-stats {
        gap: 1rem;
    }
}
#explore {
    margin-top: 70px;
}

/* Edit Profile Modal Styles */
.profile-avatar-edit {
    position: relative;
    display: inline-block;
}

.profile-avatar-lg {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avatar-upload-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #6c5ce7;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.avatar-upload-btn:hover {
    background: #5649c0;
    transform: scale(1.1);
}

.modal-content {
    background: #1e1e2d;
    color: #fff;
    border: none;
    border-radius: 12px;
}

.modal-header {
    border-bottom: 1px solid #2d2d42;
}

.modal-footer {
    border-top: 1px solid #2d2d42;
}

.form-control {
    background-color: #2d2d42;
    border: 1px solid #3d3d5a;
    color: #fff;
}

.form-control:focus {
    background-color: #2d2d42;
    color: #fff;
    border-color: #6c5ce7;
    box-shadow: 0 0 0 0.25rem rgba(108, 92, 231, 0.25);
}

.input-group-text {
    background-color: #3d3d5a;
    border: 1px solid #3d3d5a;
    color: #fff;
}


.modal .btn-close {
    color: #ffff;
}

.faq-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 80px;
    color: white;
    text-align: center;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-card {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-header {
    padding: 1.25rem;
    background: #0f0e17;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: #0f0e16;
}

.faq-header h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-body {
    padding: 1.25rem;
    display: none;
}

.faq-body.show {
    display: block;
}

.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.bg-light {
    background-color: #0f0e17 !important;
}

#faqbtn {
    height: 50px !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgb(112 78 225) !important;
}