* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: "Aeonik Pro TRIAL";
  font-weight: 300;
  font-style: normal;
  src: url("/fonts/AeonikProTRIAL-Light.woff2") format("woff2"), url("/fonts/AeonikProTRIAL-Light.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Pro TRIAL";
  font-weight: 400;
  font-style: normal;
  src: url("/fonts/AeonikProTRIAL-Regular.woff2") format("woff2"), url("/fonts/AeonikProTRIAL-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Aeonik Pro TRIAL";
  font-weight: 700;
  font-style: normal;
  src: url("/fonts/AeonikProTRIAL-Bold.woff2") format("woff2"), url("/fonts/AeonikProTRIAL-Bold.woff") format("woff");
  font-display: swap;
}


body {
    font-family: "Aeonik Pro TRIAL", sans-serif;
    background: linear-gradient(135deg, #363676 0%, #4a4a9a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.container {
    text-align: center;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .logo {
        margin-bottom: 10px;
    }
}

.logo-placeholder {
    width: 250px;
    height: 250px;
    background: linear-gradient(161deg, #ff7f00 50%, #d53256 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 35px;
}

@media (max-width: 600px) {
    .logo-placeholder{
        width: 150px;
        height: 150px;
    }
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-name {
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.content h2 {
    font-weight: 400;
    font-size: 85px;
    line-height: 65px;
    letter-spacing: -0.02em;
    color: #fff;
    text-transform: none;
    margin-bottom: 30px;
}

@media (max-width: 600px) {
    .content h2 {
        font-size: 45px;
        line-height: 45px;
    }
}

.content h2 span {
    color: transparent;
    -webkit-text-stroke: 1px #ffffff;
    text-stroke: 1px #ffffff;
    text-transform: none;
}

.content p {
    font-weight: 400;
    font-size: 38px;
    line-height: 133%;
    color: #fff;
}

@media (max-width: 600px) {
    .content p {
        font-size: 20px;
        line-height: 25px;
    }
}