/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Archivo', sans-serif;
    background: #49A485;
    color: #FFFFFF;
    min-height: 100vh;
    line-height: 1.6;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(73, 164, 133, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand-link:hover {
    transform: scale(1.05);
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F4D03F;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F4D03F;
    transform: translateY(-2px);
}

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

.nav-link.active {
    color: #F4D03F;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #49A485 0%, #2D7A5F 100%);
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.hero-splash-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-splash-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 400px;
    height: auto;
    opacity: 0.8;
    animation: splashFloat1 6s ease-in-out infinite;
}

.hero-splash-2 {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 300px;
    height: auto;
    opacity: 0.7;
    animation: splashFloat2 8s ease-in-out infinite reverse;
}

.hero-splash-3 {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 250px;
    height: auto;
    opacity: 0.6;
    animation: splashFloat3 7s ease-in-out infinite;
}

@keyframes splashFloat1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes splashFloat2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}

@keyframes splashFloat3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero-left {
    position: relative;
    z-index: 4;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.4;
    max-width: 500px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-about {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.hero-about h3 {
    color: #FDC350;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-about p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
}

.hero-character {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.floating-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(253, 195, 80, 0.6);
    border-radius: 50%;
    animation: floatDot 8s ease-in-out infinite;
}

.floating-dot:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-dot:nth-child(2) {
    top: 20%;
    right: 15%;
    animation-delay: -2s;
}

.floating-dot:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

.floating-dot:nth-child(4) {
    bottom: 10%;
    right: 25%;
    animation-delay: -6s;
}

@keyframes floatDot {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.6; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

/* About Hero Section */
.about-hero-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.about-hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-character {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

.about-hero-right h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-hero-right p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-hero-right h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F4D03F;
    margin: 2rem 0 1rem;
}

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

.key-features-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1.5;
}

.key-features-list li:hover {
    background: rgba(244, 208, 63, 0.15);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateY(-2px);
}

.key-features-list li strong {
    color: #F4D03F;
}

/* Why Section */
.why-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 4rem;
    align-items: center;
}

.why-left .feature-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.why-left .feature-text h3 {
    color: #F4D03F;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.why-left .feature-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.why-right {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-diagonal {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-diagonal.left {
    transform: rotate(-10deg);
}

.character-diagonal.right {
    transform: rotate(10deg);
}

.character-diagonal .character-img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: diagonalFloat 5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.character-diagonal .character-img:hover {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.faq-content {
    grid-template-columns: 1fr 250px;
    display: grid;
    gap: 4rem;
    align-items: flex-start;
}

.faq-left {
    position: relative;
}

.faq-right {
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(244, 208, 63, 0.1);
    border-color: rgba(244, 208, 63, 0.3);
}

.faq-item.active {
    background: rgba(244, 208, 63, 0.15);
    border-color: rgba(244, 208, 63, 0.4);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #F4D03F;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F4D03F;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* FAQ Page Specific Styles */
.faq-main-section {
    padding: 2rem 0 5rem;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-bg-characters {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.faq-bg-char-1 {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 200px;
    height: auto;
    opacity: 0.1;
    transform: rotate(-15deg);
    animation: bgFloat1 8s ease-in-out infinite;
}

.faq-bg-char-2 {
    position: absolute;
    bottom: 15%;
    right: -5%;
    width: 180px;
    height: auto;
    opacity: 0.1;
    transform: rotate(20deg);
    animation: bgFloat2 10s ease-in-out infinite reverse;
}

@keyframes bgFloat1 {
    0%, 100% { transform: translateY(0px) rotate(-15deg); }
    50% { transform: translateY(-20px) rotate(-10deg); }
}

@keyframes bgFloat2 {
    0%, 100% { transform: translateY(0px) rotate(20deg); }
    50% { transform: translateY(-15px) rotate(25deg); }
}

/* Contact Page Background */
.contact-splash-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.contact-splash-1 {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 300px;
    height: auto;
    opacity: 0.6;
    animation: splashFloat1 8s ease-in-out infinite;
}

.contact-splash-2 {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 200px;
    height: auto;
    opacity: 0.4;
    animation: splashFloat3 9s ease-in-out infinite;
}

.contact-bg-characters {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.contact-bg-char-1 {
    position: absolute;
    top: 15%;
    left: -5%;
    width: 180px;
    height: auto;
    opacity: 0.45;
    transform: rotate(-20deg);
    animation: bgFloat1 10s ease-in-out infinite;
}

.contact-bg-char-2 {
    position: absolute;
    top: 35%;
    right: -5%;
    width: 160px;
    height: auto;
    opacity: 0.45;
    transform: rotate(25deg);
    animation: bgFloat2 12s ease-in-out infinite reverse;
}

.contact-bg-char-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    width: 140px;
    height: auto;
    opacity: 0.45;
    animation: bgFloat1 9s ease-in-out infinite;
}

/* Flying Character Behind H1 */
.contact-flying-char {
    position: absolute;
    top: 20%;
    right: 15%;
    pointer-events: none;
    z-index: 1;
}

.flying-char {
    width: 120px;
    height: auto;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.faq-list .faq-answer ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.faq-list .faq-answer li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-list .faq-item.active .faq-answer {
    max-height: 400px;
}

@keyframes diagonalFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.features-content {
    position: relative;
}

.features-left {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-text h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-highlights {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-highlights li {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    font-weight: 600;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.feature-highlights li:hover {
    background: rgba(244, 208, 63, 0.2);
    border-color: rgba(244, 208, 63, 0.4);
    transform: translateY(-3px);
}

/* Tokenomics Section */
.tokenomics-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.tokenomics-content {
    position: relative;
}

.tokenomics-right {
    flex: 1;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tokenomics-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    background: rgba(244, 208, 63, 0.15);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateY(-5px);
}

.tokenomics-item h3 {
    color: #F4D03F;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tokenomics-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Community Section */
.community-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
}

.community-content {
    position: relative;
}

.community-left {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: center;
}

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

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(244, 208, 63, 0.15);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #F4D03F;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    margin: 0;
}

/* Launch Section */
.launch-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
}

.launch-content {
    position: relative;
}

.launch-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.launch-center h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.launch-center > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.launch-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.launch-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.launch-feature:hover {
    background: rgba(244, 208, 63, 0.15);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateY(-5px);
}

.launch-feature h4 {
    color: #F4D03F;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.launch-feature p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Spotlight Section */
.spotlight-section {
    padding: 5rem 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.character-showcase {
    display: flex;
    justify-content: center;
    margin: 3rem 0;
}

.floating-character {
    animation: float 4s ease-in-out infinite;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.media-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.media-item:hover {
    background: rgba(244, 208, 63, 0.2);
    transform: translateY(-5px);
    border-color: rgba(244, 208, 63, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.media-item img {
    max-width: 120px;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.9;
    filter: brightness(1.2);
}

/* About Preview Section */
.about-preview-section {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: center;
}

.about-character {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text h3 {
    font-size: 1.5rem;
    color: #F4D03F;
    margin-bottom: 2rem;
    font-weight: 600;
}

.about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contract-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
}

.contract-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contract-address {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.address-text {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
    flex: 1;
    word-break: break-all;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 200px;
}

.copy-btn {
    background: #F4D03F;
    color: #2C3E50;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.copy-btn:hover {
    background: #E6C547;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
}

/* Footer */
.footer {
    background: #FDC350;
    color: #000000;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
}

.footer-links-left,
.footer-links-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-character {
    flex: 0 0 200px;
    text-align: center;
    position: relative;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-character .character-img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
    display: block;
}

.footer-character .character-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.4));
}

.footer-character-animation {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-character-animation:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.4));
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: #333333;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
    font-weight: 500;
    color: #000000;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0.5rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #000;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
}

/* Performance optimizations */
.hero-character,
.character-img {
    will-change: transform;
    backface-visibility: hidden;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Page Content Styles */
.page-content {
    margin-top: 120px;
}

.page-background {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background: linear-gradient(135deg, #49A485 0%, #2D7A5F 100%);
}

.page-header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page Styles */
.about-detailed {
    padding-bottom: 5rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.content-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #F4D03F;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.content-section p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #F4D03F;
    font-weight: bold;
}

.tokenomics-preview {
    margin-top: 2rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card h4 {
    color: #F4D03F;
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contract-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contract-card h4 {
    color: #F4D03F;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contract-network {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

/* Contact Styles */
.contact-section {
    padding-bottom: 5rem;
}

.simple-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.simple-contact .contact-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 100%;
    transition: all 0.3s ease;
}

.simple-contact .contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.simple-contact .contact-card h3 {
    color: #F4D03F;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.simple-contact .contact-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.simple-contact .contact-link:hover {
    color: #F4D03F;
}

.character-img {
    width: 100%;
    height: auto;
    max-width: 280px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 4s ease-in-out infinite;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: center;
}

.value-card:hover {
    background: rgba(244, 208, 63, 0.15);
    border-color: rgba(244, 208, 63, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-card h4 {
    color: #F4D03F;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.value-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.legal-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.legal-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.legal-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.legal-section h2 {
    color: #F4D03F;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #FFFFFF;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
}

.legal-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #F4D03F;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.legal-section a:hover {
    color: #E6C547;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-container {
        grid-template-columns: 300px 1fr;
        gap: 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr 300px;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 200px 1fr;
        gap: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr 250px;
        gap: 3rem;
    }
    
    .features-left,
    .community-left,
    .why-content {
        grid-template-columns: 200px 1fr;
        gap: 3rem;
    }
    
    .why-right {
        width: 200px;
    }
    
    .character-diagonal .character-img {
        width: 150px;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .faq-right {
        width: auto;
    }
    
    .character-diagonal {
        order: -1;
    }
    
    .feature-highlights {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .community-stats {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .launch-features {
        grid-template-columns: 1fr;
    }
    
    /* Hide section splashes on mobile for better performance */
    .hero-splash-container {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(73, 164, 133, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-right {
        order: -1;
    }
    
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-left {
        order: -1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-character {
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-left {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .features-left .character-diagonal {
        order: -1;
    }
    
    .community-left {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .community-left .character-diagonal {
        order: -1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links-left,
    .footer-links-right {
        order: 1;
    }
    
    .footer-character {
        order: 0;
        flex: none;
    }
}

@media (max-width: 480px) {
    .why-left .feature-text h2 {
        font-size: 2rem;
    }
    
    .why-left .feature-text h3 {
        font-size: 1.2rem;
    }
    
    .why-left .feature-text p {
        font-size: 1rem;
    }
    
    .hero-splash-1 {
        width: 180px;
        top: 20%;
        left: -10%;
    }
    
    .hero-splash-2 {
        width: 150px;
        top: 45%;
        right: -10%;
    }
    
    .hero-splash-3 {
        width: 120px;
        bottom: 30%;
        left: 5%;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-about {
        padding: 1.5rem;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .character-img {
        max-width: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
    
    .hero-about,
    .content-section,
    .contact-card,
    .legal-section {
        padding: 1.5rem;
    }
    
    .character-diagonal .character-img {
        width: 150px;
    }
    
    .feature-text h2,
    .launch-center h2 {
        font-size: 2rem;
    }
    
    .feature-text p,
    .launch-center > p {
        font-size: 1rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .tokenomics-item,
    .launch-feature,
    .stat-item {
        padding: 1.5rem;
    }
}