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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    user-select: none;
}

.selectable {
    user-select: text;
}

.container {
    max-width: 800px;
    width: 100%;
}

.header-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

h1 {
    font-size: 5rem;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -2px;
    animation: fadeInUp 0.6s ease-out;
}

.header-gif {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
    animation: fadeInUp 0.6s ease-out;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

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

.subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 300;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.info-block {
    background: #fafafa;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
    border: 1px solid #e0e0e0;
}

.info-block:hover {
    background: #fafafa;
    transform: scale(1.02) rotate(0.5deg);
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ff6b35;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.server-input-container {
    display: flex;
    align-items: center;
    gap: 0;
    background: #fafafa;
    transition: all 0.2s ease;
}

.server-input-container:hover {
    background: #f5f5f5;
}

.value {
    flex: 1;
    font-size: 1.5rem;
    color: #1a1a1a;
    font-weight: 400;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.copy-btn {
    padding: 0.75rem 1rem;
    background: transparent;
    color: #999;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-btn:hover {
    color: #999;
    transform: scale(1.1);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.feature {
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #ff6b35;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.1);
    transform: scale(1.05) rotate(-1deg);
}

.feature:nth-child(2):hover {
    transform: scale(1.05) rotate(1deg);
}

.feature-title {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.feature-desc {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.5;
}

.contact {
    margin-top: 4rem;
    padding: 2rem;
    border-top: 1px solid #e0e0e0;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.contact-label {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.email-reveal {
    display: inline-block;
    color: #ff6b35;
    cursor: pointer;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.email-reveal:hover {
    border-bottom-color: #ff6b35;
    transform: scale(1.05);
}

#emailDisplay {
    margin-top: 0.5rem;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

#emailDisplay.show {
    opacity: 1;
    transform: translateY(0);
}

.hide-btn {
    margin-left: 1rem;
    color: #999;
    cursor: pointer;
    font-size: 0.875rem;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.hide-btn:hover {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #666;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    transition: all 0.3s ease;
}

.status-dot.online {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.status-dot.offline {
    background: #ef4444;
}

.status-text {
    font-weight: 500;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.loader-text {
    font-size: 1.2rem;
    color: #666;
}

.dots::after {
    content: '';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1a1a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    font-size: 0.875rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

    .header-gif {
        width: 3rem;
        height: 3rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .features {
        grid-template-columns: 1fr;
    }
}
