@charset "utf-8";
/* CSS Document */

:root {
  --bg: #f7f2ec;                    /* light sand / parchment */
  --panel: rgba(255, 248, 240, 0.85); /* warm off-white for glass card */

  --accent: #c2410c;                /* burnt orange */
  --accent-soft: rgba(194, 65, 12, 0.18);

  --text-main: #3b2a1a;              /* dark brown */
  --text-muted: #7a5a3a;             /* warm muted brown */
}


  * {
    box-sizing: border-box;
  }

body {
  margin: 0rem 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  background: url("background.jpg") no-repeat center center fixed;
  background-size: cover;

  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
}


.container {
margin-top: 2rem;
  max-width: 720px;
  padding: 2rem 3rem;

  background: rgba(255, 255, 255, 0.75); /* half transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 20px;
  box-shadow:
    0 10px 30px rgba(15, 23, 42, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;

  text-align: center;
}


h1 {
  margin: 0 0 0.75rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;

  background: linear-gradient(
    90deg,
    #92400e,   /* warm brown */
    #c2410c    /* burnt orange */
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  width: 56px;
  height: 4px;
  margin: 1.5rem auto 2.2rem;

  background: linear-gradient(
    90deg,
    #92400e,   /* warm brown */
    #c2410c    /* burnt orange */
  );

  border-radius: 4px;
}


  p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 0rem;
  }

  .platform {
    margin-top: 2.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
  }

  .platform a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    position: relative;
  }

  .platform a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
  }

  .platform a:hover::after {
    transform: scaleX(1);
  }

  footer {
    margin-top: 2rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: #94a3b8;
  }
