.laptop-container {
  .landing-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px; /* Add space for the footer */
    position: relative; /* For absolute footer positioning */

    .hero-section {
      margin-bottom: 3rem;
      padding: 1rem;
      background-color: #070b10;
      border-radius: 1rem;
      color: white;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      flex-shrink: 0;

      .hero-content {
        display: flex;
        align-items: center;
        gap: 1.2em;
        margin-bottom: 1em;
      }

      .hero-logo {
        height: 250px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      }

      .seminar-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
      }

      .seminar-subtitle {
        font-size: 1.2rem;
        opacity: 0.9;
      }
    }

    .header-actions {
      margin-bottom: 1.5rem;
      flex-shrink: 0;

      .button {
        padding: 0.75rem 1.5rem;
        font-weight: 500;
      }
    }

    .voting-instructions {
      margin-bottom: 3rem;
      padding: 1.5rem;
      background: #f8f9fa;
      border-radius: 0.5rem;
      border: 1px solid #e9ecef;
      flex-shrink: 0;

      ul {
        list-style-type: none;
        padding: 0;
        margin: 0;

        li {
          margin-bottom: 0.5rem;
          padding-left: 1.5rem;
          position: relative;

          &:before {
            content: "⚡️";
            position: absolute;
            left: 0;
          }

          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }

    .events-section {
      flex: 1;
      overflow-y: auto;
      padding-right: 1rem;
      margin-right: -1rem;

      h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 2rem 0 1rem;
        color: #333;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid var(--primary-orange);
        position: sticky;
        top: 0;
        background: white;
        z-index: 1;
      }

      .events-list {
        .event-row {
          padding: 1rem;
          border: 1px solid #e9ecef;
          border-radius: 0.5rem;
          margin-bottom: 1rem;
          transition: all 0.2s ease;
          background: white;

          &:hover {
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
            transform: translateY(-1px);
          }

          .event-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;

            .event-title {
              font-weight: 600;
              font-size: 1.1rem;

              a {
                color: #333;
                text-decoration: none;

                &:hover {
                  color: var(--primary-orange);
                }
              }
            }

            .event-details {
              display: flex;
              align-items: center;
              gap: 1rem;
              color: #666;
              font-size: 0.9rem;

              .event-location {
                &:before {
                  content: "📍";
                  margin-right: 0.25rem;
                }
              }

              .event-date {
                &:before {
                  content: "📅";
                  margin-right: 0.25rem;
                }
              }
            }
          }
        }

        .no-events {
          padding: 2rem;
          text-align: center;
          color: #666;
          background: #f8f9fa;
          border-radius: 0.5rem;
          border: 1px dashed #dee2e6;
        }
      }
    }

    .sticky-footer {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 1.5rem;
      background: white;
      border-top: 1px solid #e9ecef;
      z-index: 10;

      .container {
        display: flex;
        gap: 1rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .button {
        padding: 0.75rem 1.5rem;
        font-weight: 500;
      }
    }
  }
}
