/* CSS Variables */
:root {
    --bg-dark: #0B1120;
    --bg-card: #0F1629;
    --bg-lighter: #1A2332;
    --neon-green: #00FF41;
    --cyber-blue: #00D4FF;
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --shadow-neon-green: 0 0 20px rgba(0, 255, 65, 0.4);
    --shadow-cyber-blue: 0 0 20px rgba(0, 212, 255, 0.3);
    --gradient-neon: linear-gradient(135deg, var(--neon-green) 0%, var(--cyber-blue) 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Grid Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 255, 65, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 65, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Header */
.header {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background: rgba(11, 17, 32, 0.9);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.1);
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--text-primary);
}

.logo i {
    color: var(--neon-green);
    font-size: 1.8rem;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--neon-green);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 2px;
    transition: 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(15, 22, 41, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    z-index: 99;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu.active {
    display: flex;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--bg-dark);
    box-shadow: var(--shadow-neon-green);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--neon-green);
    border: 2px solid var(--neon-green);
}

.btn-secondary:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: var(--shadow-neon-green);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
    box-shadow: var(--shadow-neon-green);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--neon-green);
    opacity: 0.05;
    filter: blur(100px);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-30px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--neon-green);
    font-size: 1.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
}

.hero-card {
    padding: 3rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.card.glass {
    background: rgba(15, 22, 41, 0.6);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.orb {
    position: absolute;
    border-radius: 50%;
}

.orb-1 {
    top: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: var(--neon-green);
    opacity: 0.15;
    filter: blur(80px);
}

.orb-2 {
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--cyber-blue);
    opacity: 0.1;
    filter: blur(70px);
}

.hero-icon-wrapper {
    position: relative;
    z-index: 1;
}

.hero-icon-wrapper i {
    font-size: 120px;
    color: var(--neon-green);
    margin-bottom: 1rem;
    display: block;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: rgba(15, 22, 41, 0.4);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.1);
    border-radius: var(--radius-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--neon-green);
    font-family: 'Orbitron', monospace;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: rgba(15, 22, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon-green);
    transform: translateY(-5px);
}

.service-card.popular {
    border-color: var(--neon-green);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-features i {
    color: var(--neon-green);
    font-size: 0.875rem;
}

.services-cta {
    text-align: center;
}

/* Guarantees Section */
.guarantees-preview {
    padding: 6rem 0;
    background: rgba(15, 22, 41, 0.3);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.guarantee-card {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 22, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: var(--cyber-blue);
    box-shadow: var(--shadow-cyber-blue);
}

.guarantee-card i {
    font-size: 3rem;
    color: var(--cyber-blue);
    margin-bottom: 1rem;
    display: block;
}

.guarantee-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.guarantee-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Reviews Section */
.reviews-preview {
    padding: 6rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #4CAF50;
    font-weight: 600;
    font-size: 0.875rem;
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-meta h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.reviewer-meta span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.stars {
    color: #FFD700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.cta-card {
    text-align: center;
    padding: 4rem;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-disclaimer {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #FFC107;
    border-radius: var(--radius-md);
    color: #FFC107;
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(15, 22, 41, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--neon-green);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.footer-col i {
    color: var(--neon-green);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

.disclaimer {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.text-center {
    text-align: center;
}

/* Keyword Cloud Section */
.keyword-cloud-section {
    padding: 4rem 0;
    background: rgba(0, 255, 65, 0.02);
}

.keyword-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.keyword-tag {
    background: rgba(0, 255, 65, 0.1);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    border: 1px solid rgba(0, 255, 65, 0.2);
    white-space: nowrap;
    transition: all 0.3s ease;
}

.keyword-tag:hover {
    background: rgba(0, 255, 65, 0.2);
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {

    .services-grid,
    .guarantees-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .services-grid,
    .guarantees-grid,
    .reviews-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }


    .section-title {
        font-size: 2rem;
    }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.trust-badges i {
    color: var(--neon-green);
    margin-right: 0.5rem;
    font-size: 1rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 1.75rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.payment-methods i:hover {
    opacity: 1;
}

.payment-methods .fa-cc-visa {
    color: #1A1F71;
}

.payment-methods .fa-cc-mastercard {
    color: #EB001B;
}

.payment-methods .fa-bitcoin {
    color: #F7931A;
}

/* Mobile Trust Badges */
@media (max-width: 768px) {
    .trust-badges {
        gap: 1rem;
        font-size: 0.75rem;
    }

    .payment-methods {
        justify-content: center;
    }
}

/* ===================== */
/* Team Page Styles      */
/* ===================== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    background: rgba(15, 22, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon-green);
    transform: translateY(-8px);
}

.team-photo-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.team-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--neon-green);
    color: var(--bg-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    display: inline-block;
    color: var(--neon-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(0, 255, 65, 0.1);
    color: var(--neon-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 65, 0.2);
}

/* ========================= */
/* Vacancies Page Styles     */
/* ========================= */
.vacancies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.vacancy-card {
    background: rgba(15, 22, 41, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.vacancy-card:hover {
    border-color: var(--cyber-blue);
    box-shadow: var(--shadow-cyber-blue);
    transform: translateY(-5px);
}

.vacancy-card.hot {
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.2);
}

.vacancy-header {
    padding: 1.5rem 1.5rem 0;
    position: relative;
}

.vacancy-badge-hot {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #FF6B35, #FF2D00);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0 var(--radius-lg) 0 var(--radius-md);
    font-size: 0.8rem;
    font-weight: 700;
}

.vacancy-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vacancy-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.vacancy-salary {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: var(--neon-green);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vacancy-body {
    padding: 0 1.5rem;
    flex-grow: 1;
}

.vacancy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.vacancy-tag {
    background: rgba(0, 212, 255, 0.1);
    color: var(--cyber-blue);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.vacancy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vacancy-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.vacancy-list i {
    color: var(--neon-green);
    font-size: 0.75rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.vacancy-footer {
    padding: 1.5rem;
    margin-top: auto;
}

/* ========================= */
/* Video Section Styles      */
/* ========================= */
.video-section {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(0, 255, 65, 0.2);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.1);
}

.video-placeholder {
    padding: 5rem 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 22, 41, 0.9) 0%, rgba(0, 30, 60, 0.8) 100%);
    backdrop-filter: blur(20px);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--neon-green);
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

.video-placeholder h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.video-placeholder p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vacancies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-photo-wrapper {
        height: 250px;
    }

    .video-placeholder {
        padding: 3rem 1.5rem;
    }

    .video-placeholder i {
        font-size: 3rem;
    }
}