html, body {
  margin: 0;
  min-height: 100%;
  min-width: 100%;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  background: #ffffff;
}

* {
  box-sizing: border-box;
}

/* Main Board */
.board {
  position: relative;
  width: 1366px;
  height: 768px;
  background: #ffffff;
  overflow: hidden;
}

/* Header */
.header {
  position: absolute;
  left: 19px;
  top: 13px;
  width: 1257px;
  height: 99px;
  display: flex;
  align-items: center;
}

/* Logo Small */
.logo-small {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 122px;
  height: 99px;
  background: #ffffff;
  overflow: hidden;
}

.logo-small-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 122px;
  height: 99px;
  background: url(logo-small.png) no-repeat center center / cover;
}

/* Home Link */
.home-link {
  position: absolute;
  left: 173px;
  top: 38px;
  width: 87px;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-icon {
  width: 24px;
  height: 24px;
  color: #000000;
}

.home-text {
  color: #000000;
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.home-text:hover {
  text-decoration: underline;
}

/* Action Icons */
.action-icons {
  position: absolute;
  right: 0px;
  top: 38px;
  display: flex;
  gap: 16px;
}

.icon {
  width: 30px;
  height: 30px;
  background: #000000;
  border-radius: 4px;
}

/* Cow Background */
.cow-background {
  position: absolute;
  left: -3px;
  top: 128px;
  width: 1369px;
  height: 456px;
  overflow: hidden;
}

.cow-image {
  position: absolute;
  left: 0px;
  top: -186px;
  width: 1877px;
  height: 802px;
  background: url(cow-suchet.png) no-repeat center center / cover;
}

/* Content */
.content {
  position: absolute;
  left: 139px;
  top: 281px;
  width: 1092px;
  height: 296px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.welcome-text {
  color: rgba(255, 255, 255, 1);
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.description-text {
  color: rgba(255, 255, 255, 1);
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 400;
  margin: 0 0 30px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tools-text {
  color: rgba(255, 255, 255, 1);
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 800px;
}

/* Action Buttons */
.action-buttons {
  position: absolute;
  left: 353px;
  top: 663px;
  width: 680px;
  height: 40px;
  display: flex;
  gap: 16px;
}

.action-button {
  width: 40px;
  height: 40px;
  background: #000000;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.action-button:hover {
  background: #333333;
}

.delete-icon::before {
  content: "🗑️";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.loading-icon::before {
  content: "⏳";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.add-icon::before {
  content: "➕";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.view-icon::before {
  content: "👁️";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.library-icon::before {
  content: "📚";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.help-icon::before {
  content: "❓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.padding-icon::before {
  content: "📏";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.magnet-icon::before {
  content: "🧲";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.curve-icon::before {
  content: "〰️";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.airplay-icon::before {
  content: "📺";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}

.archive-icon::before {
  content: "📦";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
}
