body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: #000000;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
}

a {
    color: #1414E0;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

::selection {
    color: #fff;
    background: #5470fa;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
	margin: 0 auto;
}

.container {
    max-width: 1144px;
    margin: 0 auto;
    padding: 0 16px;
}

.main {
    overflow: hidden;
}

h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 20px;
	color: #ffffff;
	text-align: left;
}
h2 {
    font-size: 1.75rem;
    margin: 1em 0 0.5em;
    color: #e46d1e;
}
h3 {
    font-size: 1.5rem;
    margin: 1em 0 0.5em;
    color: #e46d1e;
}
h4 {
    font-size: 1.25rem;
    margin: 0.8em 0 0.4em;
    color: #e46d1e;
}

.header-area {
    background: #160c06;
	color: #ffffff;
    box-shadow: 0 4px 20px rgba(1, 3, 5, 0.1);
    padding: 12px 0;
    position: relative;
}

.header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    font-weight: 700;
    color: #ffffff;
    font-size: 18px;
    transition: 0.2s;
}

.nav ul li a:hover {
    color: #f74835;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background: #e46d1e;
    color: #ffffff;
    font-weight: 700;
    border-radius: 30px;
    text-align: center;
    transition: background 0.2s;
}

.btn:hover {
    background: #c93b2b;
}

.btn--lg {
    font-size: 18px;
    padding: 15px 60px;
	display: block;
	max-width: 250px;
}

.btn--block {
    display: block;
    width: 100%;
}

.hero-area {
    padding: 10px 0;
	margin-bottom: 25px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.hero__media {
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.hero__media img {
    max-width: 100%;
    width: 100%;
    margin: 0;
    border-radius: 20px;
}

.adaptive-table {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    color: #ffffff;
}

table th, table td {
    border: 1px solid #e46d1e;
    padding: 10px 15px;
    vertical-align: top;
}

table th {
    color: #ffffff;
    text-align: left;
}

table td a {
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

table td a:hover {
    text-decoration: underline;
}

.main-text {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.6;
}

.footer-area {
    background: #000000;
    padding: 40px 0;
    border-top: 1px solid #444;
	color: #ffffff;
}

.footer__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.footer__brand img {
    max-width: 150px;
}

.footer__text {
    font-size: 14px;
    color: #ffffff;
}

footer a {
    color: #f74835;
}

.burger {
    display: none;
    position: relative;
    width: 32px;
    height: 24px;
    background: none;
    border: 0;
    padding: 0;
    cursor: pointer;
    z-index: 1100;
	color: #ffffff;
}

.burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: currentColor;
    border-radius: 2px;
    transition: top .2s ease, transform .2s ease, opacity .2s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 10px; }
.burger span:nth-child(3) { top: 20px; }

.burger[aria-expanded="true"] span:nth-child(1) {
    top: 10px; transform: rotate(45deg);
}
.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.burger[aria-expanded="true"] span:nth-child(3) {
    top: 10px; transform: rotate(-45deg);
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #2e303b;
    border-top: 1px solid #3a3c47;
    z-index: 1000;
}

.mobile-nav.is-open { display: block; }

.mobile-nav ul {
    margin: 0;
    padding: 8px 0;
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid #3a3c47;
}

.mobile-nav li:last-child {
    border-bottom: 0;
}

.mobile-nav a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,.06);
}

@media (max-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .burger { display: block;}
    body.lock { overflow: hidden; }
}

.welcome-offer {
    position: relative;
    margin: 30px auto 0;
    padding: 22px 26px;
    max-width: 620px;
    text-align: center;
    border-radius: 24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(12px);

    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        0 0 25px rgba(255,255,255,0.03);

    overflow: hidden;
}

.welcome-offer::before {
    content: "";
    position: absolute;
    inset: -2px;

    background:
        linear-gradient(
            135deg,
            #e46d1e,
            transparent,
            #e46d1e
        );

    opacity: 0.18;
    filter: blur(18px);

    z-index: 0;

    animation: welcomeGlow 6s linear infinite;
}

.welcome-label {
    position: relative;
    z-index: 1;

    display: inline-block;

    margin-bottom: 14px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #000;

    opacity: 0.85;
}

.welcome-main {
    position: relative;
    z-index: 1;

    display: block;

    font-size: clamp(30px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;

    color: #ffffff;

    text-shadow:
        0 0 12px rgba(255,255,255,0.08),
        0 0 28px rgba(255,255,255,0.04);

    animation: bonusFloat 4s ease-in-out infinite;
}

@keyframes bonusFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes welcomeGlow {
    0% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.05);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

blockquote {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid;
  border-radius: 0 8px 8px 0;
  line-height: 1.7;
}

blockquote p {
  margin: 0;
}

blockquote {
  border-color: #e46d1e;
}


@keyframes btnFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
    100% {
        transform: translateY(0);
    }
}

.hero__media {
    position: relative;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .hero__media {
        display: none;
    }
}

@keyframes heroFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-8px) rotate(-1deg) scale(1.01);
    }

    50% {
        transform: translateY(-14px) rotate(1deg) scale(1.02);
    }

    75% {
        transform: translateY(-8px) rotate(-1deg) scale(1.01);
    }

    100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
}

.hero__author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.hero__author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
}
.hero__author-info {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.hero__author-name {
    font-weight: 700;
    font-size: 14px;
}
.hero__author-date {
    font-size: 13px;
    opacity: 0.7;
}

.hero__intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 480px;
}

.author-box {
  padding: 24px 0 40px;
}

.author-box__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.author-box__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.author-box__content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.author-box__top {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.author-box__name {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.author-box__badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.author-box__bio {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.author-box__date {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 600px) {
  .author-box__inner {
    max-width: 100%;
  }
}

/* News grid */
.news-area {
  padding: 48px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  gap: 24px;
  justify-content: start;
}

/* Card */
.news-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.news-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.05);
}

.news-card__body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: #000;
}

.news-card__title {
  font-size: 1.05rem;
  line-height: 1.4;
  margin: 0;
}

.news-card__title a {
  color: inherit;
  text-decoration: none;
}

.news-card__title a:hover {
  text-decoration: underline;
}

.news-card__date {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: auto;
}

/* Mobile fine-tuning */
@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-area {
    padding: 32px 0;
  }
}