@font-face {
  font-family: 'Blackletter';
  src: url('Blackletter-Bold.ttf') format('truetype');
}

body {
  font-family: sans-serif;
  background-color: #1a1a1a;
  color: #f0f0f0;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  font-family: 'Blackletter', sans-serif;
  color: #c00;
  font-size: 3rem;
  text-shadow: 2px 2px 4px #000;
}

.main-container {
  text-align: center;
  border: 2px solid #c00;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px #c00, 0 0 20px #ffc700;
  position: relative;
  z-index: 1;
}

.blood-rain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.rain-drop {
    position: absolute;
    bottom: 100%;
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(139, 0, 0, 0), rgba(139, 0, 0, 0.6));
    animation: fall 1.5s linear infinite;
}

@keyframes fall {
    to {
        transform: translateY(100vh);
    }
}

.button-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.snow-button {
    padding: 0.75rem 1.5rem;
    border: 2px solid #c00;
    background-color: #a00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.snow-button:hover {
    background-color: #c00;
    box-shadow: 0 0 10px #c00;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem;
    border: 2px solid #c00;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 15px #c00, 0 0 20px #ffc700;
    position: relative;
    z-index: 1;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #a00;
    border: 2px solid #c00;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-button:hover {
    background-color: #c00;
    transform: scale(1.1);
}


/* Mobile Optimization */
@media (max-width: 768px) {
    .main-container {
        padding: 1rem;
        margin: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .button-container {
        flex-direction: column;
    }

    .snow-button {
        width: 100%;
        text-align: center;
    }
}
