/* Global Styles */
:root {
    --primary-color: #4D0DA6;
    --primary-hover: #350973;
    --secondary-color: #6446A6;
    --accent-color: #4D0DA6;
    --text-color: #ffffff;
    --light-text: #ffffff;
    --dark-text: #1A1A1A;
    --bg-color: #1E0E40;
    --dark-bg: #0E0726;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --card-hover: rgba(255, 255, 255, 0.1);
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --glow-primary: 0 0 20px rgba(77, 13, 166, 0.3);
}

/* Global background decorations */
.global-ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-image: url('../images/bgimage/ambient brackground.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
}

.global-spiral-bg {
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: -1;
    background-image: url('../images/bgimage/spiral background.png');
    background-size: contain;
    background-position: right top;
    background-repeat: no-repeat;
    opacity: 0.4;
}

.global-spiral-bg-2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 80%;
    z-index: -1;
    background-image: url('../images/bgimage/spiral background 2.png');
    background-size: contain;
    background-position: left bottom;
    background-repeat: no-repeat;
    opacity: 0.3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: #0E0726;
    background-image: url('../images/bgimage/ambient brackground.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: #ffffff;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #4D0DA6, #6446A6);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #6446A6, #4D0DA6);
}

.highlight {
    color: #6446A6;
}

/* Announcement Bar */
.announcement-bar {
    background-color: rgba(26, 15, 60, 0.7);
    padding: 10px 0;
    backdrop-filter: blur(5px);
}

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

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

.social-icons a {
    color: #ffffff;
    font-size: 14px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b6b;
}

/* Header Styles */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(14, 7, 38, 0.7);
    backdrop-filter: blur(10px);
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 40px;
}

.nav-links ul {
    display: flex;
    gap: 30px;
}

.nav-links ul li a {
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links ul li a:hover {
    color: #ff6b6b;
}

.fa-bars {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Mobile Navigation Styles */
.mobile-nav-buttons {
    display: none;
}

.mobile-nav-buttons .btn {
    width: 100%;
    text-align: center;
}

/* Hero Section */
#hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #b8b8b8;
}

.search-container {
    display: flex;
    max-width: 500px;
}

.search-container input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    outline: none;
    font-size: 16px;
}

.search-container button {
    padding: 15px 30px;
    background: linear-gradient(90deg, #4D0DA6, #6446A6);
    border: none;
    border-radius: 0 50px 50px 0;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-container button:hover {
    background: linear-gradient(90deg, #6446A6, #4D0DA6);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 400px;
    animation: rocketFloat 8s ease-in-out infinite;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.hero-decoration.purple-planet {
    right: 5%;
    bottom: 10%;
    width: 180px;
    animation: float 15s ease-in-out infinite;
}

.hero-decoration.fire-planet {
    left: 10%;
    bottom: 20%;
    width: 80px;
    animation: float 8s ease-in-out infinite;
}

.hero-decoration.left-spiral {
    left: -5%;
    top: 0;
    width: 30%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
}

.hero-decoration.left-spiral img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-decoration.right-spiral {
    right: -5%;
    top: 0;
    width: 30%;
    height: 100%;
    opacity: 0.6;
    z-index: -1;
}

.hero-decoration.right-spiral img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

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

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

/* Partners Section */
#partners {
    padding: 40px 0;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

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

.partner-logo img {
    max-width: 100%;
    height: auto;
}

/* About Us Section */
#about {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.about-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.about-card {
    flex: 1;
    background: linear-gradient(145deg, rgba(44, 18, 89, 0.7), rgba(26, 11, 60, 0.7));
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(77, 13, 166, 0.5), rgba(100, 70, 166, 0.5));
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(77, 13, 166, 0.3);
}

.card-icon i {
    font-size: 40px;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.card-icon img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.about-card p {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: #ff6b6b;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #ff9f43;
}

.card-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    opacity: 0.8;
}

.card-decoration img {
    width: 80px;
    height: auto;
}

.about-decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.7;
}

.about-decoration.left-planet {
    left: -50px;
    top: 150px;
    animation: float 8s ease-in-out infinite;
}

.about-decoration.left-planet img {
    width: 180px;
    height: auto;
}

.about-decoration.right-planet {
    right: -30px;
    top: 250px;
    animation: ufoFloat 10s ease-in-out infinite;
}

.about-decoration.right-planet img {
    width: 120px;
    height: auto;
}

/* Mission & Vision Section */
#mission-vision {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mission-content, .vision-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.mission-content {
    flex-direction: row-reverse;
}

.mission-image, .vision-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.planet-with-logo {
    position: relative;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

.planet-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.5));
}

.logo-overlay {
    position: absolute;
    width: 25%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vision-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.5));
    animation: float 6s ease-in-out infinite;
}

.mission-text, .vision-text {
    flex: 1;
    padding-right: 20px;
}

.mission-text h3, .vision-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.mission-text p, .vision-text p {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 20px;
    line-height: 1.7;
}

.highlight-text {
    font-size: 20px !important;
    font-weight: 600;
    color: #ffffff !important;
    margin: 25px 0;
    border-left: 3px solid #ff6b6b;
    padding-left: 15px;
}

.mission-decoration {
    position: absolute;
    z-index: 1;
}

.mission-decoration.astronaut-left {
    left: 0;
    top: 50px;
    width: 90px;
    z-index: 2;
    animation: float 8s ease-in-out infinite;
}

.mission-decoration.ufo-right {
    right: 50px;
    top: 100px;
    width: 50px;
    z-index: 2;
    animation: ufoFloat 10s ease-in-out infinite;
}

.mission-decoration.top-right-rocket {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    z-index: 2;
    animation: rocketFloat 8s ease-in-out infinite;
}

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

/* Wallet Connection Section */
#wallet-connection {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.wallet-connection-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.wallet-card {
    background: rgba(31, 19, 51, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.wallet-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wallet-option {
    background: rgba(41, 26, 66, 0.6);
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.wallet-info {
    display: flex;
    flex-direction: column;
}

.wallet-label {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 5px;
}

.wallet-amount {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 2px;
}

.wallet-usd {
    font-size: 12px;
    color: #a0a0a0;
}

.wallet-currency {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.currency-selector {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-selector:hover {
    background: rgba(255, 255, 255, 0.2);
}

.currency-selector img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.wallet-balance {
    font-size: 12px;
    color: #a0a0a0;
    margin-top: 5px;
}

.swap-icon {
    display: flex;
    justify-content: center;
    margin: -10px 0;
    position: relative;
    z-index: 3;
}

.swap-button {
    background: rgba(41, 26, 66, 0.8);
    border: 3px solid rgba(15, 5, 38, 0.6);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.swap-button:hover {
    background: rgba(58, 37, 87, 0.8);
}

.swap-button i {
    color: #ffffff;
    font-size: 16px;
}

.connect-wallet-btn {
    background: linear-gradient(90deg, #4D0DA6, #6446A6);
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.connect-wallet-btn:hover {
    background: linear-gradient(90deg, #6446A6, #4D0DA6);
    transform: translateY(-2px);
}

.wallet-actions {
    margin-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.action-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-item:hover {
    color: #a04cff;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-methods img {
    width: 20px;
    height: 20px;
    opacity: 0.7;
}

.wallet-decoration {
    position: absolute;
    z-index: 1;
}

.wallet-decoration.left-planet {
    left: 0;
    top: 25%;
    width: 150px;
    opacity: 0.8;
    animation: planetFloat 15s ease-in-out infinite;
}

.wallet-decoration.doshiba-astronaut {
    right: 10%;
    top: 10%;
    width: 100px;
    z-index: 2;
    animation: astronautFloat 8s ease-in-out infinite;
}

.wallet-decoration.fire-planet {
    left: 10%;
    bottom: 10%;
    width: 80px;
    animation: planetFloat 10s ease-in-out infinite;
}

.wallet-decoration.ufo {
    right: 5%;
    bottom: 30%;
    width: 60px;
    z-index: 2;
    animation: ufoFloat 12s ease-in-out infinite;
}

@keyframes astronautFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes planetFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

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

@keyframes handFloat {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

/* Presale Section */
#presale {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.presale-header {
    text-align: center;
    margin-bottom: 50px;
}

.presale-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.presale-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #b8b8b8;
}

/* Token Addresses Card */
.token-addresses-card {
    background: linear-gradient(145deg, rgba(44, 18, 89, 0.7), rgba(26, 11, 60, 0.7));
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 100%;
    backdrop-filter: blur(5px);
}

.token-addresses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.token-addresses-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
}

.hide-addresses-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.token-address-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-address-item:last-child {
    border-bottom: none;
}

.token-icon-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.token-icon {
    width: 40px;
    height: 40px;
    background-color: #ff6b6b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-icon img {
    width: 30px;
    height: 30px;
}

.token-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.token-info p {
    font-size: 14px;
    color: #b8b8b8;
}

.token-value {
    display: flex;
    align-items: center;
    gap: 20px;
}

.token-address {
    font-size: 16px;
    color: #b8b8b8;
}

.copy-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    padding: 8px 15px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.presale-content {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.presale-left, .presale-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.presale-info-card {
    background: linear-gradient(145deg, rgba(44, 18, 89, 0.7), rgba(26, 11, 60, 0.7));
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.presale-info-item {
    margin-bottom: 25px;
    position: relative;
    padding-left: 30px;
}

.arrow-icon {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #ff6b6b;
}

.presale-info-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.presale-info-item p {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 5px;
}

.social-follow {
    margin-top: 40px;
}

.social-follow p {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.social-icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-icon-circle:hover {
    background-color: #ff6b6b;
}

.social-icon-circle img {
    width: 20px;
    height: 20px;
}

.right-card {
    position: relative;
    padding-left: 50px;
}

.bullet-point {
    position: absolute;
    left: 20px;
    top: 30px;
    width: 12px;
    height: 12px;
    background-color: #ff6b6b;
    border-radius: 50%;
}

.right-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.presale-steps p {
    font-size: 16px;
    color: #b8b8b8;
    margin-bottom: 15px;
}

.presale-decoration {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
}

.left-planet {
    left: -100px;
    top: 100px;
}

.right-planet {
    right: -100px;
    top: 300px;
}

.bottom-planet {
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

/* Footer */
footer {
    background-color: rgba(26, 15, 60, 0.7);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section {
    flex: 0 0 200px;
}

.footer-logo {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.footer-contact {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-email {
    color: #b8b8b8;
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-links-section {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-column p {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    max-width: 100%;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: #7b4cff;
    border: none;
    border-radius: 0 5px 5px 0;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #9066ff;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #b8b8b8;
    font-size: 14px;
}

.footer-decoration {
    position: absolute;
    z-index: 1;
}

.footer-decoration.moon {
    top: 50px;
    right: 50px;
    width: 80px;
    opacity: 0.8;
}

.footer-decoration.astronaut {
    bottom: 0;
    right: 120px;
    width: 120px;
}

/* Responsive styles for footer */
@media screen and (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo-section {
        margin-bottom: 30px;
    }
    
    .footer-links-section {
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 15px);
        margin-bottom: 30px;
    }
    
    .footer-decoration.astronaut {
        width: 100px;
        right: 50px;
    }
}

@media screen and (max-width: 768px) {
    .footer-links-section {
        flex-direction: column;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
    
    .footer-decoration.moon {
        width: 60px;
        top: 30px;
        right: 30px;
    }
    
    .footer-decoration.astronaut {
        width: 80px;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text {
        order: 1;
    }
    
    .search-container {
        margin: 0 auto;
    }
    
    .hero-decoration.purple-planet {
        width: 140px;
        right: 2%;
    }
    
    .hero-decoration.astronaut-rocket {
        width: 100px;
    }
    
    .hero-decoration.fire-planet {
        width: 60px;
    }
    
    .presale-content {
        flex-direction: column;
    }
    
    .token-value {
        flex-direction: column;
        gap: 10px;
    }
    
    .token-address {
        font-size: 14px;
    }
    
    .about-cards {
        flex-direction: column;
    }
    
    .about-card {
        margin-bottom: 30px;
    }
    
    .mission-content, .vision-content {
        flex-direction: column;
    }
    
    .mission-text, .vision-text {
        order: 1;
    }
    
    .highlight-text {
        font-size: 18px !important;
    }
    
    .mission-decoration {
        display: none;
    }
    
    .wallet-decoration {
        display: none;
    }
    
    .tokenomics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tokenomics-decoration {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: #1a0f3c;
        flex-direction: column;
        padding: 80px 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
    }
    
    .fa-bars {
        display: block;
    }
    
    /* Nav buttons responsive */
    .nav-buttons {
        display: none;
    }
    
    /* Add wallet button to mobile menu */
    .nav-links.active .mobile-nav-buttons {
        display: block;
        margin-top: 30px;
    }
    
    #hero {
        padding: 50px 0;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text p {
        font-size: 16px;
    }
    
    .search-container {
        max-width: 100%;
    }
    
    .search-container input {
        padding: 12px 15px;
    }
    
    .search-container button {
        padding: 12px 20px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-logo {
        margin-bottom: 20px;
    }
    
    /* Wallet Connection Responsive */
    .wallet-card {
        padding: 20px;
    }
    
    .wallet-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .wallet-currency {
        align-items: flex-start;
        margin-top: 10px;
    }
    
    /* Tokenomics Responsive */
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .token-distribution-title {
        font-size: 24px;
    }
    
    /* Mobile nav buttons */
    .mobile-nav-buttons {
        display: block;
    }
}

@media screen and (max-width: 576px) {
    #hero {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-text p {
        font-size: 14px;
    }
    
    .token-address-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .token-value {
        margin-top: 10px;
        width: 100%;
    }
    
    .token-addresses-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .presale-header h2 {
        font-size: 26px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Wallet Connection Responsive */
    .wallet-actions .action-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .payment-methods {
        margin-top: 5px;
    }
    
    /* Tokenomics Responsive */
    .tokenomics-description {
        font-size: 16px;
    }
    
    .tokenomics-card {
        padding: 15px;
    }
    
    .tokenomics-card h4 {
        font-size: 16px;
    }
    
    .token-amount {
        font-size: 12px;
    }
    
    /* Section spacing */
    section {
        padding: 40px 0 !important;
    }
    
    .section-title {
        font-size: 26px !important;
        margin-bottom: 20px !important;
    }
}

/* Tokenomics Section */
#tokenomics {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tokenomics-description {
    text-align: center;
    font-size: 18px;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.token-distribution-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
    letter-spacing: 1px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.tokenomics-card {
    background: rgba(41, 26, 66, 0.6);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.tokenomics-card:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}

.tokenomics-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0 100% 0 0;
    pointer-events: none;
}

.tokenomics-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #7b4cff, #a04cff);
    border-radius: 5px;
}

.percentage {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.token-amount {
    font-size: 14px;
    color: #a0a0a0;
}

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

.tokenomics-info p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

.tokenomics-decoration {
    position: absolute;
    z-index: 1;
}

.tokenomics-decoration.left-astronaut {
    left: 0;
    bottom: 0;
    width: 200px;
    z-index: 1;
}

.tokenomics-decoration.right-planet {
    right: 0;
    bottom: 0;
    width: 250px;
    z-index: 1;
}

.tokenomics-decoration.floating-hand {
    right: 15%;
    top: 20%;
    width: 80px;
    animation: handFloat 6s ease-in-out infinite;
}

.tokenomics-decoration.small-planet {
    left: 10%;
    top: 15%;
    width: 100px;
    animation: planetFloat 15s ease-in-out infinite;
}

@keyframes handFloat {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(-5deg);
    }
}

@keyframes planetFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Tax Fees Section */
#tax-fees {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.tax-fees-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #ffffff;
}

.tax-fees-table {
    background-color: rgba(41, 26, 66, 0.4);
    border-radius: 15px;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
}

.tax-fees-header {
    display: flex;
    background-color: rgba(30, 18, 51, 0.6);
    padding: 20px 0;
}

.tax-fees-row {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tax-fees-row:last-child {
    border-bottom: none;
}

.tax-fees-col {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
}

.doshiba-col {
    justify-content: center;
}

.doshiba-mascot {
    max-width: 80px;
}

.buy-badge, .sell-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.buy-badge img, .sell-badge img {
    width: 40px;
    height: 40px;
}

.buy-badge span {
    color: #14C2A3;
    font-weight: 700;
    font-size: 18px;
}

.sell-badge span {
    color: #FF6B6B;
    font-weight: 700;
    font-size: 18px;
}

.fee-type {
    display: flex;
    align-items: center;
    gap: 15px;
}

.fee-type img {
    width: 24px;
    height: 24px;
}

.fee-type span {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

.tax-fees-col p {
    color: #b8b8b8;
    font-size: 14px;
    line-height: 1.5;
}

.tax-fees-decoration {
    position: absolute;
    z-index: 1;
}

.tax-fees-decoration.right-planet {
    top: 30px;
    right: 30px;
    width: 120px;
}

.tax-fees-decoration.bottom-swirl {
    bottom: -200px;
    right: -200px;
    width: 500px;
    opacity: 0.5;
    z-index: 0;
}

/* Responsive styles for tax fees section */
@media screen and (max-width: 992px) {
    .tax-fees-table {
        max-width: 90%;
    }
    
    .tax-fees-decoration.right-planet {
        width: 80px;
    }
}

@media screen and (max-width: 768px) {
    .tax-fees-header, .tax-fees-row {
        flex-direction: column;
    }
    
    .tax-fees-col {
        padding: 15px;
        justify-content: center;
        text-align: center;
    }
    
    .fee-type {
        justify-content: center;
    }
    
    .tax-fees-decoration.right-planet {
        display: none;
    }
}

/* FAQ Section */
#faq {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.faq-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.faq-subtitle {
    text-align: center;
    font-size: 16px;
    color: #b8b8b8;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background-color: rgba(41, 26, 66, 0.4);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
}

.faq-item:hover {
    background-color: rgba(41, 26, 66, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
    background-color: rgba(41, 26, 66, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover h3 {
    color: #a04cff;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-toggle {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.faq-toggle:focus {
    outline: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust based on content */
    padding-bottom: 20px;
}

.faq-answer p {
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.faq-decoration {
    position: absolute;
    z-index: 1;
}

.faq-decoration.left-ufo {
    bottom: 50px;
    left: 50px;
    width: 120px;
    animation: ufoFloat 8s ease-in-out infinite;
}

@keyframes ufoFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Responsive styles for FAQ section */
@media screen and (max-width: 992px) {
    .faq-container {
        max-width: 90%;
    }
    
    .faq-decoration.left-ufo {
        width: 100px;
    }
}

@media screen and (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }
    
    .faq-subtitle {
        font-size: 14px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-decoration.left-ufo {
        width: 80px;
        left: 20px;
    }
}

/* Mobile Menu Overlay */
.body-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    transition: opacity 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

/* Staking Marketcap Section */
#staking-marketcap {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.staking-table-container {
    margin-top: 40px;
    background: rgba(30, 18, 51, 0.6);
    border-radius: 15px;
    padding: 10px;
    overflow-x: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(100, 70, 166, 0.3);
}

.staking-table {
    width: 100%;
    border-collapse: collapse;
}

.staking-table th {
    padding: 15px 10px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.staking-table td {
    padding: 20px 10px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
    vertical-align: middle;
}

.staking-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.asset-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.asset-info img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.asset-name {
    display: flex;
    flex-direction: column;
}

.token-name {
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.token-symbol {
    font-size: 12px;
    color: #a0a0a0;
}

.negative-change {
    color: #ff6b6b;
    background-color: rgba(255, 107, 107, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.price-chart {
    width: 100px;
    height: 30px;
}

.price-chart img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.add-token-btn {
    background-color: #4D0DA6;
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-token-btn:hover {
    background-color: #6446A6;
    transform: translateY(-2px);
}

.show-more-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.show-more-btn {
    background-color: #4D0DA6;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background-color: #6446A6;
    transform: translateY(-2px);
}

.show-more-btn i {
    font-size: 14px;
}

/* Responsive styles for Staking Marketcap */
@media screen and (max-width: 992px) {
    .staking-table-container {
        padding: 5px;
    }
    
    .staking-table th,
    .staking-table td {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    .token-name {
        font-size: 14px;
    }
    
    .token-symbol {
        font-size: 11px;
    }
    
    .price-chart {
        width: 80px;
    }
}

@media screen and (max-width: 768px) {
    .staking-table th:nth-child(5),
    .staking-table th:nth-child(6),
    .staking-table th:nth-child(7),
    .staking-table th:nth-child(8),
    .staking-table td:nth-child(5),
    .staking-table td:nth-child(6),
    .staking-table td:nth-child(7),
    .staking-table td:nth-child(8) {
        display: none;
    }
}

