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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
    margin: 0;
    position: relative;
    background: 
        linear-gradient(rgba(255, 255, 224, 0.8), rgba(255, 255, 224, 0.8)),
        url('more like this.png');
    background-size: cover;
    background-repeat: space;
    background-position: center;
}

/* Override for browsers that support WebP */
@supports (background-image: url("image.webp")) {
  body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
    margin: 0;
    position: relative;
    background: 
      linear-gradient(rgba(255, 255, 224, 0.8), rgba(255, 255, 224, 0.8)),
      url('more like this small.webp');
    background-size: cover;
    background-repeat: space;
    background-position: center;
  }
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.title {
    font-family: 'Caprasimo', cursive !important;
    font-size: 9rem;
    margin-bottom: 2px;
    color: #ffeb6b !important;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #C54E4A;
    text-shadow: 4px 4px 0px #C54E4A;
    letter-spacing: 1px;
    line-height: 0.7 !important;
}

.subtitle {
    font-weight: bold;
    font-style: italic;
    font-size: 1.5rem !important;
    margin: 0;
    color: #000 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: block;
    width: 100%;
}

/* Header */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

/* Content Grid */
.content-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

/* Info Section - Rectangle boxes */
.info-section {
    background: rgba(255, 255, 250, 0.7);
    border: 2px solid #000;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    width: 100%;
    max-width: 350px;
    height: 200px;
    padding: 10px;
}

.description {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #000;
    line-height: 1.3;
    margin: 0;
}

.highlight-red {
    color: #C54E4A;
    font-weight: 600;
}

.follow-info {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #000;
    line-height: 1.3;
    margin: 0;
}

.social-link {
    color: #C54E4A;
    text-decoration: none;
    font-weight: 600;
}

.social-link:hover {
    text-decoration: underline;
}

.location-link {
    color: #C54E4A;
    text-decoration: none;
    font-weight: 600;
}

.location-link:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    margin: 30px 0 20px 0;
    text-align: center;
}

.speech-bubble {
    display: inline-block;
}

.cta-text {
    font-family: 'Caprasimo', cursive;
    font-size: 2.5rem;
    color: #C54E4A;
    margin: 20px 0;
    display: inline-block;
    line-height: 1.3;
}

/* Footer */
.support-info {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.5;
    padding-top: 20px;
    border-top: 1px solid white;
    margin-top: 20px;
    text-align: center;
}

.support-link, .code-link, .website-link {
    color: #C54E4A;
    text-decoration: none;
}

.support-link:hover, .code-link:hover, .website-link:hover {
    text-decoration: underline;
}


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

/* Responsive Design */
@media (max-width: 768px) {
  .content-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .title {
    font-size: 3.5rem;
  }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .description, .follow-info {
        font-size: 1.1rem;
    }
    
    .scene {
        width: 250px;
        height: 250px;
    }
}