/* OTRY.CC SIMPLE LANDING PAGE */

:root {
  /* Backgrounds */
  --bg-base: #2E335C;
  --bg-surface: #3C4678;
  --bg-elevated: #4C5A92;
  --bg-deep: #1C2238;

  /* Text */
  --text-primary: #E9EEFF;
  --text-secondary: #B7C2F0;
  --text-muted: #8C96C6;

  /* Borders */
  --border-default: #5C6BA8;
  --border-strong: #72D6FF;

  /* Accent (Cyan / Stitching) */
  --accent-primary: #72D6FF;
  --accent-primary-hover: #94E3FF;
  
  /* Accent (Red / Jeans Tag) */
  --accent-secondary: #FF5A68;
  --accent-secondary-hover: #FF7A86;

  /* Support */
  --tag-dark: #232635;
  --soft-highlight: #6F7DC2;
}

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

body {
  font-family: 'RocknRoll One', -apple-system, sans-serif;
  background-color: var(--bg-base);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;
}

#app-container {
  width: 100%;
  max-width: 500px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* === TOP LOGO === */
.logo {
  font-family: 'Antonio', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 4px;
  font-weight: 700;
  color: var(--text-primary);
  opacity: 1;
}

/* === PROJECT BOX === */
.project-box {
  background: var(--bg-surface);
  border: 4px solid var(--border-strong);
  padding: 50px 30px;
  position: relative;
  box-shadow: 15px 15px 0px var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.project-box::before {
  content: '01';
  position: absolute;
  top: -20px;
  left: 20px;
  background: var(--accent-secondary);
  color: var(--text-primary);
  font-family: 'Roboto Mono', monospace;
  font-size: 0.8rem;
  padding: 4px 10px;
  border: 2px solid var(--border-default);
}

.tag {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.65rem;
  color: var(--accent-primary);
  letter-spacing: 2px;
  margin-bottom: 5px;
  font-weight: bold;
}

.title {
  font-family: 'Mochiy Pop One', sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--text-primary);
}

.description {
  font-family: 'RocknRoll One', sans-serif;
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.4;
  margin-bottom: 10px;
}

/* === BUTTON === */
.btn {
  width: 100%;
  max-width: 200px;
  display: inline-block;
  background: var(--accent-primary);
  color: var(--bg-deep);
  font-family: 'Antonio', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn:hover {
  background: var(--accent-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(114, 214, 255, 0.3);
}

.btn:active {
  transform: translateY(1px);
}

/* === FOOTER === */
.footer {
  font-family: 'Roboto Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* === PROJECT-SPECIFIC DESIGNS === */

/* #1 PINFLOW: RED & GOLD AESTHETIC */
.project-pinflow {
  background: #1C1D1C;
  border-color: #2E2A26;
  box-shadow: 15px 15px 0px rgba(0,0,0,0.5);
}

.project-pinflow::before {
  background: #AD0013; /* Primary Red */
  border-color: #2E2A26;
}

.project-pinflow .tag {
  color: #A67D43; /* Gold */
}

.project-pinflow .title {
  color: #E8DFD0; /* Cream */
}

.project-pinflow .description {
  color: #8A7E6E; /* Muted Gold */
}

.project-pinflow .btn {
  background: #AD0013; /* Red */
  color: #fff;
}

.project-pinflow .btn:hover {
  background: #D4182E;
  box-shadow: 0 4px 15px rgba(173, 0, 19, 0.3);
}

/* === ANIMATIONS === */
.project-box {
  animation: slideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.header, .footer {
  animation: fadeIn 0.8s ease both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile Tweak */
@media (max-width: 400px) {
  .title { font-size: 2.2rem; }
  .project-box { padding: 40px 20px; }
}
