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

#pagecontainer{
    width: 100% !important;
    margin: 0; 
    padding: 0;
}

.sixteen.wide.column.centered#landing {
    min-height: calc(100vh - 20px);
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.ui.vertically.padded.grid.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.landing-content {
    text-align: center;
    padding: 2rem;
}

.landing-content img {
    margin-bottom: 2rem;
}

#typewriter {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 3rem;
  min-height: 6rem;
  line-height: 1.3;
}

.cursor {
  display: inline-block;
  width: 3px;
  min-width: 3px;
  height: 1em;
  background-color: #333;
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  from, to { background-color: #333; }
  50% { background-color: transparent; }
}

.ui.large.primary.button {
    background: linear-gradient(90deg, #1575f4 0%, #2966c2 100%);
    color: white;
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

.ui.large.primary.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(21, 117, 244, 0.3);
}