:root {
    --primary-color: #2a2d3e;
    --secondary-color: #1a1c2a;
    --accent-color: #6c63ff;
    --text-color: #ffffff;
    --glow-color: #8a7fff;
}

.dark-theme {
    background: var(--secondary-color);
    color: var(--text-color);
}

/* Navbar Styling */
.navbar {
    background: rgba(26, 28, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-link {
    position: relative;
    margin: 0 1rem;
    padding: 0.5rem 0;
}

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

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

/* Glowing Effects */
.glow-text {
    text-shadow: 0 0 10px var(--glow-color),
                 0 0 20px var(--glow-color),
                 0 0 30px var(--glow-color);
}

.hover-glow {
    transition: all 0.3s ease;
}

.hover-glow:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    overflow: hidden;
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('stars.png');
    animation: stars-move 100s linear infinite;
}

/* Roadmap Cards */
.roadmap-card {
    perspective: 1000px;
    height: 400px;
    margin: 2rem 0;
    text-align: center;
}

.card-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.8s;
}

.card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: rgba(42, 45, 62, 0.8);
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.card-front ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.card-front ul li {
    margin: 0.8rem 0;
}

.roadmap-card:hover .card-3d {
    transform: none;
}

.roadmap-card.animate .card-3d {
    transform: rotateY(10deg);
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

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

@keyframes stars-move {
    from { background-position: 0 0; }
    to { background-position: 10000px 0; }
}

/* Updated Navbar Styles */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

/* Speziell für das X-Logo */
.social-links a:first-child {
    font-weight: bold;
    font-size: 1.4rem; /* Etwas größer für bessere Sichtbarkeit */
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* Hero Section Updates */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.coin-container {
    width: 200px;
    height: 200px;
    margin-bottom: 2rem;
}

.floating-coin {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: floatingCoin 3s ease-in-out infinite;
}

.token-info {
    margin-top: 2rem;
    background: rgba(42, 45, 62, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(5px);
}

.token-address-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    transform: scale(1.1);
}

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

/* Responsive Updates */
@media (max-width: 768px) {
    .navbar-collapse {
        background: rgba(26, 28, 42, 0.98);
        padding: 1rem;
        border-radius: 10px;
    }
    
    .social-links {
        margin: 1rem 0;
        justify-content: center;
    }
    
    .coin-container {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    .token-info {
        margin-top: 1rem;
        padding: 1rem;
        width: 100%;
    }

    .address-box {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .address-box code {
        font-size: 0.75rem;
        max-width: 100%;
        word-break: break-all;
        text-align: center;
        padding: 0.5rem;
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        display: block;
        width: 100%;
    }

    .copy-btn {
        width: 100%;
        padding: 0.5rem;
        background: rgba(108, 99, 255, 0.1);
        border-radius: 4px;
    }

    .copy-notification {
        bottom: 10px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    /* Hero Content Mobile Optimization */
    .hero-content {
        padding-top: 4rem;
        min-height: auto;
        padding-bottom: 2rem;
        justify-content: flex-start;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Token Info Mobile Adjustments */
    .token-stats {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.5rem 1rem;
        min-width: 100px;
    }
}

/* Zusätzliche Anpassungen für sehr kleine Bildschirme */
@media (max-width: 360px) {
    .hero-content {
        padding-top: 3rem;
    }

    .coin-container {
        width: 80px;
        height: 80px;
    }
}

.address-box code {
    font-size: 0.9rem;
    word-break: break-all;
    max-width: 300px;
    display: inline-block;
}

/* Copy Notification Styles */
.copy-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.copy-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Section Styles Update */
.section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* How to Buy Section Update */
.steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto;
}

.step {
    background: rgba(42, 45, 62, 0.8);
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    padding: 2rem;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.step i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.step-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--accent-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.step-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.exchange-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-link i {
    font-size: 0.9rem;
    margin-left: 0.5rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .steps {
        padding: 0 1rem;
    }
    
    .step {
        padding: 1.5rem;
    }
}

/* Footer Update */
footer {
    text-align: center;
    padding: 3rem 1rem;
    background: rgba(26, 28, 42, 0.98);
}

footer .social-links {
    justify-content: center;
    margin: 0 0 1.5rem 0;
}

/* Token Stats Styling */
.token-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(42, 45, 62, 0.8);
    padding: 1rem 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(5px);
    min-width: 150px;
    text-align: center;
}

.stat-item h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stat-item p {
    font-size: 1.2rem;
    margin: 0;
}

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

.feature-card {
    background: rgba(42, 45, 62, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(108, 99, 255, 0.2);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ccc;
}

/* Tokenomics Section */
.tokenomics-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tokenomics-card {
    background: rgba(42, 45, 62, 0.8);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(5px);
}

.tokenomics-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.tokenomics-card ul {
    list-style: none;
    padding: 0;
}

.tokenomics-card li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tokenomics-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .token-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1.5rem;
        min-width: 120px;
    }
    
    .stat-item h3 {
        font-size: 1rem;
    }
    
    .stat-item p {
        font-size: 1.1rem;
    }
}

/* About Section Styling */
.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
}

.about-image {
    flex: 1;
    max-width: 400px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 20px rgba(108, 99, 255, 0.3));
}

.about-content {
    flex: 2;
    text-align: left;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.about-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(42, 45, 62, 0.8);
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(5px);
}

.highlight i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.highlight span {
    font-weight: bold;
    color: var(--text-color);
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        max-width: 300px;
    }

    .about-content {
        text-align: center;
    }

    .about-highlights {
        justify-content: center;
    }
}

/* Twinkling Stars Animation */
.twinkling-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    top: var(--top);
    left: var(--left);
    animation: twinkle 4s infinite;
    animation-delay: var(--delay);
}

.star::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translate(-50%, -50%);
    animation: twinkle-glow 4s infinite;
    animation-delay: var(--delay);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes twinkle-glow {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(3);
        box-shadow: 
            0 0 4px var(--glow-color),
            0 0 8px var(--glow-color),
            0 0 12px var(--accent-color);
    }
}

/* Shooting Star Animation */
.rocket {
    position: absolute;
    font-size: 1.5rem;
    color: var(--accent-color);
    transform: rotate(-45deg);
    filter: drop-shadow(0 0 10px var(--glow-color));
    opacity: 0;
    animation: shoot-star 10s linear infinite;
}

.rocket::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--accent-color), transparent);
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    filter: blur(2px);
    opacity: 0.8;
}

@keyframes shoot-star {
    0% {
        left: 10%;
        top: 10%;
        opacity: 0;
        transform: rotate(-15deg) scale(0.5);
    }
    5% {
        opacity: 1;
        transform: rotate(-15deg) scale(1);
    }
    45% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
    50% {
        left: 90%;
        top: 80%;
        opacity: 0;
        transform: rotate(-45deg) scale(0.5);
    }
    100% {
        left: 90%;
        top: 80%;
        opacity: 0;
        transform: rotate(-45deg) scale(0.5);
    }
}

/* Update für die How to Buy Section */
#how-to-buy {
    position: relative;
    overflow: hidden;
    /* background: linear-gradient(45deg, var(--primary-color), var(--secondary-color)); */
}

#how-to-buy .steps {
    position: relative;
    z-index: 1;
}

#how-to-buy h2 {
    position: relative;
    z-index: 1;
}

/* Language Selector Styling */
.language-selector {
    position: relative;
    margin-left: 1.5rem;
}

.language-btn {
    background: none;
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.language-btn i {
    font-size: 1.2rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(42, 45, 62, 0.95);
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 0.5rem;
    min-width: 150px;
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.language-dropdown a:hover {
    background: rgba(108, 99, 255, 0.1);
    color: var(--accent-color);
}

.language-dropdown a.active {
    color: var(--accent-color);
}

.language-dropdown a i {
    opacity: 0;
    width: 0;
    transition: all 0.3s ease;
}

.language-dropdown a.active i {
    opacity: 1;
    width: auto;
}

@media (max-width: 768px) {
    .language-selector {
        margin: 1rem 0;
    }
    
    .language-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        width: 100%;
    }
}

.special-card {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.mysterious {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color)) !important;
    border: 3px solid var(--accent-color) !important;
    box-shadow: 0 0 30px rgba(108, 99, 255, 0.3);
}

.mystery-icon {
    font-size: 3rem !important;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.countdown {
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--accent-color);
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

.mysterious::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    animation: borderPulse 3s infinite;
    opacity: 0.5;
}

@keyframes borderPulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
} 