* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #f5f5f5;
    background:
        radial-gradient(circle at 20% 15%, rgba(134, 0, 16, 0.28), transparent 26%),
        radial-gradient(circle at 85% 20%, rgba(255, 18, 31, 0.14), transparent 24%),
        linear-gradient(145deg, #05080d 0%, #070b11 45%, #111722 100%);
}

body:before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .14;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%, rgba(255,255,255,.08)),
        linear-gradient(150deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%, rgba(255,255,255,.08)),
        linear-gradient(30deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%, rgba(255,255,255,.08)),
        linear-gradient(150deg, rgba(255,255,255,.08) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.08) 87.5%, rgba(255,255,255,.08));
    background-size: 82px 142px;
    background-position: 0 0, 0 0, 41px 71px, 41px 71px;
}

.page {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 100vh;
    padding: 28px 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    width: 100%;
    max-width: 480px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
    background: rgba(8, 12, 18, .82);
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
}

.profile {
    text-align: center;
}

.logo {
    width: 220px;
    max-width: 82%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,.55));
}

.tagline {
    margin: 0 0 4px;
    color: #aeb4bf;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

h1 {
    margin: 0;
    color: #ffffff;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1px;
}

.description {
    margin: 12px auto 20px;
    max-width: 360px;
    color: #c8ccd3;
    font-size: 15px;
    line-height: 1.45;
}

.latest-video {
    margin: 8px 0 18px;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.08);
}

.label {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 18, 31, .14);
    color: #ff2533;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.thumb {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.08);
}

.thumb img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .2s ease;
}

.thumb:hover img {
    transform: scale(1.035);
}

.play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff121f;
    color: #fff;
    font-size: 22px;
    text-indent: 3px;
    box-shadow: 0 10px 28px rgba(0,0,0,.5);
}

.thumb-empty {
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
}

.latest-video h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 14px;
	width: 101%;
	min-height: 62px;
	padding: 14px 20px;
	border-radius: 18px;
	text-decoration: none;
	font-weight: 800;
	color: #fff;
	border: 1px solid rgba(255,255,255,.08);
	transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.22);
}

.btn span {
    font-size: 16px;
}

.btn small {
    color: rgba(255,255,255,.62);
    font-size: 12px;
    text-align: right;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #cfd3d8);
    color: #070b11;
}

.btn-primary small {
    color: rgba(0,0,0,.55);
}

.btn-youtube {
    background: linear-gradient(135deg, #ff121f, #78000d);
}

.btn-instagram {
    background: linear-gradient(135deg, #ff121f, #8a0012 55%, #232a35);
}

.btn-dark {
    background: linear-gradient(135deg, #171d27, #0c1017);
}

.affiliate-note {
    margin: 16px 6px 0;
    color: #969da8;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
}

.footer {
    margin-top: 18px;
    color: rgba(255,255,255,.42);
    font-size: 12px;
}

@media (max-width: 420px) {
    .page {
        padding: 16px 10px 14px;
    }

    .card {
        padding: 16px;
        border-radius: 22px;
    }

    .logo {
        width: 190px;
    }

    h1 {
        font-size: 31px;
    }

    .btn {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        min-height: 0;
    }

    .btn small {
        text-align: left;
    }
}
