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

body {
  font-family:
    Roboto,
    -apple-system,
    Helvetica,
    sans-serif;
}

/* Main container */
.meditation-screen {
  background-color: rgba(254, 255, 255, 1);
  display: flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 480px;
  width: 100%;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
}

/* Header section with icons */
.header-icons {
  align-self: start;
  display: flex;
  align-items: stretch;
  gap: 2px;
}

.menu-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 34px;
  flex-shrink: 0;
}

.settings-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 31px;
  align-self: start;
  flex-shrink: 0;
}

/* Content container */
.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Main meditation background image */
.meditation-background {
  aspect-ratio: 1.68;
  object-fit: contain;
  object-position: center;
  width: 100%;
  margin-top: 224px;
}

/* Meditation details section */
.meditation-details {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Featured label */
.featured-label {
  color: rgba(63, 61, 86, 1);
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  margin-top: 39px;
}

/* Meditation title */
.meditation-title {
  color: rgba(105, 139, 207, 1);
  font-size: 34px;
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
}

/* Activity duration text */
.activity-duration {
  color: rgba(63, 61, 86, 1);
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin-top: 17px;
}

/* Play button */
.play-button {
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 19px;
  padding: 0;
}

/* Play icon */
.play-icon {
  aspect-ratio: 0.98;
  object-fit: contain;
  object-position: center;
  margin-right: 200px;
  width: 242px;
  max-width: 100%;
}
