:root {
    --bg-color: #050505;
    --text-color: #ffffff;
    --accent-color: #034efc;
    /* Original Blue */
    /* Lighter Cyan Blue */
    --card-bg: #111;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

body {
    background: linear-gradient(rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.7)), url('background.png') no-repeat center center;
    background-attachment: scroll;
    background-size: cover;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
header {
    position: sticky;
    top: 20px;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.header-container {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-pfp {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Buttons */
.btn-primary {
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Hero */
.hero {
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.trusted-badge {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 8px 20px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.avatars {
    display: flex;
}

.avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: -8px;
    border: 2px solid #1a1a1a;
}

.avatar:first-child {
    margin-left: 0;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    max-width: 800px;
}

h1 em {
    font-style: italic;
}

/* Video Wrapper */
.video-wrapper {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 60px;
    border: 1px solid #333;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.play-button {
    font-size: 3rem;
    opacity: 0.5;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 80px;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
}

.stat-item h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Content Blocks */
.content-block {
    max-width: 700px;
    margin-bottom: 80px;
}

.content-block.center-text {
    text-align: center;
    max-width: 1000px;
}

.content-block h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-block p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.1rem;
}

/* Grids */
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
    margin-top: 30px;
}

.card {
    background: #111;
    border: 1px solid #222;
    border-radius: 20px;
    padding: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
}

.video-card {
    aspect-ratio: 16/9;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 40px 0;
    width: 100%;
}

.skill-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.2s, transform 0.2s;
}

.skill-item:hover {
    background: rgba(3, 78, 252, 0.15);
    /* Tint with accent color */
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.skill-icon {
    font-size: 1.5rem;
}

/* Reviews Carousel */
.reviews-section {
    width: 100%;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 30s linear infinite;
    will-change: transform;
}

.review-card {
    background: #111;
    border-radius: 50px;
    padding: 20px 30px;
    min-width: 350px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

.review-pfp {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #333;
}

.review-content {
    display: flex;
    flex-direction: column;
}

.review-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.review-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.sub-count {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
}

.review-text {
    font-size: 0.9rem;
    color: #bbb;
    margin: 0;
    font-style: italic;
    white-space: nowrap;
}



/* Footer */
.cta-footer {
    text-align: center;
    padding: 100px 0;
}

.cta-footer h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #888;
}

.logo-large {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .stats {
        gap: 30px;
    }

    .stat-item h2 {
        font-size: 1.8rem;
    }
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-3px);
    background: #fff;
}

.social-icon.twitter:hover {
    color: #1DA1F2;
}

.social-icon.youtube:hover {
    color: #FF0000;
}

.social-icon.twitch:hover {
    color: #9146FF;
}

.social-icon.discord:hover {
    color: #5865F2;
}

.social-icon.tiktok:hover {
    color: #ff0050;
}

.social-icon.instagram:hover {
    color: #e4405f;
}

.social-icon.namemc:hover {
    color: #000000;
}

/* Shining Border Effect */
:root {
    --glow-color: rgba(3, 78, 252, 0.6);
}

.btn-primary,
.review-card,
.social-icon,
.header-container,
.trusted-badge {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover,
.review-card:hover,
.social-icon:hover,
.header-container:hover,
.trusted-badge:hover {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px var(--glow-color), 0 0 30px rgba(3, 78, 252, 0.2);
    animation: shine-border 2s infinite alternate;
}

@keyframes shine-border {
    0% {
        box-shadow: 0 0 5px var(--glow-color), 0 0 10px rgba(3, 78, 252, 0.1);
    }

    100% {
        box-shadow: 0 0 20px var(--glow-color), 0 0 40px rgba(3, 78, 252, 0.3);
    }
}