* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    background: #111;
    color: #fff;
  }
  .container {
    display: flex;
    min-height: 100vh;
  }
  .left {
    flex: 1;
    padding: 3rem;
    background: #0b0b0b;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  .socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
  }
  .socials a {
    color: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
  }
  .socials a:hover {
    color: #ff0000;
  }
  .socials span {
    margin-top: 1rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.8rem;
    color: #999;
  }
  .intro h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .intro h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #aaa;
  }
  .intro p {
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 80%;
  }
  .buttons {
    display: flex;
    gap: 1rem;
  }
  .btn {
    padding: 0.7rem 1.5rem;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
  }
  .btn.light {
    background: #fff;
    color: #000;
  }
  .btn.dark:hover,
  .btn.light:hover {
    background: #0ff;
    color: #000;
  }
  .right {
    flex: 1;
    background: #000;
    height: 100vh;
    overflow: hidden;
  }
  
  .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
  }
  