/* Password Protection Styles removed */

.main-content {
    display: block;
}

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

body {
    font-family: 'Orbitron', monospace;
    background: #000000;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Animation */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #00ff88, #ff69b4);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out;
    animation-delay: var(--delay);
    will-change: transform, opacity;
}

.floating-element:nth-child(1) { top: 10%; left: 10%; }
.floating-element:nth-child(2) { top: 20%; right: 15%; }
.floating-element:nth-child(3) { top: 60%; left: 5%; }
.floating-element:nth-child(4) { bottom: 30%; right: 10%; }
.floating-element:nth-child(5) { bottom: 10%; left: 20%; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.6; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.header-top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.about-button, .roadmap-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 15px;
    padding: 12px 20px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
    font-family: 'Orbitron', monospace;
    font-size: 0.9rem;
}

.about-button:hover, .roadmap-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
}

/* Mission Section */
.mission-section {
    margin-bottom: 40px;
    padding: 20px;
}

.mission-container {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.1), rgba(0, 255, 136, 0.1));
    border: 3px solid;
    border-image: linear-gradient(45deg, #ff69b4, #00ff88, #ff69b4) 1;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 105, 180, 0.3);
    animation: missionGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.mission-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: missionShine 4s ease-in-out infinite;
}

@keyframes missionGlow {
    0%, 100% { box-shadow: 0 0 50px rgba(255, 105, 180, 0.3); }
    50% { box-shadow: 0 0 80px rgba(0, 255, 136, 0.5); }
}

@keyframes missionShine {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.mission-icon {
    font-size: 4rem;
    color: #ff69b4;
    margin-bottom: 20px;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.mission-title {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff69b4, #00ff88, #ff69b4);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 105, 180, 0.5);
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff69b4;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
}

.mission-description {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.6;
}

.call-to-action {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 15px;
    padding: 25px;
    border: 2px solid #00ff88;
}

.cta-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.buy-button {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.buy-button::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;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.info-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

.info-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 105, 180, 0.6);
}

/* Tokenomics Section removed */

.title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #00ff88, #ff69b4, #00ff88);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    margin-bottom: 10px;
}

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

.coin-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

.coin-icon {
    color: #ff69b4;
    animation: coinSpin 2s ease-in-out infinite;
}

@keyframes coinSpin {
    0%, 100% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
}

.coin-name {
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.7);
}

/* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    flex: 1;
    align-items: center;
}

/* Character Panel */
.character-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.character-container {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 3px solid #00ff88;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.character-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.5);
}

.character-image {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    transition: all 0.3s ease;
    will-change: transform, filter;
}

.character-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.2) 0%, transparent 70%);
    border-radius: 15px;
    animation: glowPulse 2s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.badge {
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.6);
    animation: badgeBounce 1s ease-in-out infinite;
}

.badge.top-left {
    top: -10px;
    left: -10px;
}

.badge.top-right {
    top: -10px;
    right: -10px;
    animation-delay: 0.5s;
}

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

.world-taps {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

.world-taps:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
}

/* Interactive Panel */
.interactive-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tap-button {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border: none;
    border-radius: 15px;
    padding: 20px 40px;
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
}

.tap-button::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;
}

.tap-button:hover::before {
    left: 100%;
}

.tap-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.tap-button:active {
    transform: scale(0.95);
}

.contract-box {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #00ff88;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.contract-box:hover {
    border-color: #ff69b4;
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.3);
}

.contract-label {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    color: #00ff88;
    word-break: break-all;
    margin-bottom: 10px;
    text-shadow: 0 0 5px rgba(0, 255, 136, 0.5);
}

.copy-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #ff69b4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-text:hover {
    color: #ff1493;
    transform: scale(1.05);
}

.social-button {
    background: linear-gradient(45deg, #ff69b4, #ff1493);
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.4);
    transition: all 0.3s ease;
}

.social-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.6);
}

.x-logo {
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
}

.telegram-button {
    background: linear-gradient(45deg, #0088cc, #00a8ff);
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
    transition: all 0.3s ease;
}

.telegram-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 136, 204, 0.6);
}

.whitepaper-button {
    background: linear-gradient(45deg, #00ff88, #00cc6a);
    border: none;
    border-radius: 15px;
    padding: 15px 25px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
}

.whitepaper-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.stats-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: white;
}

.stat-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.stat-dot.session {
    background: #ff69b4;
}

.stat-dot.total {
    background: #00ff88;
}

.stat-dot.community {
    background: #ffa500;
}

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

.reset-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #00ff88;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.reset-link:hover {
    color: #ff69b4;
    transform: scale(1.05);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 105, 180, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

/* Proof of Locks Section removed */

/* Insect Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

.confetti {
    position: absolute;
    font-size: 35px;
    animation: insectFall 2s linear forwards;
    text-shadow: 0 0 10px currentColor;
    will-change: transform, opacity;
}

@keyframes insectFall {
    0% {
        transform: translateY(-20px);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Responsive Design */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(-50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes floatUp {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-50px);
    }
}

@media (max-width: 768px) {
    .header-top {
        position: relative;
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }
    
    .header-buttons {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-button, .roadmap-button {
        font-size: 0.85rem;
        padding: 10px 18px;
        min-width: 120px;
        justify-content: center;
        flex-shrink: 0;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .character-image {
        width: 250px;
        height: 250px;
    }
    
    .tap-button {
        font-size: 1.5rem;
        padding: 15px 30px;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-text {
        font-size: 1.4rem;
    }
    
    .cta-text {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .buy-button, .info-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    
    /* Tokenomics responsive rules removed */
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .header-top {
        margin-bottom: 15px;
    }
    
    .header-buttons {
        gap: 8px;
    }
    
    .about-button, .roadmap-button {
        font-size: 0.75rem;
        padding: 8px 14px;
        min-width: 100px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .character-image {
        width: 200px;
        height: 200px;
    }
    
    .tap-button {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    
    /* Tokenomics mobile rules removed */
}

/* Thank You Pop-up Styles */
.thank-you-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #00ff88, #ff69b4);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    z-index: 1000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 300px;
    max-width: 350px;
}

.thank-you-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.popup-content {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #000;
}

.popup-icon {
    font-size: 30px;
    animation: pulse 2s infinite;
}

.popup-text {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

/* Modal Mobile Optimization */
@media (max-width: 768px) {
    .modal-container {
        padding: 25px !important;
        max-width: 95% !important;
        width: 95% !important;
        border-radius: 15px !important;
        max-height: 90vh !important;
    }
    
    .modal-container h1 {
        font-size: 2rem !important;
        margin-bottom: 20px !important;
    }
    
    .modal-container h2 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
    }
    
    .modal-container p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
    }
    
    .modal-container div[style*="padding: 30px"] {
        padding: 20px !important;
    }
    
    .modal-container div[style*="padding: 25px"] {
        padding: 15px !important;
    }
    
    .modal-container div[style*="padding: 20px"] {
        padding: 15px !important;
    }
}

@media (max-width: 480px) {
    .modal-container {
        padding: 20px !important;
        max-width: 98% !important;
        width: 98% !important;
        border-radius: 12px !important;
        max-height: 95vh !important;
    }
    
    .modal-container h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .modal-container h2 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    
    .modal-container p {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
    }
    
    .modal-container div[style*="padding"] {
        padding: 12px !important;
    }
}

/* Mobile responsive for popup */
@media (max-width: 768px) {
    .thank-you-popup {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: none;
    }
    
    .popup-content {
        gap: 10px;
    }
    
    .popup-icon {
        font-size: 24px;
    }
    
    .popup-text {
        font-size: 14px;
    }
} 
