* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: #0b0b0b;
    color: #f2f2f2;
    height: 100vh;
    overflow: hidden;
  }
  
  /* VIDEO */
  .video-wrapper {
    position: fixed;
    inset: 0;
    z-index: -2;
  }
  
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
  }
  
  /* CENTER TEXT */
  .center-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  /* TEXT */
  .line {
    position: absolute;
    font-size: 60px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(12px);
    transition: all 1s cubic-bezier(0.19,1,0.22,1);
  }
  
 
  /* BRAND */
  .brand {
    align-items: center;
    opacity: 0;
    transform: scale(0.96);
    transition: all 2s cubic-bezier(0.19,1,0.22,1);
  }
 
  .brand img {
    width: 300px;
    margin-bottom: -60px;
  }

  /* AETHERIX NAME */
  .name {
    font-family: 'Playfair Display', 'Cinzel', serif;
    font-size: 62px;
    font-weight: 550;
    letter-spacing: 8px;
    text-align: center;
    margin: 20px 0;
    color: #f2f2f2;
    text-transform: uppercase;
    display: block;
    width: 100%;
  }
  
  .tagline {
    display: block;
    font-size: 30px;
    letter-spacing: 4px;
    opacity: 0.8;
  }
  
  /* SOCIALS */
  .socials {
    position: absolute;
    bottom: -550px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 1.2s cubic-bezier(0.19,1,0.22,1);
  }
  
  /* CARD */
  .social-card {
    width: min(300%, 620px);
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 40px 60px;
    border-radius: 16px;
  
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    color: #f2f2f2;
  
    transition: all 0.4s cubic-bezier(0.19,1,0.22,1);
  }
  
  /* HOVER */
  .social-card:hover {
    transform: translateY(-8px) scale(1.06);
    border-color: rgba(198,167,94,0.6);
  }
  /* ICON PLACEHOLDER */
  .icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
  
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
  
    display: flex;
    align-items: center;
    justify-content: center;
  
    flex-shrink: 0;
    overflow: hidden;
  }
  .icon img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
    
  
  /* TEXT */
  .text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  
  .title {
    font-size: 30px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .sub {
    font-size: 20px;
    color: #9a9a9a;
    margin-top: 2px;
  }
  
  
  /* ARROW */
  .arrow {
    font-size: 62px;
    opacity: 0.4;
  }
