@font-face {
    font-family: "Red Hat Text";
    src: url("./RedHatText.ttf");
}

body {
	background: #1a1a1a;
	font-family: "Red Hat Text", sans-serif;
	margin: 0;
	min-height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
	color: #333;
}

.container {
    background: white;
    padding: clamp(1rem, 5vw, 2rem);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    text-align: center;
    max-width: 500px;
    width: min(90%, 500px);
    margin: 1rem;
}

h1 {
    color: #cc9900;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.status-card {
	background: #f9f9f9;
	padding: 1.5rem;
	border-radius: 10px;
	margin-bottom: 2rem;
}

.status-indicator {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.egg-icon {
    font-size: clamp(2rem, 6vw, 3rem);
	margin-bottom: 0.5rem;
}

.status-text {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.status-text.available {
	color: #2ecc71;
}

.status-text.unavailable {
	color: #e74c3c;
}

.update-time {
	color: #666;
	font-size: 0.9rem;
}

.location-info {
	border-top: 2px dashed #cc9900;
	padding-top: 1.5rem;
}

.location-info h2 {
	color: #cc9900;
	font-size: clamp(1.2rem, 4vw, 1.5rem);
	margin-bottom: 1rem;
}

.farm-note {
	color: #666;
	font-style: italic;
	margin-top: 1rem;
}

@media (max-width: 380px) {
    .status-card {
        padding: 1rem;
    }
    
    .update-time {
        font-size: 0.8rem;
    }
    
    .farm-note {
        font-size: 0.9rem;
    }
}