```css
/*=============================================
=                1. Font Loading               =
=============================================*/
@font-face {
  font-family: 'AdvercaseFont';
  src: url('../fonts/advercasefont-regular-webfont.woff2') format('woff2'),
       url('../fonts/advercasefont-regular-webfont.woff')  format('woff'),
       url('../fonts/AdvercaseFont-Regular.otf')           format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'AdvercaseFont';
  src: url('../fonts/advercasefont-bold-webfont.woff2') format('woff2'),
       url('../fonts/advercasefont-bold-webfont.woff')  format('woff'),
       url('../fonts/AdvercaseFont-Bold.otf')            format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*=============================================
=                   2. Reset                   =
=============================================*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*=============================================
=               3. Base Styles                 =
=============================================*/
body {
  font: normal 16px 'AdvercaseFont', serif;
  background: #292929;
  color: #e4e2dd;
  line-height: 1.4;
  min-height: 100vh;
}

.magazine-ad {
  width: 100%;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
}

.content-wrapper {
  position: relative;
  z-index: 2;
}

/*=============================================
=                  4. Header                   =
=============================================*/
.header-section {
  padding: 20px;
  text-align: center;
}

.logo-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

/*=============================================
=                5. Hero Section               =
=============================================*/
.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.artist-image {
  width: 80vw;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*=============================================
=           6. Links & Social Icons            =
=============================================*/
.links-section {
  padding: 20px;
  text-align: center;
}

.text-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.link-item {
  display: block;
  margin: 0 auto;
  padding: 12px 20px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #e4e2dd;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.5s ease;
}

.link-item:hover {
  background: linear-gradient(135deg, #40e0d0, #FF00FF);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.link-item:hover::before {
  left: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.social-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*=============================================
=                  7. Footer                   =
=============================================*/
.footer-section {
  padding: 20px;
  text-align: center;
}

.artist-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.copyright {
  font-size: 10px;
}

/*=============================================
=           8. Desktop Overrides               =
=============================================*/
@media (min-width: 480px) {
  .header-section {
    padding: 25px;
  }

  .hero-section {
    padding: 40px 0;
  }

  .artist-image {
    width: 320px;
    max-width: none;
  }

  .links-section {
    padding: 30px;
  }

  .link-item {
    font-size: 32px;
    padding: 20px 25px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
  }

  .footer-section {
    padding: 25px;
  }
}
```
