/* Futurama Style CSS - Mysterious & Futuristic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #0a0a0a;
    overflow-x: hidden;
    color: #ffffff;
}

/* Landing Page Styles */
.landing-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 40%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 255, 0, 0.1) 0%, transparent 50%);
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

@keyframes floatContained {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes logoShadow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.8)) 
                drop-shadow(0 0 40px rgba(0, 255, 255, 0.3));
    }
}

.classified-container {
    text-align: center;
    z-index: 2;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.classified-background {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid #00ffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.3),
        0 0 40px rgba(0, 255, 255, 0.1),
        0 20px 40px rgba(0,0,0,0.8);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.classified-background::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #00ff00, #ff8000);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.classified-header {
    margin-bottom: 40px;
}

.security-clearance {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    font-family: 'Orbitron', monospace;
}

.clearance-level {
    background: #ff0000;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    border: 2px solid #ffffff;
    animation: blink 2s infinite;
}

.clearance-code {
    background: #000000;
    color: #00ffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 2px solid #00ffff;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.project-codename {
    text-align: center;
}

.classified-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 30px #00ffff;
    margin-bottom: 15px;
    animation: glow 2s ease-in-out infinite alternate;
    letter-spacing: 3px;
}

@keyframes glow {
    from { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff; }
    to { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

.classified-subtitle {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
    letter-spacing: 1px;
}

.countdown-container {
    margin-bottom: 40px;
    animation: fadeIn 1s ease-out 0.6s both;
}

.countdown-container h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px #ffffff;
    letter-spacing: 2px;
}

.countdown-description {
    font-size: 1rem;
    color: #00ffff;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.time-block {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    color: #00ffff;
    padding: 25px 20px;
    border-radius: 15px;
    min-width: 130px;
    text-align: center;
    border: 2px solid #00ffff;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.3),
        inset 0 0 15px rgba(0, 255, 255, 0.1);
    animation: scaleIn 0.5s ease-out;
    transform-origin: center;
    position: relative;
    overflow: hidden;
}

.time-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    animation: scan 3s infinite;
}

@keyframes scan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.time-block:nth-child(1) { animation-delay: 0.7s; }
.time-block:nth-child(2) { animation-delay: 0.8s; }
.time-block:nth-child(3) { animation-delay: 0.9s; }
.time-block:nth-child(4) { animation-delay: 1.0s; }

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.time-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px #00ffff;
    margin-bottom: 5px;
}

.time-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.launch-info {
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 1.2s both;
}

.launch-info p {
    font-size: 1.1rem;
    color: #ffffff;
    margin: 8px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.warning-notice {
    background: rgba(255, 0, 0, 0.1);
    border: 2px solid #ff0000;
    border-radius: 15px;
    padding: 20px;
    animation: slideInUp 1s ease-out 1.4s both;
}

.warning-notice p {
    font-size: 0.9rem;
    color: #ff6666;
    margin: 5px 0;
    font-weight: 400;
}

/* Main Page Styles */
.main-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.main-page.hidden {
    display: none;
}

.futurama-header {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    padding: 50px 0;
    text-align: center;
    border-bottom: 3px solid #00ffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    position: relative;
}

.futurama-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-logo {
    width: 336px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
    animation: logoShadow 3s ease-in-out infinite;
}



.logo-reveal {
    text-align: left;
}

.revealed-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    color: #00ffff;
    text-shadow: 
        0 0 10px #00ffff,
        0 0 20px #00ffff;
    margin-bottom: 10px;
    animation: revealGlow 2s ease-in-out infinite alternate;
    letter-spacing: 2px;
}

@keyframes revealGlow {
    from { text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff; }
    to { text-shadow: 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff; }
}

.revealed-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 300;
    letter-spacing: 1px;
}

.contract-address-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    padding: 12px 18px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contract-address-container:hover {
    background: rgba(0, 255, 255, 0.15);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.ca-label {
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    color: #00ffff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    font-family: 'Exo 2', monospace;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
    user-select: all;
    cursor: text;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.2);
}

.copy-ca-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: none;
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.copy-ca-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.copy-ca-btn:hover::before {
    left: 100%;
}

.copy-ca-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.copy-ca-btn:active {
    transform: scale(0.95);
}

.copy-icon {
    width: 16px;
    height: 16px;
    stroke: #000;
    stroke-width: 2;
    fill: none;
}

/* Copy Success Animation */
.copy-ca-btn.copied {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    animation: copySuccess 0.6s ease-in-out;
}

@keyframes copySuccess {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.main-content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out;
}

.hero-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #888;
    margin-bottom: 40px;
    font-weight: 300;
    font-style: italic;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.futurama-button {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #00ffff;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.futurama-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.futurama-button:hover::before {
    left: 100%;
}

.futurama-button.primary {
    background: linear-gradient(145deg, #00ffff, #0080ff);
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.futurama-button.secondary {
    background: transparent;
    color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
}

.futurama-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.4);
}

.futurama-button:active {
    transform: translateY(0);
}

/* Classified Section */
.classified-section {
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.classified-card .card-icon {
    animation: floatContained 3s ease-in-out infinite;
    overflow: hidden;
}

.leak-image-container {
    text-align: center;
    margin-bottom: 30px;
    animation: imageGlow 3s ease-in-out infinite alternate;
    position: relative;
}

.leak-image {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.leak-image:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0, 255, 255, 0.4));
}

.speech-bubble {
    position: absolute;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.3),
        0 15px 30px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    width: 280px;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid #00ffff;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
}

.speech-bubble::before {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 13px solid #16213e;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.bubble-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.2));
}

.leak-image-container:hover .speech-bubble {
    opacity: 1;
    visibility: visible;
    left: -98px;
}

@keyframes imageGlow {
    0% {
        filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
    }
}

.classified-section h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

.classified-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.classified-card {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.classified-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.classified-card:hover::before {
    transform: translateX(100%);
}

.classified-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.9),
        0 0 30px rgba(0, 255, 255, 0.3);
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
    overflow: visible;
}

.classified-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
    letter-spacing: 1px;
}

.classified-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 400;
    min-height: 3.2em; /* 2 Zeilen * 1.6 line-height = 3.2em */
}

/* Tokenomics Section */
.tokenomics-section {
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.tokenomics-section h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tokenomics-card {
    background: linear-gradient(145deg, #16213e, #0f3460);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
    position: relative;
}

.tokenomics-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.9),
        0 0 30px rgba(0, 255, 255, 0.3);
}

.big-number {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffff;
    margin: 20px 0;
    text-shadow: 0 0 10px #00ffff;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Features Section */
.features-section {
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.features-section h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #0f3460, #16213e);
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    color: #ffffff;
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(0, 255, 255, 0.1);
    transition: all 0.3s ease;
    animation: slideInRight 0.8s ease-out;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 
        0 25px 50px rgba(0,0,0,0.9),
        0 0 30px rgba(0, 255, 255, 0.3);
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 400;
}

/* Roadmap Section */
.roadmap-section {
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.roadmap-section h2 {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.roadmap-item {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    color: #ffffff;
    border: 2px solid #00ffff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    position: relative;
    animation: zoomIn 0.8s ease-out;
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(0, 255, 255, 0.1);
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.roadmap-phase {
    background: linear-gradient(145deg, #00ffff, #0080ff);
    color: #000000;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
    border: 2px solid #ffffff;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.roadmap-item h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
    letter-spacing: 1px;
}

.roadmap-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    font-weight: 400;
}

/* Community Section */
.community-section {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.community-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    color: #00ffff;
    margin-bottom: 50px;
    text-shadow: 0 0 15px #00ffff;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    background: linear-gradient(145deg, #00ffff, #0080ff);
    color: #000000;
    padding: 18px 35px;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: bounceIn 0.8s ease-out;
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.5);
    background: linear-gradient(145deg, #0080ff, #00ffff);
}

/* Footer */
.futurama-footer {
    background: linear-gradient(135deg, #000000, #1a1a1a);
    color: #00ffff;
    text-align: center;
    padding: 40px;
    border-top: 3px solid #00ffff;
    animation: slideInUp 1s ease-out 1.8s both;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.8);
}

.futurama-footer p {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Animation Classes */
.hidden {
    display: none !important;
}

@keyframes fadeInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .classified-title {
        font-size: 2.5rem;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .time-block {
        min-width: 100px;
        padding: 20px 15px;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .classified-background {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .classified-grid,
    .tokenomics-grid,
    .features-grid,
    .roadmap-timeline {
        grid-template-columns: 1fr;
    }
    
    .security-clearance {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .contract-address-container {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        text-align: center;
    }
    
    .contract-address {
        font-size: 0.8rem;
        padding: 8px 15px;
        word-break: break-all;
        max-width: 100%;
    }
    
    .copy-ca-btn {
        width: 36px;
        height: 36px;
    }
    
    .copy-icon {
        width: 18px;
        height: 18px;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.loaded {
    opacity: 1;
}

/* Particle Effects */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00ffff;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* PDF Popup Styles */
.pdf-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.pdf-popup-overlay.active {
    opacity: 1;
}

.pdf-popup {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border: 2px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.3), inset 0 0 50px rgba(0, 255, 255, 0.1);
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
}

.pdf-popup-overlay.active .pdf-popup {
    transform: scale(1);
}

.pdf-popup-header {
    background: linear-gradient(90deg, #00ffff, #00ffff);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #00ffff;
}

.pdf-popup-header h3 {
    color: #000;
    margin: 0;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.close-popup-btn {
    background: none;
    border: none;
    color: #000;
    font-size: 28px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.close-popup-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
}

.pdf-viewer {
    padding: 20px;
    background: #0a0a0a;
}

.pdf-page-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #333;
}

.pdf-page-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 255, 255, 0.9);
    border: 2px solid #00ffff;
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.page-nav-btn:hover {
    background: rgba(0, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.page-nav-btn.disabled {
    background: rgba(100, 100, 100, 0.5);
    border-color: #666;
    cursor: not-allowed;
    box-shadow: none;
}

.page-nav-btn.disabled:hover {
    transform: translateY(-50%) scale(1);
    background: rgba(100, 100, 100, 0.5);
}

.left-nav {
    left: -70px;
}

.right-nav {
    right: -70px;
}

.pdf-canvas {
    border: 1px solid #00ffff;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    max-width: 100%;
    height: auto;
}

.pdf-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #333;
}

.nav-btn {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    border: none;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.nav-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.page-info {
    color: #00ffff;
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Responsive Design für PDF Popup */
@media (max-width: 768px) {
    .pdf-popup {
        width: 95vw;
        max-height: 95vh;
    }
    
    .pdf-popup-header {
        padding: 15px;
    }
    
    .pdf-popup-header h3 {
        font-size: 16px;
    }
    
    .pdf-viewer {
        padding: 15px;
    }
    
    .pdf-navigation {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* Seitliche Navigationspfeile auf mobilen Geräten anpassen */
    .page-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .left-nav {
        left: -50px;
    }
    
    .right-nav {
        right: -50px;
    }
}
