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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

a:hover {
    color: #ff4500;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-arrow {
    background-color: transparent;
    border: 1px solid #ff4500;
    color: #ff4500;
    padding: 10px 15px;
}

.btn-arrow:hover {
    background-color: #ff4500;
    color: #ffffff;
}

.btn-submit {
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    color: #ffffff;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    color: #ff4500;
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, #ff4500, #ff8c00);
}

/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 15px 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.logo {
    height: 40px;
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.7));
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo {
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 1));
    transform: scale(1.05);
}

.navbar-collapse {
    justify-content: flex-end;
}

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

.nav-item {
    margin: 0 15px;
}

.nav-link {
    color: #ffffff;
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #ff4500;
}

.navbar-toggler {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding-right: 15px;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    width: 30px;
    height: 30px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/nezha-hero.png') no-repeat center center;
    background-size: cover;
    z-index: -1;
    animation: zoomEffect 20s infinite alternate;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.5) 100%);
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ff4500;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    margin-top: 30px;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    background-color: #0f0f0f;
    padding: 100px 0;
    border-top: 1px solid rgba(255, 69, 0, 0.1);
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background-color: #0f0f0f;
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
}

.partner-logo {
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-10px);
}

.partner-img {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
    filter: grayscale(50%);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-img {
    filter: grayscale(0%);
}

.partner-logo p {
    color: #ff4500;
    font-weight: 600;
}

/* NFT Section */
.nft-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a0a0a, #1a0505);
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

.nft-description {
    text-align: center;
    margin-bottom: 30px;
}

.nft-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.nft-gallery {
    margin-top: 50px;
}

.nft-card {
    background-color: rgba(255, 69, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 69, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nft-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 69, 0, 0.3);
    border-color: rgba(255, 69, 0, 0.4);
}

.nft-image {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.nft-name {
    padding: 15px;
    text-align: center;
    font-weight: 600;
    color: #ff4500;
    margin: 0;
    letter-spacing: 1px;
}

/* Community Section */
.community-section {
    padding: 100px 0;
    background-color: #0f0f0f;
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

.community-card {
    background-color: rgba(255, 69, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 69, 0, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
    border-color: rgba(255, 69, 0, 0.4);
}

.community-icon {
    margin-bottom: 20px;
}

.icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.5));
}

.community-content h3 {
    color: #ff4500;
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* Profile Section */
.profile-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #1a0505, #0a0a0a);
}

.profile-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.profile-image {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    border: 3px solid #ff4500;
    transition: all 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.rounded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Roadmap Section */
.roadmap-section {
    padding: 100px 0;
    background-color: #0f0f0f;
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}



.roadmap-timeline {
    max-width: 600px;
    margin: 0 auto 50px;
    position: relative;
}

.timeline-line {
    height: 2px;
    background-color: rgba(255, 69, 0, 0.3);
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 50px;
}

.timeline-point {
    width: 20px;
    height: 20px;
    background-color: #0f0f0f;
    border: 2px solid rgba(255, 69, 0, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.timeline-point:nth-child(1) {
    left: 0%;
}

.timeline-point:nth-child(2) {
    left: 33.33%;
}

.timeline-point:nth-child(3) {
    left: 66.66%;
}

.timeline-point:nth-child(4) {
    left: 100%;
}

.timeline-point.active {
    background-color: #ff4500;
    border-color: #ff4500;
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.5);
}

.roadmap-card {
    background-color: rgba(255, 69, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.roadmap-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.roadmap-list li::before {
    content: '•';
    color: #ff4500;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.roadmap-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.btn-nav {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #ff4500;
    border-color: #ff4500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(to bottom, #0a0a0a, #1a0505);
    position: relative;
}

.contact-card {
    background-color: rgba(255, 69, 0, 0.1);
    border-radius: 10px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(255, 69, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    margin-bottom: 20px;
}

.contact-form {
    max-width: 500px;
    margin: 30px auto 0;
}

/* HubSpot Form Styling */
#hubspot-form .hs-form {
    font-family: 'Arial', sans-serif;
}

#hubspot-form .hs-form-field label {
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 600;
}

#hubspot-form .hs-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 5px;
    padding: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    width: 100%;
}

#hubspot-form .hs-input:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
    outline: none;
    border-color: rgba(255, 69, 0, 0.5);
}

#hubspot-form .hs-button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(45deg, #ff4500, #ff8c00);
    color: #ffffff;
    width: 100%;
}

#hubspot-form .hs-button:hover {
    background: linear-gradient(45deg, #ff8c00, #ff4500);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 69, 0, 0.3);
}

#hubspot-form .hs-error-msg {
    color: #ff4500;
    font-size: 0.9rem;
    margin-top: -15px;
    margin-bottom: 15px;
    display: block;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.2);
    border-radius: 5px;
    padding: 15px;
    color: #ffffff;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
    outline: none;
    border-color: rgba(255, 69, 0, 0.5);
}

/* Footer */
.footer {
    position: relative;
    background-color: #000000;
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23800000" fill-opacity="0.5" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat;
    background-size: cover;
    background-position: center top;
    z-index: 0;
    opacity: 0.8;
    animation: waveAnimation 15s infinite alternate ease-in-out;
}

@keyframes waveAnimation {
    0% {
        transform: scale(1.02) translateY(0);
    }
    100% {
        transform: scale(1) translateY(-10px);
    }
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 30px;
}

.logo-footer {
    height: 60px;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.7));
    transition: all 0.5s ease;
}

.footer-logo:hover .logo-footer {
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 1));
    transform: scale(1.05);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-circle i {
    color: #ffffff;
    font-size: 18px;
}

.social-link:hover .social-circle {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 69, 0, 0.4);
    background-color: #ff4500;
    border-color: #ff4500;
}

.social-link:hover .social-circle i {
    color: #ffffff;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-menu h4 {
    color: #ff4500;
    margin-bottom: 25px;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.footer-menu h4::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #ff4500, #ff8c00);
}

.footer-menu-columns {
    display: flex;
    gap: 50px;
}

.footer-menu-column {
    min-width: 120px;
}

.footer-nav {
    list-style-type: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 15px;
}

.footer-nav a {
    color: #ffffff;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 0;
    display: inline-block;
}

.footer-nav a:hover {
    color: #ff4500;
    padding-left: 5px;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 69, 0, 0.5), transparent);
    margin-bottom: 30px;
}

.copyright-text {
    margin-bottom: 15px;
}

.copyright-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.disclaimer-text {
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff4500;
}

.footer-dot {
    color: rgba(255, 69, 0, 0.7);
    margin: 0 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.85);
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        margin-top: 15px;
        border: 1px solid rgba(255, 69, 0, 0.2);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav-item {
        margin: 12px 0;
    }
    
    .nav-link {
        display: inline-block;
        padding: 8px 15px;
        width: 100%;
        text-align: center;
        border-radius: 5px;
    }
    
    .nav-link:hover {
        background-color: rgba(255, 69, 0, 0.1);
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 600px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-left {
        align-items: center;
        margin-bottom: 40px;
    }
    
    .footer-right {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .footer-menu-columns {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .footer-menu-column {
        width: 100%;
        text-align: center;
    }
    
    .profile-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        padding-left: 5px;
    }
    
    .navbar-brand .logo {
        height: 35px;
    }
    
    .navbar-toggler {
        padding-right: 5px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .profile-image {
        width: 100px;
        height: 100px;
    }
    
    .logo-footer {
        height: 40px;
    }
    
    .partner-img {
        width: 80px;
        height: 80px;
    }
    
    .media-img {
        width: 140px;
        height: 80px;
    }
    
    .partners-logos,
    .media-logos {
        gap: 30px;
    }
}