* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Oswald", sans-serif;
}

body {
  min-height: 900px;
  width: 100%;
  background: url("https://images8.alphacoders.com/617/thumb-1920-617523.jpg") center / cover no-repeat;
  color: white;
  position: relative;
}

/* Dark cinematic overlay */
.background-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}

/* Top Navigation */
.top-nav {
  height: 60px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
}

.status {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Central Core */
.core {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
  padding: 40px 0;
}

.clock {
  font-size: 120px;
  font-weight: 700;
}

.date {
  margin-top: 8px;
  font-size: 24px;
  letter-spacing: 2px;
  color: #EC1D24;
  text-transform: uppercase;
}

/* Search */
.search-box {
  margin-top: 32px;
  width: 600px;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  background: rgba(20, 20, 20, 0.8);
  border: 2px solid #EC1D24;
}

.search-box input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ddd;
  font-size: 20px;
  margin: 0 12px;
}

.search-icon,
.mic-icon {
  font-size: 20px;
  opacity: 0.8;
}

/* Shortcuts */
.shortcuts {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 140px);
  gap: 24px;
}

.card {
  height: 100px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.card span {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
}

.card:hover {
  border-color: #EC1D24;
  background-color: rgba(236, 29, 36, 0.3);
  transform: translateY(-4px);
}

/* Footer Quote */
footer {
  transform: translateY(-80px);
  position: relative;
  z-index: 1;
  padding: 10px;
  text-align: center;
}

.quote {
  font-weight: 300;
  font-size: 18px;
  font-style: italic;
}
.online{
    margin-top: 10px;
    letter-spacing: 2px;
    color: #EC1D24;
}

.fa-play{
    color: #EC1D24;
}

/* App Launcher Button */
.app-launcher-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-launcher-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

/* App Launcher Modal */
.app-launcher-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 80px;
  padding-right: 20px;
}

.app-launcher-modal.active {
  display: flex;
}

.app-launcher-container {
  background: rgba(32, 33, 36, 0.95);
  border-radius: 12px;
  padding: 20px;
  width: 360px;
  max-height: 500px;
  overflow-y: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.app-launcher-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-launcher-header h3 {
  color: white;
  font-size: 16px;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-btn:hover {
  color: #EC1D24;
}

.app-launcher-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.app-item:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(236, 29, 36, 0.4);
}

.app-item span {
  font-size: 11px;
  margin-top: 8px;
  text-align: center;
  font-weight: 500;
}

/* Google Material Icons */
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 36px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.app-launcher-btn .material-icons {
  font-size: 24px;
}