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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #6a5acd;
    margin-bottom: 10px;
}

h2 {
    color: #777;
    margin-bottom: 30px;
    font-size: 1.2rem;
    font-weight: normal;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.counter {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    min-width: 150px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.counter:hover {
    transform: translateY(-5px);
}

.counter-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #6a5acd;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 0.9rem;
    color: #777;
}

.castle-icon {
    margin: 30px auto;
    animation: float 3s ease-in-out infinite;
}

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

.info {
    color: #888;
    font-size: 0.9rem;
    margin-top: 20px;
}

.info a {
    color: #6a5acd;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .counter-container {
        flex-direction: column;
        align-items: center;
    }
    
    .counter {
        width: 80%;
    }
}

