@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

body {
    background: linear-gradient(135deg, #0a0a2e 0%, #1a1a3a 50%, #0a0a2e 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(135, 206, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(173, 216, 230, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: snow-bg 15s ease-in-out infinite;
}

@keyframes snow-bg {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Header */
.header {
    background: rgba(10, 10, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-bottom: 1px solid #4a90e2;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(74, 144, 226, 0.2);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -1px;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
    animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(74, 144, 226, 0.8); }
    50% { text-shadow: 0 0 30px rgba(74, 144, 226, 1), 0 0 40px rgba(255, 255, 255, 0.5); }
}

.nav-tabs {
    display: flex;
    gap: 0;
}

.nav-tab {
    padding: 0.5rem 1rem;
    background: rgba(26, 26, 58, 0.8);
    border: 1px solid #4a90e2;
    color: #b0c4de;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.nav-tab:first-child {
    border-radius: 4px 0 0 4px;
}

.nav-tab:last-child {
    border-radius: 0 4px 4px 0;
}

.nav-tab.active {
    background: linear-gradient(135deg, #4a90e2, #87ceeb);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.nav-tab:hover:not(.active) {
    background: rgba(74, 144, 226, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
    cursor: pointer;
    background: rgba(74, 144, 226, 0.2);
    border: 1px solid #4a90e2;
}

.social-icon:hover {
    transform: scale(1.1);
    background: rgba(74, 144, 226, 0.4);
}

.social-icon.telegram { background: rgba(0, 136, 204, 0.3); border-color: #0088cc; }
.social-icon.soundcloud { background: rgba(255, 119, 0, 0.3); border-color: #ff7700; }
.social-icon.spotify { background: rgba(29, 185, 84, 0.3); border-color: #1db954; }
.social-icon.reddit { background: rgba(255, 69, 0, 0.3); border-color: #ff4500; }
.social-icon.dextools { background: rgba(5, 163, 201, 0.3); border-color: #05a3c9; }

/* Audio Player Modal - Repositioned to bottom left */
.audio-modal {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    display: block;
    z-index: 1000;
    animation: slideInFromBottom 0.3s ease-out;
}

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

.audio-player {
    background: rgba(17, 17, 51, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    max-width: 350px;
    width: auto;
    backdrop-filter: blur(15px);
    animation: none;
}

.audio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #4a90e2;
}

.audio-header h3 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.close-audio {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-audio:hover {
    background: rgba(255, 107, 107, 0.4);
    transform: scale(1.1);
}

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

.audio-content audio {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: rgba(74, 144, 226, 0.1);
}

.audio-content audio::-webkit-media-controls-panel {
    background: rgba(74, 144, 226, 0.1);
}

.audio-info {
    color: #b0c4de;
    font-size: 0.8rem;
}

.audio-info p {
    margin-bottom: 0.3rem;
    font-weight: 500;
}

/* Banner Snow above Manifesto */
.banner-snow {
    width: 100%;
    height: 500px;
    background: url('images/bannersnow.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    margin-top: 2rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

/* Ticker */
.ticker {
    background: rgba(17, 17, 51, 0.9);
    padding: 0.5rem 0;
    overflow: hidden;
    border-bottom: 1px solid #4a90e2;
    backdrop-filter: blur(5px);
}

.ticker-content {
    display: flex;
    animation: scroll 60s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.ticker-symbol {
    background: rgba(74, 144, 226, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    margin-right: 0.5rem;
    border: 1px solid #4a90e2;
}

.positive {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.negative {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Content */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Hero Article */
.hero-article {
    background: rgba(17, 17, 51, 0.8);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #4a90e2;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.2);
}

.hero-image {
    width: 100%;
    height: 520px;
    background: linear-gradient(45deg, #4a90e2, #87ceeb, #ffffff, #4a90e2);
    background-size: 400% 400%;
    animation: cold-psychedelic 4s ease-in-out infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@keyframes cold-psychedelic {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 46, 0.4);
    z-index: 1;
}

.hero-image-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.5);
    animation: float 2s ease-in-out infinite;
}

.hero-music-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(74, 144, 226, 0.8);
    border: 2px solid #4a90e2;
    border-radius: 25px;
    padding: 10px 20px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    transition: all 0.3s ease;
    animation: buttonGlow 2s ease-in-out infinite;
}

.hero-music-toggle:hover {
    background: rgba(74, 144, 226, 0.9);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.hero-music-toggle.active {
    background: rgba(0, 255, 136, 0.8);
    border-color: #00ff88;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

@keyframes buttonGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3); }
    50% { box-shadow: 0 4px 20px rgba(74, 144, 226, 0.5); }
}

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

.hero-content {
    padding: 2rem;
}

.hero-category {
    color: #87ceeb;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

.hero-excerpt {
    color: #b0c4de;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.hero-caption {
    font-size: 0.8rem;
    color: #87ceeb;
    font-style: italic;
    text-align: center;
    margin-top: 1rem;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: rgba(17, 17, 51, 0.8);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #4a90e2;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.2);
}

.snowball-image {
    width: 300px;
    height: 300px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a90e2;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.snowball-image:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(74, 144, 226, 0.8);
}

.snowball-image.large {
    width: 400px;
    height: 400px;
    box-shadow: 0 0 60px rgba(74, 144, 226, 1);
}

.gif-snow2 {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    margin-top: 1rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.wtf-title {
    font-size: 1.1rem;
    color: #87ceeb;
    margin-bottom: 1rem;
}

.coin-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.coin-description {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.everywhere-text {
    font-style: italic;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Articles Grid */
.articles-section {
    margin-top: 3rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1px;
    background: #4a90e2;
    border: 1px solid #4a90e2;
    border-radius: 8px;
    overflow: hidden;
}

.article-card {
    background: rgba(17, 17, 51, 0.8);
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.article-card:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.article-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* Manifesto Section */
.manifesto-section {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.manifesto-card {
    background: rgba(17, 17, 51, 0.8);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #4a90e2;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.2);
}

.manifesto-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.manifesto-text {
    color: #b0c4de;
    line-height: 1.6;
    font-size: 0.95rem;
}

.fed-image {
    width: 100%;
    height: 200px;
    background: url('images/1.png');
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 2px solid #4a90e2;
}

/* DYOR Page Styles */
.dyor-content {
    max-width: 1200px;
    margin: 0 auto;
}

.dyor-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dyor-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.8);
    margin-bottom: 1rem;
}

.dyor-subtitle {
    font-size: 1.2rem;
    color: #87ceeb;
    margin-bottom: 2rem;
}

.dyor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dyor-card {
    background: rgba(17, 17, 51, 0.8);
    border-radius: 8px;
    padding: 2rem;
    border: 1px solid #4a90e2;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.2);
}

.dyor-card-wide {
    grid-column: span 2;
}

.dyor-card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.dyor-card-text {
    color: #b0c4de;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.dyor-highlight {
    color: #00ffff;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.dyor-warning {
    background: rgba(255, 107, 107, 0.1);
    border: 1px solid #ff6b6b;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.dyor-warning-title {
    color: #ff6b6b;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.dyor-stat-item {
    background: rgba(74, 144, 226, 0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #4a90e2;
}

.dyor-stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.dyor-stat-label {
    color: #87ceeb;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.dyor-snowball {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #4a90e2;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 1rem auto;
    display: block;
}

.dyor-snowball:hover {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(74, 144, 226, 0.8);
}

.dyor-back {
    text-align: center;
    margin-top: 3rem;
}

.dyor-hero-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(45deg, #4a90e2, #87ceeb, #ffffff, #4a90e2);
    background-size: 400% 400%;
    animation: cold-psychedelic 4s ease-in-out infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 1rem;
}

.dyor-hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(135, 206, 235, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(173, 216, 230, 0.4) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.dyor-hero-image-content {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dyor-hero-image-content img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
}

.back-button {
    background: linear-gradient(135deg, #4a90e2, #87ceeb);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

/* Psychedelic Effects - Blue and White Only */
.psychedelic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.1;
    background: radial-gradient(circle at 20% 20%, #4a90e2 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, #ffffff 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, #87ceeb 0%, transparent 50%);
    animation: cold-psychedelic-bg 10s ease-in-out infinite;
}

@keyframes cold-psychedelic-bg {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

/* Trippy Penguin */
.trippy-penguin {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 3rem;
    z-index: 50;
    animation: trippy-dance 2s ease-in-out infinite;
    cursor: pointer;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.8));
}

@keyframes trippy-dance {
    0%, 100% { transform: rotate(-10deg) scale(1); }
    25% { transform: rotate(10deg) scale(1.1); }
    50% { transform: rotate(-5deg) scale(0.9); }
    75% { transform: rotate(15deg) scale(1.2); }
}

/* Penguin Invasion */
.invasion-penguin {
    position: fixed;
    width: 120px;
    height: 120px;
    object-fit: contain;
    z-index: 9999;
    pointer-events: none;
    animation: penguinInvasion 5s ease-in-out forwards;
    filter: drop-shadow(0 0 15px rgba(74, 144, 226, 0.8));
}

@keyframes penguinInvasion {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    20% {
        opacity: 1;
        transform: scale(1.2) rotate(360deg);
    }
    80% {
        opacity: 1;
        transform: scale(1) rotate(720deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(1080deg);
    }
}

/* Flight Simulation Modal */
.flight-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.flight-container {
    background: rgba(17, 17, 51, 0.95);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
    max-width: 600px;
    width: 90%;
    backdrop-filter: blur(15px);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateY(-50px) scale(0.9); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.flight-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #4a90e2;
}

.flight-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.close-flight {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-flight:hover {
    background: rgba(255, 107, 107, 0.4);
    transform: scale(1.1);
}

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

.departure-selection {
    margin-bottom: 2rem;
}

.departure-selection h4 {
    color: #87ceeb;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.location-select {
    background: rgba(74, 144, 226, 0.1);
    border: 2px solid #4a90e2;
    color: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 300px;
}

.location-select option {
    background: rgba(17, 17, 51, 0.9);
    color: #ffffff;
}

.start-flight-btn {
    background: linear-gradient(135deg, #4a90e2, #87ceeb);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.start-flight-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

/* Flight Simulation */
.flight-simulation {
    text-align: left;
}

.flight-status {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid #4a90e2;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.status-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.status-line:last-child {
    margin-bottom: 0;
}

.status-label {
    color: #87ceeb;
    font-weight: 600;
}

.status-value {
    color: #ffffff;
    font-weight: 500;
}

.flight-progress {
    margin-bottom: 2rem;
}

.progress-bar {
    width: 100%;
    height: 20px;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #4a90e2;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4a90e2, #87ceeb);
    width: 0%;
    transition: width 0.1s ease;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.progress-text {
    color: #00ffff;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.flight-map {
    background: rgba(10, 10, 46, 0.3);
    border: 1px solid #4a90e2;
    border-radius: 8px;
    padding: 2rem;
    position: relative;
    height: 150px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.plane-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    transition: all 0.1s ease;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.8));
}

.route-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a90e2, #87ceeb);
    transform: translateY(-50%);
    z-index: 5;
}

.departure-marker {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    z-index: 8;
}

.destination-marker {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    z-index: 8;
}

/* Arrival Celebration */
.arrival-celebration {
    text-align: center;
}

.welcome-message h2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
}

.welcome-message p {
    color: #b0c4de;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.antarctica-gif {
    margin: 2rem 0;
}

.welcome-gif {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #4a90e2;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

.celebration-text {
    margin-top: 2rem;
}

.celebration-text p {
    color: #00ffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Chart Modal */
.chart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.chart-container {
    background: rgba(17, 17, 51, 0.95);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid #4a90e2;
    box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
    max-width: 800px;
    width: 90%;
    backdrop-filter: blur(15px);
    animation: slideIn 0.3s ease-out;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #4a90e2;
}

.chart-header h3 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.5);
}

.close-chart {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid #ff6b6b;
    color: #ff6b6b;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-chart:hover {
    background: rgba(255, 107, 107, 0.4);
    transform: scale(1.1);
}

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

.chart-info {
    margin-bottom: 2rem;
}

.price-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.current-price {
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.price-change.positive {
    color: #00ff00;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.chart-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-label {
    color: #87ceeb;
    font-size: 0.9rem;
    font-weight: 600;
}

.stat-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.chart-area {
    background: rgba(10, 10, 46, 0.3);
    border: 1px solid #4a90e2;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

#chartCanvas {
    border-radius: 8px;
    background: rgba(17, 17, 51, 0.9);
}

/* Penguin Showcase */
.penguin-showcase {
    animation: slideInFromBottom 0.5s ease-out;
}

.showcase-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(74, 144, 226, 0.8);
}

.penguin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.showcase-penguin {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 2px solid #4a90e2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
    transition: all 0.3s ease;
    animation: penguinFloat 2s ease-in-out infinite;
}

.showcase-penguin:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.8);
}

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

/* Final Celebration */
.final-celebration {
    animation: slideInFromBottom 0.5s ease-out;
}

.celebration-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
    animation: celebrationGlow 1s ease-in-out infinite;
}

@keyframes celebrationGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(74, 144, 226, 0.8); }
    50% { text-shadow: 0 0 30px rgba(74, 144, 226, 1), 0 0 40px rgba(255, 255, 255, 0.5); }
}

.source-gif-container {
    margin: 2rem 0;
}

.source-gif {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #4a90e2;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.5);
}

.celebration-message {
    margin-top: 2rem;
}

.celebration-message p {
    color: #00ffff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .main-grid {
        grid-template-columns: 1fr;
    }
    
    .manifesto-section {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        display: none;
    }
    
    .dyor-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-tabs {
        display: none;
    }
    
    .dyor-title {
        font-size: 2rem;
    }
    
    .audio-player {
        margin: 1rem;
        padding: 1.5rem;
    }

    .flight-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .flight-header h3 {
        font-size: 1.5rem;
    }
    
    .welcome-message h2 {
        font-size: 1.5rem;
    }
    
    .welcome-gif {
        max-width: 100%;
    }

    .chart-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .chart-header h3 {
        font-size: 1.5rem;
    }
    
    .current-price {
        font-size: 1.5rem;
    }
    
    .chart-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .penguin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-penguin {
        width: 60px;
        height: 60px;
    }
    
    .celebration-title {
        font-size: 1.5rem;
    }
    
    .source-gif {
        max-width: 100%;
    }
}

/* SWAP Page Styles */
.swap-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    position: relative;
}

.swap-header {
    text-align: center;
    margin-bottom: 3rem;
}

.swap-title {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.8);
    margin-bottom: 1rem;
    animation: logo-glow 3s ease-in-out infinite;
}

.swap-subtitle {
    font-size: 1.2rem;
    color: #b0c4de;
    opacity: 0.8;
}

.swap-layout {
    /* position: relative; */
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Corner Images */
.swap-corner-image {
    position: absolute;
    width: 400px;
    height: 400px;
    /* border-radius: 50%; */
    overflow: hidden;
    /* border: 3px solid #4a90e2; */
    /* box-shadow: 0 0 20px rgba(74, 144, 226, 0.5); */
    animation: cornerFloat 4s ease-in-out infinite;
    z-index: 10;
}

.girl-snow2 {
    height: 500px !important;
}

.swap-corner-image.top-left {
    top: 0%;
    left: 0%;
    animation-delay: 0s;
}

.swap-corner-image.top-right {
    top: 0%;
    right: 0%;
    animation-delay: 1s;
}

.swap-corner-image.bottom-left {
    bottom: 0%;
    left: 0%;
    animation-delay: 2s;
}

.swap-corner-image.bottom-right {
    bottom: 0%;
    right: 0%;
    animation-delay: 3s;
}

.swap-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swap-corner-image:hover .swap-image {
    transform: scale(1.1);
}

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

/* Center Content */
.swap-center {
    background: rgba(17, 17, 51, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #4a90e2;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.3);
    max-width: 800px;
    width: 100%;
    z-index: 20;
}

.dexscreener-embed {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.2);
}

.dexscreener-embed iframe {
    border-radius: 10px;
    background: rgba(17, 17, 51, 0.8);
}

.swap-info {
    text-align: center;
}

.swap-info h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(74, 144, 226, 0.5);
}

.swap-info p {
    color: #b0c4de;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.swap-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}

.swap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 8px;
    border: 1px solid #4a90e2;
    min-width: 120px;
}

.swap-stat .stat-label {
    font-size: 0.9rem;
    color: #b0c4de;
    margin-bottom: 0.5rem;
}

.swap-stat .stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.swap-stat .stat-value.positive {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.swap-back {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Design for SWAP */
@media (max-width: 1024px) {
    .swap-layout {
        height: 70vh;
    }
    
    .swap-corner-image {
        width: 160px;
        height: 160px;
    }
    
    .swap-center {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .swap-title {
        font-size: 2rem;
    }
    
    .swap-layout {
        height: 60vh;
    }
    
    .swap-corner-image {
        width: 120px;
        height: 120px;
    }
    
    .swap-corner-image.top-left,
    .swap-corner-image.top-right {
        top: 0%;
    }
    
    .swap-corner-image.bottom-left,
    .swap-corner-image.bottom-right {
        bottom: 0%;
    }
    
    .swap-corner-image.top-left,
    .swap-corner-image.bottom-left {
        left: 0%;
    }
    
    .swap-corner-image.top-right,
    .swap-corner-image.bottom-right {
        right: 0%;
    }
    
    .swap-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .swap-stat {
        min-width: 100px;
    }
} 