/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f0f9ff; /* Pastel sky blue */
    color: #333; /* Neutral text color for readability */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 600px;
}

/* Floating Cloud */
.floating-cloud {
    font-size: 12rem;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.1s ease; /* Smooth movement */
    user-select: none; /* Prevent selection */
}

/* Name and Description */
.name {
    font-size: 2.5rem;
    color: #005a9c; /* Soft navy blue for contrast */
    margin-bottom: 10px;
}

.description {
    font-size: 1.2rem;
    color: #0066cc; /* Lighter blue for subtle emphasis */
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Buttons */
.buttons {
    margin-bottom: 40px;
}

.placeholder-btn {
    background-color: #ffffff; /* White buttons for simplicity */
    color: #0066cc; /* Blue text */
    border: 2px solid #a0e1f9; /* Soft pastel blue border */
    padding: 10px 20px;
    margin: 5px;
    border-radius: 25px; /* Rounded buttons for a modern look */
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.placeholder-btn:hover {
    background-color: #a0e1f9; /* Light blue hover effect */
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Visitor Counter */
.view-counter {
    padding: 20px;
    background: #e0f8ff; /* Very light blue */
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.counter-placeholder {
    font-size: 1.5rem;
    color: #004d80; /* Deep blue for emphasis */
}

/* Responsiveness */
@media (max-width: 600px) {
    .name {
        font-size: 2rem;
    }
    .description {
        font-size: 1rem;
    }
    .placeholder-btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}
