/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* Full-Screen Layout */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: #121212; /* Dark background */
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

/* Centering Content */
.container {
    text-align: center;
    max-width: 1200px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Ensure this takes up available space */
}

/* Polar Bear Icon */
.icon svg {
    max-width: 120px;
    max-height: 120px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.icon svg:hover {
    transform: scale(1.1);
}

/* Title Styling */
.title h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.title h1:hover {
    color: #00bcd4; /* Sleek blue accent */
}

.title p {
    font-size: 1.5rem;
    font-weight: 300;
    color: #aaa;
    margin-top: 10px;
    letter-spacing: 1px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 10px 0;
    font-size: 0.9rem;
    width: 100%;
    color: #fff;
    position: absolute; /* Make it sticky at the bottom */
    bottom: 0;
    background: none; /* Remove background */
}

/* Hover Effects and Smooth Transitions */
a {
    color: #00bcd4; /* Modern accent color */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .title h1 {
        font-size: 3rem;
    }

    .title p {
        font-size: 1.2rem;
    }

    .icon svg {
        max-width: 90px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .title h1 {
        font-size: 2.5rem;
    }

    .title p {
        font-size: 1rem;
    }

    .icon svg {
        max-width: 80px;
        max-height: 80px;
    }
}

.btn-1,
.btn-1 *,
.btn-1 :after,
.btn-1 :before,
.btn-1:after,
.btn-1:before {
  border: 0 solid;
  box-sizing: border-box;
}
.btn-1 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}
.btn-1:disabled {
  cursor: default;
}
.btn-1:-moz-focusring {
  outline: auto;
}
.btn-1 svg {
  display: block;
  vertical-align: middle;
}
.btn-1 [hidden] {
  display: none;
}
.btn-1 {
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
}
.btn-1:hover {
  color: #999;
}

#videoContainer {
    display: none; /* Initially hide video */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
iframe {
    width: 100%;
    height: 100%;
    border: none;
}