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

body {
    font-family: 'Inter', sans-serif;

    background-color: #102624;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    padding: 20px 40px;
    position: relative;
    z-index: 10;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 15px 30px;
    border-radius: 35px;
    height: 55px;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: #102624;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 24px;
    width: auto;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.twitter-link {
    color: #666;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.twitter-link:hover {
    color: #1da1f2;
}

.launch-btn {
    background-color: #4ecdc4;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.launch-btn:hover {
    background-color: #45b7b8;
    transform: translateY(-2px);
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.characters-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    padding: 0 50px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
}

.character {
}

.character-img {
    width: 600px;
    height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.info-panel {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-top: 10px;
    min-width: 350px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.2);
}

.info-row:last-child {
    border-bottom: none;
}

.label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #888;
    font-weight: 400;
}

.value {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-align: right;
}

.value.highlight {
    color: #4ecdc4;
}

.value.fees {
    color: #4ecdc4;
}

.footer-text {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
}

.footer-content {
    font-size: 14px;
    color: #ccc;
    line-height: 1.4;
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    padding-left: 100%;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .launch-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .characters-container {
        gap: 30px;
        margin-bottom: 120px;
    }
    
    .character-img {
        width: 250px;
        height: 250px;
    }
    
    .footer-content {
        font-size: 12px;
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .header-content {
        padding: 15px 15px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .header-right {
        gap: 12px;
    }
    
    .launch-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .twitter-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .characters-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .character-img {
        width: 200px;
        height: 200px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 20px 30px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .launch-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .twitter-link {
        font-size: 14px;
    }
}
