/* ==================== */
/* CSS RESET & BASE     */
/* ==================== */

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

:root {
    --primary-blue: #2d7dff;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: #12121a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --grid-color: rgba(45, 125, 255, 0.1);
    --glow: rgba(45, 125, 255, 0.5);
}

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

/* ==================== */
/* CYBER GRID BACKGROUND */
/* ==================== */

.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(50px);
    }
}

/* ==================== */
/* NAVIGATION BAR       */
/* ==================== */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(45, 125, 255, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), #5a9fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-btn {
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #5a9fff);
    border-radius: 6px;
    font-weight: 500;
}

.nav-btn:hover {
    color: var(--text-primary);
    box-shadow: 0 0 20px var(--glow);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

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

.language-switcher a:hover,
.language-switcher a.lang-active {
    color: var(--primary-blue);
}

.lang-divider {
    color: var(--text-secondary);
}

/* ==================== */
/* HERO SECTION         */
/* ==================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow) 0%, transparent 70%);
    opacity: 0.2;
    z-index: -1;
}

.hero-container {
    max-width: 900px;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-logo img {
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 0 30px var(--glow));
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== */
/* BUTTONS              */
/* ==================== */

.btn {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #5a9fff);
    color: var(--text-primary);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--glow);
}

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

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* ==================== */
/* SECTIONS             */
/* ==================== */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== */
/* PRODUCTS SECTION     */
/* ==================== */

.products {
    background: var(--darker-bg);
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(45, 125, 255, 0.2);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 40px rgba(45, 125, 255, 0.3);
}

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.product-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.product-link:hover {
    transform: translateX(5px);
}

/* ==================== */
/* BLOG SECTION         */
/* ==================== */

.blog {
    padding: 5rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(45, 125, 255, 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(45, 125, 255, 0.3);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-title {
    font-size: 1.3rem;
    margin: 0.5rem 0 1rem;
    color: var(--text-primary);
}

.blog-excerpt {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-link:hover {
    transform: translateX(5px);
}

/* ==================== */
/* TRAINING SECTION     */
/* ==================== */

.training {
    background: var(--darker-bg);
    padding: 5rem 0;
}

.training-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.training-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.training-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid rgba(45, 125, 255, 0.2);
}

.feature-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-blue), #5a9fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ==================== */
/* AUTH PAGES STYLES    */
/* ==================== */

.auth-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
}

.auth-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.auth-card {
    flex: 1;
    max-width: 500px;
    background: var(--card-bg);
    border: 1px solid rgba(45, 125, 255, 0.2);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-logo {
    margin-bottom: 1.5rem;
}

.auth-logo img {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 20px var(--glow));
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-link-right {
    font-size: 0.85rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.form-link-right:hover {
    text-decoration: underline;
}

.form-input {
    padding: 0.9rem 1.2rem;
    background: var(--darker-bg);
    border: 1px solid rgba(45, 125, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(45, 125, 255, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.form-checkbox label {
    cursor: pointer;
    user-select: none;
}

.form-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.form-link:hover {
    text-decoration: underline;
}

.btn-full {
    width: 100%;
    margin-top: 0.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.auth-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(45, 125, 255, 0.2);
}

.auth-divider span {
    position: relative;
    background: var(--card-bg);
    padding: 0 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 1.5rem;
    background: var(--darker-bg);
    border: 1px solid rgba(45, 125, 255, 0.3);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: rgba(45, 125, 255, 0.1);
    border-color: var(--primary-blue);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.auth-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-box {
    background: var(--card-bg);
    border: 1px solid rgba(45, 125, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: var(--primary-blue);
    transform: translateX(5px);
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-icon-small svg {
    width: 100%;
    height: 100%;
}

.feature-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-box p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ==================== */
/* FOOTER               */
/* ==================== */

.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(45, 125, 255, 0.2);
    padding: 2rem 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* ==================== */
/* TOOL DETAIL PAGE     */
/* ==================== */

.tool-detail {
    padding: 8rem 0 4rem;
    min-height: 100vh;
}

.tool-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.tool-detail-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tool-detail-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tool-detail-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
}

.tool-detail-image {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(45, 125, 255, 0.3);
    box-shadow: 0 10px 40px rgba(45, 125, 255, 0.2);
}

.tool-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tool-detail-description {
    margin-bottom: 3rem;
}

.tool-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.tool-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.tool-cta-section {
    margin-bottom: 3rem;
}

.tool-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tool-cta-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(45, 125, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tool-cta-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(45, 125, 255, 0.3);
}

.tool-cta-icon {
    width: 50px;
    height: 50px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.tool-cta-icon svg {
    width: 100%;
    height: 100%;
}

.tool-cta-content {
    flex: 1;
}

.tool-cta-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.tool-cta-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tool-cta-arrow {
    font-size: 1.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.tool-cta-card:hover .tool-cta-arrow {
    transform: translateX(5px);
}

.tool-training-section {
    margin-top: 4rem;
}

.tool-training-banner {
    background: linear-gradient(135deg, rgba(45, 125, 255, 0.1), rgba(45, 125, 255, 0.05));
    border: 2px solid var(--primary-blue);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.tool-training-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-blue);
}

.tool-training-icon svg {
    width: 100%;
    height: 100%;
}

.tool-training-content {
    max-width: 700px;
}

.tool-training-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tool-training-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tool-training-cta {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-top: 1rem;
}

/* ==================== */
/* RESPONSIVE DESIGN    */
/* ==================== */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero {
        padding: 6rem 1rem 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .products-grid,
    .blog-grid,
    .training-features {
        grid-template-columns: 1fr;
    }

    .section-container {
        padding: 3rem 1rem;
    }

    /* Tool detail responsive adjustments */
    .tool-detail {
        padding: 6rem 0 2rem;
    }

    .tool-detail-title {
        font-size: 2rem;
    }

    .tool-detail-subtitle {
        font-size: 1.1rem;
    }

    .tool-section-title {
        font-size: 1.6rem;
    }

    .tool-description-text {
        font-size: 1rem;
    }

    .tool-cta-grid {
        grid-template-columns: 1fr;
    }

    .tool-cta-card {
        flex-direction: column;
        text-align: center;
    }

    .tool-training-banner {
        padding: 2rem;
    }

    .tool-training-title {
        font-size: 1.6rem;
    }

    .tool-training-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo img {
        width: 150px;
        height: 150px;
    }

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

    /* Mobile adjustments for tool detail */
    .tool-detail-title {
        font-size: 1.6rem;
    }

    .tool-detail-subtitle {
        font-size: 1rem;
    }

    .tool-section-title {
        font-size: 1.4rem;
    }

    .tool-description-text {
        font-size: 0.95rem;
    }

    .tool-training-banner {
        padding: 1.5rem;
    }

    .tool-training-icon {
        width: 60px;
        height: 60px;
    }
}

/* ==================== */
/* AUTH RESPONSIVE      */
/* ==================== */

@media (max-width: 968px) {
    .auth-container {
        flex-direction: column;
        align-items: center;
    }

    .auth-card {
        max-width: 100%;
    }

    .auth-features {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 6rem 1rem 2rem;
    }

    .auth-card {
        padding: 2rem;
    }

    .auth-title {
        font-size: 1.6rem;
    }

    .feature-box {
        padding: 1.5rem;
    }
}

.footer-nav {
    margin-top: 8px;
    display: flex;
    gap: 10px;
    justify-content: center;
    font-size: 14px;
}

.footer-link {
    color: #9ca3af; /* gri */
    text-decoration: none;
    transition: 0.2s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-sep {
    color: #555;
}


/* TRAINING CONTENT     */
/* ==================== */

.tool-training-content-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(45, 125, 255, 0.2);
}

.training-video-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.training-video-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(45, 125, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.training-video-item:hover {
    border-color: var(--primary-blue);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(45, 125, 255, 0.2);
}

.video-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue), #5a9fff);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(45, 125, 255, 0.3);
}

.video-info {
    flex: 1;
}

.video-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    line-height: 1.4;
}

.video-duration {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-duration::before {
    content: "⏱";
    font-size: 1rem;
}

/* ==================== */
/* RESPONSIVE DESIGN    */
/* ==================== */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .products-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
    }

    .auth-container {
        flex-direction: column;
    }

    .auth-features {
        order: -1;
    }

    .tool-detail-title {
        font-size: 2rem;
    }

    .tool-detail-subtitle {
        font-size: 1.1rem;
    }

    .tool-cta-grid {
        grid-template-columns: 1fr;
    }

    .tool-training-banner {
        padding: 2rem;
    }

    .training-video-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .video-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}
