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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    overflow-x: hidden;
}

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

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

.hero-content {
    z-index: 2;
    position: relative;
}

.elephant-logo {
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.main-elephant {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 8px solid #000;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.main-elephant:hover {
    transform: scale(1.1) rotate(5deg);
}

.title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.pulse {
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

.stomp {
    color: #4ecdc4;
    animation: stomp 1.5s infinite;
}

.emoji {
    display: inline-block;
    animation: wiggle 1s infinite;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.launch-info {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    border-radius: 25px;
    color: #fff;
    font-weight: 600;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.live-data {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.data-item {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.data-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.data-item:hover:nth-child(1) {
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
}

.data-item:hover:nth-child(2) {
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
}

.data-item:hover:nth-child(3) {
    box-shadow: 0 15px 35px rgba(157, 78, 221, 0.4);
}

.data-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.data-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4ecdc4;
    transition: all 0.3s ease;
    border-radius: 10px;
    padding: 5px 10px;
}

/* Special styling for all live data values */
#tokenPrice {
    background: linear-gradient(45deg, #00d4ff, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    text-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
    animation: dataGlow 2s ease-in-out infinite alternate;
}

#marketCap {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
    animation: dataGlow 2s ease-in-out infinite alternate;
    animation-delay: 0.7s;
}

#volume24h {
    background: linear-gradient(45deg, #9d4edd, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.3rem;
    text-shadow: 0 0 20px rgba(157, 78, 221, 0.3);
    animation: dataGlow 2s ease-in-out infinite alternate;
    animation-delay: 1.4s;
}

@keyframes dataGlow {
    from {
        filter: brightness(1);
        transform: scale(1);
    }
    to {
        filter: brightness(1.2);
        transform: scale(1.02);
    }
}

/* Enhanced data item styling with individual colors */
.data-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(78, 205, 196, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    animation: pulsePrice 3s ease-in-out infinite;
}

.data-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(255, 165, 0, 0.1));
    border: 1px solid rgba(255, 107, 107, 0.2);
    animation: pulseMcap 3s ease-in-out infinite;
    animation-delay: 1s;
}

.data-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(255, 0, 110, 0.1));
    border: 1px solid rgba(157, 78, 221, 0.2);
    animation: pulseVolume 3s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes pulsePrice {
    0%, 100% {
        box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    }
}

@keyframes pulseMcap {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 107, 107, 0.5);
    }
}

@keyframes pulseVolume {
    0%, 100% {
        box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
    }
    50% {
        box-shadow: 0 0 25px rgba(157, 78, 221, 0.5);
    }
}

/* Auto-refresh animations */
.data-value.updating {
    opacity: 0.5;
    transform: scale(0.95);
    filter: blur(1px);
    transition: all 0.5s ease;
}

.data-value.updated {
    animation: flashUpdate 1s ease;
}

#tokenPrice.updated {
    animation: flashUpdatePrice 1s ease;
}

#marketCap.updated {
    animation: flashUpdateMcap 1s ease;
}

#volume24h.updated {
    animation: flashUpdateVolume 1s ease;
}

@keyframes flashUpdate {
    0% {
        background: rgba(78, 205, 196, 0.3);
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.5);
    }
    50% {
        background: rgba(78, 205, 196, 0.5);
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(78, 205, 196, 0.7);
    }
    100% {
        background: transparent;
        transform: scale(1);
        box-shadow: none;
    }
}

@keyframes flashUpdatePrice {
    0% {
        background: rgba(0, 212, 255, 0.3);
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }
    50% {
        background: rgba(0, 212, 255, 0.5);
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
    }
    100% {
        background: transparent;
        transform: scale(1);
        box-shadow: none;
    }
}

@keyframes flashUpdateMcap {
    0% {
        background: rgba(255, 107, 107, 0.3);
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
    50% {
        background: rgba(255, 107, 107, 0.5);
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(255, 107, 107, 0.7);
    }
    100% {
        background: transparent;
        transform: scale(1);
        box-shadow: none;
    }
}

@keyframes flashUpdateVolume {
    0% {
        background: rgba(157, 78, 221, 0.3);
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
    }
    50% {
        background: rgba(157, 78, 221, 0.5);
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.7);
    }
    100% {
        background: transparent;
        transform: scale(1);
        box-shadow: none;
    }
}

/* Live indicator */
.live-indicator {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 0.8rem;
    background: rgba(255, 0, 0, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    animation: livePulse 2s infinite;
    border: 1px solid rgba(255, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.live-indicator.countdown-urgent {
    background: rgba(255, 165, 0, 0.3);
    border-color: rgba(255, 165, 0, 0.5);
    animation: urgentPulse 0.5s infinite;
}

@keyframes livePulse {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

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

.token-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.token-symbol {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

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

.supply-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.supply-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4ecdc4;
    font-family: 'Courier New', monospace;
}

.loading {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chain-badge {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chain-badge span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Floating Elements */
.floating-elephants {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-1, .float-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.3;
}

.float-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    bottom: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Features Section */
.features {
    padding: 4rem 0;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #4ecdc4;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    text-align: center;
}

.gallery h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Call to Action */
.cta {
    padding: 4rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin: 2rem 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.button-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .live-data {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 1rem;
    }
    
    .data-item {
        padding: 0.8rem;
    }
    
    .data-value {
        font-size: 1.1rem;
    }
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

/* Special styling for different exchanges */
.btn-primary[href*="pulsex"] {
    background: linear-gradient(45deg, #ff3366, #ff6b9d);
}

.btn-primary[href*="pulsex"]:hover {
    box-shadow: 0 10px 20px rgba(255, 51, 102, 0.4);
}

.btn-primary[href*="libertyswap"] {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
}

.btn-primary[href*="libertyswap"]:hover {
    box-shadow: 0 10px 20px rgba(78, 205, 196, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid #4ecdc4;
}

.btn-secondary:hover {
    background: #4ecdc4;
    transform: translateY(-3px);
}

.contract-address {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 10px;
    font-family: 'Courier New', monospace;
    max-width: 500px;
    margin: 0 auto;
    word-break: break-all;
}

.contract-address code {
    color: #4ecdc4;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.social-link {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.6;
    margin-top: 1rem;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

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

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

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .main-elephant {
        width: 100px;
        height: 100px;
        border: 6px solid #000;
    }
    
    .gallery-item img {
        height: 320px;
    }
    
    .features-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 0.5rem;
    }
}
