@font-face {
    font-family: 'Akira Expanded Demo';
    src: url('fonts/Akira-Expanded-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --accent-green: #3BFF3B;
    --light-grey-text: #ccc;
    --dark-bg: #000;
    --white-separator: #fff;
    --card-bg-color: #0e0e0e;
    --max-content-width: 1200px;
    --content-alignment-padding: calc((100vw - var(--max-content-width)) / 2);
    --dot-color: rgba(0, 0, 0, 0.1);
    --pricing-card-dark-grey: #222222;
    --card-top-box-bg: rgba(34, 34, 34, 0.9);
    --menu-icon-bg: #111;

    --glass-background: rgba(255, 255, 255, 0.08);
    --glass-blur: 15px;
    --card-gradient-start: rgba(255, 255, 255, 0.1);
    --card-gradient-end: rgba(255, 255, 255, 0.05);
    
    --card-border-radius: 40px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Akira Expanded Demo', sans-serif;
    background-image: url('background-image.jpeg');
    background-size: cover;
    background-attachment: fixed;
    background-position: top center; 

    overflow-x: hidden;
    overflow-y: scroll; 
    color: var(--light-grey-text);
}

.btn:focus {
    outline: none;
}

/* --- SECTION 1: HERO SECTION STYLING --- */
.hero-section {
    position: relative;
    height: 100vh;
    background: transparent; 
    color: white;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.header-main-bar {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    z-index: 100;
    position: relative;
}

.header-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 7px; 
    z-index: 10;
    
}

.logo-image {
    height: 47px;
}

.navbar {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 10;
    width: auto;
}

.logo-separator {
    width: 80vw;
    max-width: 1000px;
    height: 0px;
    border-bottom: 1px solid var(--white-separator);
    margin: 40px auto 0 auto;
    position: relative;
    box-shadow: none;
    z-index: 10;
}

.menu-icon-img {
    height: 36px;
    width: 80px;
    cursor: pointer;
    z-index: 110;
    border-radius: 12px;
    padding: 5px 12px;
    transition: all 0.2s ease-in-out;
}

.menu-icon-img:hover {
    opacity: 0.8;
}

.nav-links {
    
    font-family: 'Akira Expanded Demo' ;
    list-style: none;
    position: absolute;
    top: 35px; 
        width: 185px;

    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 25px 50px 10px 30px; 
    
    border-radius: 5px;
    z-index: 105;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
}

.menu-icon-img:hover + .nav-links,
.nav-links:hover {
    max-height: 300px;
    opacity: 1;
    pointer-events: all;
    font-family: 'Akira Expanded Demo' ;
}

.menu-icon-img:hover + .nav-links,
.nav-links:hover {
    max-height: 300px;
    opacity: 1;
    pointer-events: all;
    font-family: 'Akira Expanded Demo' ;
}

.nav-link {
    color: var(--light-grey-text);
    font-size: 14px;
    transition: color 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 2.2;
    font-family: 'Akira Expanded Demo', ;
}

.nav-link:hover {
    color: var(--accent-green);
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    align-items: flex-start;
    text-align: left;
    margin-top: 100px;
}

.main-tagline {
    font-size: 5vw;
    line-height: 1.0;
    color: var(--accent-green);
    font-weight: normal;
    text-transform: uppercase;
    max-width: 100%;
}

.sub-tagline {
    max-width: 1000px;
    font-size: 13px;
    line-height: 1.6;
    color: #363636;
    margin: 20px 0;
    font-weight: 300;
    display: block;
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 9999px;
    margin-right: 20px;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 2px solid;
}

.btn:active {
    transform: scale(0.96);
}

.btn-primary {
    background-color: var(--accent-green);
    color: var(--dark-bg);
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(59, 255, 59, 0.5);
}

.btn-primary:hover {
    background-color: #4aff4a;
    box-shadow: 0 0 15px rgba(59, 255, 59, 0.8);
    transform: translateY(-2px);
    color: var(--dark-bg);
}

.btn-secondary {
    background-color: var(--dark-bg);
    color: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 5px rgba(59, 255, 59, 0.3);
}

.btn-secondary:hover {
    background-color: var(--accent-green);
    color: var(--dark-bg);
    box-shadow: 0 0 15px rgba(59, 255, 59, 0.8);
    transform: translateY(-2px);
}
/* --- SECTION 2: BEAUTIFIED PRICING SECTION --- */
.pricing-section {
    background-color: transparent; 
    padding: 80px var(--content-alignment-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    width: 100%;
}

.pricing-container {
    display: flex;
    gap: 50px;
    max-width: var(--max-content-width);
    width: 100%;
    justify-content: center;
    align-items: stretch;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    width: 50%;
    max-width: 600px;
    border-radius: 30px;
    text-align: center;
    border: 2px solid rgba(59, 255, 59, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(59, 255, 59, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1; 
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.01); 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(59, 255, 59, 0.3);
}

.pricing-card-premium {
    border: 2px solid var(--accent-green);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 30px rgba(59, 255, 59, 0.2);
}

.pricing-card-premium:hover {
    transform: translateY(-15px) scale(1.04); 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(59, 255, 59, 0.4);
}
.pricing-card-header {
    padding: 40px 30px 25px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid rgba(59, 255, 59, 0.2);
    position: relative;
}
.plan-tier-label {
    background: linear-gradient(135deg, var(--accent-green) 0%, #2ecc2e 100%);
    color: var(--dark-bg);
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: 3px;
    padding: 10px 30px;
    border-radius: 9999px;
    box-shadow: 0 4px 15px rgba(59, 255, 59, 0.4);
    position: relative;
    overflow: hidden;
}

.plan-tier-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.pricing-card:hover .plan-tier-label::before {
    width: 300px;
    height: 300px;
}

.plan-price {
    font-size: 4rem;
    font-weight: bold;
    color: white;
    line-height: 1;
    letter-spacing: -2px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(59, 255, 59, 0.3);
}

.currency-symbol {
    font-size: 2rem;
    color: var(--accent-green);
    margin-left: 5px;
    font-weight: bold;
    align-self: flex-start;
}

.per-month {
    font-size: 0.9rem;
    color: var(--light-grey-text);
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pricing-card-body {
    padding: 30px 30px;
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-description {
    font-family: sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--light-grey-text);
    margin-bottom: 25px;
    text-transform: none;
    text-align: center;
    padding: 0 10px;
}

.features-section {
    width: 100%;
    flex-grow: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-heading {
    color: var(--accent-green);
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(59, 255, 59, 0.3);
    position: relative;
}

.features-heading::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--accent-green);
}

.feature-list {
    list-style: none;
    text-align: left;
    margin: 0;
    color: var(--light-grey-text);
    font-size: 1rem;
    line-height: 1.1;
    width: 100%;
    font-family: 'Akira Expanded Demo';
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 15px;
}

.feature-list li {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.4;
    font-weight: 300;
    color: var(--light-grey-text);
    font-size: 0.85rem;
    padding: 10px 12px;
    text-transform: none;
    font-family: 'Akira Expanded Demo';
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid rgba(59, 255, 59, 0.3);
    transition: all 0.3s ease;
}

.feature-list li:hover {
    background: rgba(59, 255, 59, 0.05);
    border-left-color: var(--accent-green);
    transform: translateX(5px);
}

.feature-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-size: 1.2rem;
    margin-right: 12px;
    font-weight: bold;
    display: inline-block;
    flex-shrink: 0;
}

.feature-list li.premium-feature {
    background: rgba(59, 255, 59, 0.08);
    border-left: 3px solid var(--accent-green);
    box-shadow: 0 0 15px rgba(59, 255, 59, 0.1);
}

.feature-list li.premium-feature::before {
    content: '★';
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.premium-icon-img {
    height: 18px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-left: auto;
    opacity: 0.8;
    filter: brightness(1.2);
}

.pricing-card-footer {
    width: 100%;
    padding: 25px 30px 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(59, 255, 59, 0.1);
    flex-shrink: 0; 
}

.card-btn {
    display: block;
    padding: 14px 0;
    text-decoration: none;
    font-weight: bold;
    border-radius: 9999px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    border: 2px solid;
    text-align: center;
    width: 100%;
    letter-spacing: 2px;
    overflow: hidden;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.card-btn:hover::before {
    width: 400px;
    height: 400px;
}

.card-btn:active {
    transform: scale(0.97);
}

.card-btn-primary {
    background: linear-gradient(135deg, var(--accent-green) 0%, #2ecc2e 100%);
    color: var(--dark-bg);
    border-color: var(--accent-green);
    font-weight: bold;
}

.card-btn-primary:hover {
    transform: translateY(-3px);
}

.card-btn-secondary {
    background-color: transparent;
    color: var(--light-grey-text);
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 500;
}

.card-btn-secondary:hover {
    color: var(--accent-green);
    border-color: var(--accent-green);
    background-color: rgba(59, 255, 59, 0.05);
    transform: translateY(-2px);
}
/* --- SECTION 3: ABOUT US SECTION STYLES --- */
.about-us-section {
    background-color: var(--accent-green);
    background-image: radial-gradient(rgba(255, 255, 255, 0.4) 8%, transparent 10%);
    background-size: 15px 15px; 
    padding: 0;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0;
}

.about-us-container {
    width: 100%;
    max-width: 1600px;
    display: flex;
    height: 700px;
    min-height: 600px;
    padding-bottom: 0;
    align-items: flex-start;
    position: relative;
}

.about-us-text-content {
    flex: 0.8; 
    color: var(--dark-bg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding-top: 80px;
    padding-right: 60px;
    padding-left: calc(var(--content-alignment-padding) + 10px);
    padding-bottom: 80px;
    position: relative;
}

.about-us-title {
    font-size: 33px;
    line-height: 1;
    font-weight: normal;
    text-transform: uppercase;
    margin-top: -35px;
    margin-bottom: 0;
}

.about-us-description {
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 11px;
    max-width: 500px;
    text-transform: uppercase;
    text-align: left;
    margin-top: 470px;
    margin-bottom: 0;
    line-height: 200%;
}

.about-us-media-container {
    flex: 1.2; 
    display: flex;
    justify-content: center; 
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 30px 30px 30px 0; 
    height: 100%;
    min-height: 600px;
}

.video-overlay-logo {
    position: absolute;
    top: 50px; 
    right: 50px; 
    z-index: 5;
}

.video-logo-image {
    height: 50px;
}

.about-us-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    background-color: black;
    object-position: left center; 
}/* ------------------------------------------- */
@font-face {
    font-family: 'Akira Expanded Demo';
    src: url('fonts/Akira-Expanded-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --accent-green: #3BFF3B;
    --light-grey-text: #ccc;
    --dark-bg: #000;
    --card-bg-color: #0e0e0e;
    --max-content-width: 1200px;
    --content-alignment-padding: calc((100vw - var(--max-content-width)) / 2);
}


.outer-container {
    width: 100%;
    background-color: var(--card-bg-color);
    /* FIX: Reduced bottom padding to 20px to close the gap to the next box */
    padding: 70px 70px 20px 70px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1400px;
    width: 100%;
    border: 1px solid #a19f9f; 
    border-radius: 50px;
    padding: 60px; 
    background-color: #131313; 
        background-image: 
        radial-gradient(circle, #393838 1.4px, transparent 1px); 
    background-size: 15px 15px;
}

.header-box {
    border: 1px solid #a19f9f; 
    border-radius: 50px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.header-title {
    letter-spacing: 3px;
    text-transform: uppercase;
}

.header-title .highlight {
    color: #00ff41;
    font-size: 1.3rem;
}

.header-title .gray {
    color: #555;
    font-size: 1.8rem; 
}

.three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    border: 1px solid #a19f9f;   
    border-radius: 50px;
    padding: 40px 25px; 
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: 'Akira Expanded Demo';
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    text-align: center;
    white-space: nowrap;    
}

.card-description {
    font-family: 'Akira Expanded Demo';
    font-size: 0.5rem;
    line-height: 1.8;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    text-align: center;
}

.premium-section {
    border: 1px solid #a19f9f; 
    border-radius: 40px;
    padding: 30px;
    margin-bottom: 30px;
}

.premium-title {
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: #00ff41;
    text-transform: uppercase;
}

.premium-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.premium-card {
    border: 1px solid #a19f9f; 
    border-radius: 50px;
    padding: 40px 25px; 
    min-height: 240px;
    display: flex;
    flex-direction: column;
}

.premium-card-title {
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 80px;
    text-align: center;
}

.premium-card-description {
    font-family: 'Akira Expanded Demo';
    font-size: 0.5rem;
    line-height: 1.8;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    text-align: center;
}

.solid-bg-wrapper {
    width: 100%;
    background-color: var(--card-bg-color); 
    background-image: none !important; 
}
.puter-container {
    width: 100%;
    background-color: var(--card-bg-color); 
    padding: 70px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- PLATFORM DESCRIPTION SECTION STYLES (Start) --- */

.about-platform-section-outer {
    width: 100%;
    padding: 80px 0 20px 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--card-bg-color);
}

.about-platform-container {
    position: relative;
    min-height: 250px; 
    max-width: 1700px; 
    width: calc(100% - 80px); 
        background: #333333; 
    backdrop-filter: blur(0);
    border-radius: 65px; 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    
    padding: 80px 100px; 
    box-sizing: border-box;
    overflow: hidden;
    align-items: center;
}

.about-content {
    z-index: 10;
    max-width: 45%; 
    padding-right: 20px; 
    align-content: center;
}

.about-title {
    font-family: 'Akira Expanded Demo', sans-serif;
    font-weight: 800;
    font-size:30px;
    line-height: 1.2;
    color: #6d6b6b; 
    text-transform: uppercase;
    align-content: center;
    padding-top:45px;
}

.about-description {
    padding-top:10px;
    font-family: 'Akira Expanded Demo', sans-serif;
    font-weight: 800;
    font-size: 10px; 
    line-height: 18px; 
    color: #6d6b6b; 
    text-transform: uppercase;
    align-content: center;
}
.about-bg-graphic {
        position: absolute;
    right:120px; 
    top: 50%; 
    transform: translateY(-50%); 
    width: 400px; 
    height: auto; 
    
    object-fit: contain; 
    z-index: 1;
}

/* --- FOOTER SECTION STYLES (Start) --- */

.footer-outer-container {
    width: 100%;
    background-color: var(--card-bg-color);
    padding: 70px var(--content-alignment-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.footer-container {
    max-width: 1800px;
    width: 100%;
    
    background: rgba(51, 51, 51, 0.7); 
    backdrop-filter: blur(20px); 
    border-radius: 68px; 
    
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 50px; 
    padding-top: 90px; 
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    gap: 60px; 
    align-items: flex-end; 
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    flex-shrink: 0;
    align-items: flex-start; 
    
    margin-right: 0;
    padding-top: 0; 
}

.footer-icon-small {
    position: absolute; 
    
    width: 60px; 
    height: 54px; 
    object-fit: contain; 
    filter: grayscale(100%); 
    opacity: 0.14; 
    display: block; 
    
    top: 15px;   
    left: 40px; 
    
    transform: none; 
    margin-top: 20px;
    z-index: 100; 
}

.social-icons {
    display: flex;
    flex-direction: row; 
    gap: 7px; 
}

.social-link {
    width: 25px; 
    height:25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4949;
    transition: all 0.3s ease;
    border: none; 
    border-radius: 0; 
    transform: translateY(0); 
}

.social-link:hover {
    color: var(--accent-green);
    border-color: transparent; 
    transform: translateY(-2px); 
}

.social-link svg {
    width: 80%; 
    height: 80%;
}

.footer-links-section {
    flex: 1;
    display: flex;
    gap: 15px; 
    justify-content: flex-end; 
    line-height: 10px;
    margin-top: 0; 
}

.footer-column {
    padding-top: 29px;
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 150px; 
}

.footer-column-title {
    font-size: 0.8rem; 
    color: #6d6b6b; 
    text-transform: uppercase;
    margin-bottom: 0px; 
    font-weight: bold;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0px; 
    padding: 0;
    margin: 0;
}

.footer-links-list li a {
    font-family: 'Akira Expanded Demo';
    font-size: 0.4rem; 
    color: #6d6b6b; 
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.1; 
}

.footer-links-list li a:hover {
    color: var(--accent-green);
    transform: translateX(3px);
}

/* --- FOOTER RESPONSIVENESS  --- */

.footer-outer-container {
    width: 100%;
    background-color: var(--card-bg-color);
    padding: 30px var(--content-alignment-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.footer-container {
    max-width: 1800px;
    width: 100%;
    
    background: rgba(51, 51, 51, 0.7); 
    backdrop-filter: blur(20px); 
    border-radius: 68px; 
    
    border: 1px solid rgba(255, 255, 255, 0.1); 
    padding: 50px; 
    padding-top: 90px; 
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    gap: 60px; 
    align-items: flex-end; 
}

.footer-logo-social {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    flex-shrink: 0;
    align-items: flex-start; 
    
    margin-right: 0;
    padding-top: 0; 
}

.footer-icon-small {
    position: absolute; 
    
    width: 60px; 
    height: 54px; 
    object-fit: contain; 
    filter: grayscale(100%); 
    opacity: 0.14; 
    display: block; 
    
    top: 15px;   
    left: 40px; 
    
    transform: none; 
    margin-top: 20px;
    z-index: 100; 
}

.social-icons {
    display: flex;
    flex-direction: row; 
    gap: 7px; 
}

.social-link {
    width: 25px; 
    height:25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a4949;
    transition: all 0.3s ease;
    border: none; 
    border-radius: 0; 
    transform: translateY(0); 
}

.social-link:hover {
    color: var(--accent-green);
    border-color: transparent; 
    transform: translateY(-2px); 
}

.social-link svg {
    width: 80%; 
    height: 80%;
}

.footer-links-section {
    flex: 1;
    display: flex;
    gap: 15px; 
    justify-content: flex-end; 
    line-height: 10px;
    margin-top: 0; 
}

.footer-column {
    padding-top: 29px;
    flex-grow: 0;
    flex-shrink: 0;
    min-width: 150px; 
}

.footer-column-title {
    font-size: 0.8rem; 
    color: #6d6b6b; 
    text-transform: uppercase;
    margin-bottom: 0px; 
    font-weight: bold;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0px; 
    padding: 0;
    margin: 0;
}

.footer-links-list li a {
    font-family: 'Akira Expanded Demo';
    font-size: 0.4rem; 
    color: #6d6b6b; 
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.9; 
}

.footer-links-list li a:hover {
    color: var(--accent-green);
    transform: translateX(3px);
}
@font-face {
    font-family: 'Akira Expanded Demo';
    /* Placeholder URL: Ensure you have this font file locally */
    src: url('fonts/Akira-Expanded-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --login-accent-green: #00FF41; /* Bright Green */
    --login-text-color-gray: #6d6b6b; 
    --login-input-bg: #4a4949;
    --login-input-border: #6d6b6b;
        --accent-green: #3BFF3B;
    --light-grey-text: #ccc;
    --dark-bg: #000;
    --white-separator: #fff;
    --card-bg-color: #0e0e0e;
    --max-content-width: 1200px;
    --content-alignment-padding: calc((100vw - var(--max-content-width)) / 2);
    --dot-color: rgba(0, 0, 0, 0.1);
    --pricing-card-dark-grey: #222222;
    --card-top-box-bg: rgba(34, 34, 34, 0.9);
    --menu-icon-bg: #111;
    --glass-background: rgba(255, 255, 255, 0.08);
    --glass-blur: 15px;
    --card-gradient-start: rgba(255, 255, 255, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.login-page-container {
    width: 100vw;
    height: 100vh;
    background: url('login.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center; 
    position: relative;
}

.login-page-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
}


.login-card-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    width: 90%;
    max-width: 1500px;
    height: auto; 
    max-height: 90vh; 
    overflow: auto; 
    
    background: rgba(20,20,20,0.60);
    border-radius: 60px;
    overflow: hidden; 
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}

.login-card-left {
    flex: 1.15;
    margin: 25px;
    border-radius: 45px;
    background: url('login.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding:25px 35px;
}

.login-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 45px;
}

.welcome-text-left {
    position: relative;
    font-size: 19px;
    font-weight: 800;
    color: white;
    width: 80%;
}

.progress-text-green {
    color: var(--login-accent-green);
    font-size: 12px;
    margin-top: 12px;
}

/* RIGHT PANEL */
.login-card-right {
    flex: 1;
    padding: 30px 90px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 15px;
}

.login-logo {
    width: 100px;
}

/* TEXTS */
.welcome-text-right {
    font-size:19px;
    text-align: center;
    color: #c8c6c6;
    margin-top: 40px;
    margin-bottom: 0px;
}

.subtitle {
    text-align: center;
    font-size: 7px;
    color: #a2a2a2;
    margin-bottom: 30px;
    margin-top: 5px;
}

/* FORM */
.login-form {
    width: 100%;
    margin-bottom: 5px; 
}

.login-form label {
    font-size: 9px;
    margin-bottom: 6px;
    display: block;
    color: var(--login-text-color-gray);
    letter-spacing: 1.5px;
}

.login-form input {
    width: 100%;
    background: var(--login-input-bg);
    padding:8px;
    border-radius: 20px;
    border: 1px solid var(--login-input-border);
    margin-bottom: 20px;
    color: white;
    font-size: 15px;
}

/* --- LOGIN PAGE STYLING (LOGIN.HTML) --- */

.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 10px;
}

.remember-me {
    display: flex;
    gap: 8px;
    color: var(--login-text-color-gray);
    font-size: 8px;
    align-items: center; 
    line-height: 1; 
    margin-bottom: 20px;
}

.remember-me input {
    width: 15px;
    height: 15px;
    accent-color: var(--login-accent-green);
    margin: 0; 
    vertical-align: middle; 
}

.remember-me label {
    font-weight: 1300; 
    transform: translateY(3px);
}

.forgot-password {
    font-size: 8px;
    color: var(--login-text-color-gray); 
    text-decoration: none;
    line-height: 1; 
    font-weight: 400; 
        margin-bottom: 20px;

}
.btn-login {
    width: 100%;
    border: none;
    padding: 9px; 
    font-family: 'Akira Expanded Demo';
    border-radius: 20px;
    background: var(--login-accent-green);
    color: rgb(32, 32, 32);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-google {
    width: 100%;
    padding:6px; 
    border: none;
        font-family: 'Akira Expanded Demo';

    border-radius: 20px;
    background: #606060; 
    color: rgb(183, 183, 183); 
    text-transform: uppercase;
    font-weight: 800; 
    cursor: pointer;
    transition: background 0.3s;
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.btn-google:hover {
    background-color: #707070;
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.signup-text {
    text-align: center;
    color: #9f9f9f;
    font-size: 11px;
    
    margin-top: 10px; 
    
    margin-bottom: 30px; 
}
.signup-link {
    color: var(--login-accent-green);
    text-decoration: none;
}

.signup-link:hover {
    text-decoration: underline;
}

.register-page-container {
    width: 100vw;
    height: 100vh;
    background: url('signup.jpg') center/cover no-repeat; 
    justify-content: center;
    align-items: center; 
    position: relative;
}

.register-page-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.40);
}

.register-card-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    width: 90%;
    max-width: 1500px;
    height: auto; 
    max-height: 90vh; 
    overflow: auto; 
    
    background: rgba(20,20,20,0.60);
    border-radius: 60px;
    overflow: hidden; 
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Left Image Panel  */
.register-card-left {
    flex: 1.15;
    margin: 25px;
    border-radius: 45px;
    background: url('signup.jpg') center/cover;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding:25px 35px;
}

.register-card-left::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 45px;
}

.register-welcome-text-left {
    position: relative;
    font-size: 19px;
    font-weight: 800;
    color: white;
    width: 80%;
}

.register-progress-text-green {
    color: var(--login-accent-green);
    font-size: 12px;
    margin-top: 12px;
}

/* Right Panel  */
.register-card-right {
    flex: 1;
    padding: 30px 90px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.register-logo-container {
    display: flex;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 15px;
}

.register-logo {
    width: 100px;
}

.register-welcome-text-right {
    font-size:19px;
    text-align: center;
    color: #c8c6c6;
    margin-top: 40px;
    margin-bottom: 0px;
}

.register-subtitle {
    text-align: center;
    font-size: 7px;
    color: #a2a2a2;
    margin-bottom: 30px;
    margin-top: 5px;
}

.register-form {
    width: 100%;
    margin-bottom: 5px; 
}

.register-form label {
    font-size: 9px;
    margin-bottom: 6px;
    display: block;
    color: var(--login-text-color-gray);
    letter-spacing: 1.5px;
}

.register-form input {
    width: 100%;
    background: var(--login-input-bg);
    padding:8px;
    border-radius: 20px;
    border: 1px solid var(--login-input-border);
    margin-bottom: 20px;
    color: white;
    font-size: 15px;
}

.btn-register {
    margin-top: 15px;
    width: 100%;
    border: none;
    padding: 9px; 
    font-family: 'Akira Expanded Demo';
    border-radius: 20px;
    background: var(--login-accent-green);
    color: rgb(32, 32, 32);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.login-text {
    text-align: center;
    color: #9f9f9f;
    font-size: 11px;
    /* Reduced margin from previous steps */
    margin-top: 10px; 
    margin-bottom: 30px;
}

.login-link {
    color: var(--login-accent-green);
    text-decoration: none;
}

.login-link:hover {
    text-decoration: underline;
}
/* Main Page Layout */
.page-container-detail {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--dark-bg);
    color: var(--light-grey-text);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

.navbar-top-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--content-alignment-padding); 
    background-color: #0e0e0e; 
    position: relative; 
    border-bottom: none; 
    box-shadow: none; 
}

.navbar-top-detail::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%); 
        width: 80vw;
    max-width: 1000px;
    height: 0px; 
    border-bottom: 1.5px solid #444444; 
    box-shadow: none;
    z-index: 10;
}




.logo-container-detail {
}

.logo-image-detail {
    width: 50px; 
    height: auto;
}

.nav-right-icons {
    display: flex;
    gap: 30px;
}
.username-display {
    position: absolute; 
    left: 50%;
    transform: translateX(-50%); 
    font-family: 'Akira Expanded Demo', sans-serif; 
    font-size: 20px; 
    font-weight: bold;
    color: #797878; 
    letter-spacing: 2px;
    padding-top: 5px; 
    z-index: 1; 
}


.icon-emoji {
    font-size: 18px;
}

.main-content-detail-area {
    flex-grow: 1;
    padding: 40px var(--content-alignment-padding);
    display: flex;
    flex-direction: column;
    background-color: #0e0e0e; 
    gap: 30px;
}

.top-session-cards {
    display: grid;
    grid-template-columns: 0.3fr 0.3fr 0.4fr; 
    gap: 20px;
    margin-bottom: 20px;
}

.top-stat-card {
    background-color: #0e0e0e;
    border: 1px solid rgba(59, 255, 59, 0.3);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s;
}

.top-stat-card:hover {
    transform: translateY(-5px);
}

.card-icon-emoji {
    font-size: 30px;
    margin-bottom: 10px;
}

.card-title-small {
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 10px;
    color: var(--light-grey-text);
    letter-spacing: 1.5px;
}

.top-user-card {
    background-color: var(--accent-green);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #000; 
}

.user-greeting {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.user-name-placeholder {
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 24px;
    margin: 0;
}


.dotted-main-container {
  
     background-color: #131313;

    position: relative;

    overflow: hidden;


    border: 2px dashed rgba(59, 255, 59, 0.4);

    min-height: 450px;



     max-width: 80vw; 

    width: 80vw; 

    margin: 0 auto;

    border: 1px solid #a19f9f;

    border-radius: 50px;

padding: 20px 60px 40px 60px; 

    background-image:

        radial-gradient(circle, #393838 1.4px, transparent 1px);

    background-size: 15px 15px;

   
}

.container-title {
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 18px;
    color: var(--accent-green);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.focus-area-content {
    display: grid;
    grid-template-columns: 1fr 2fr; 
    gap: 15px; 
    height: 300px; 
    position: relative;
    z-index: 2;
}
.focus-box {
    margin-top: 30px;
    border-radius: 20px; 
    position: relative;
}
.focus-box-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 0; 
    border-radius: 30px;
    border: 1px solid var(--accent-green);
    margin-right: 15px; 
}

.focus-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

/* --- Right Center Image Box --- */
.focus-box-right {
    position: relative;
    border-radius: 30px; 
    border: 1px solid #a19f9f;
    overflow: hidden;
}

/* Le conteneur du texte et de l'icône */
.overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/* Left Pattern Box */
.focus-box-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 40px 0; 
    border-radius: 30px;
    border: 1px solid var(--accent-green);
    margin-right: 15px; 
}

.focus-background-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.focus-box-right {
    position: relative;
    border-radius: 30px; 
    border: 1px solid #a19f9f;
    overflow: hidden;
}

.overlay-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay-icon {
    width: 80px; 
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(59, 255, 59, 0.4));
}

.overlay-text {
    font-family: 'Akira Expanded Demo', sans-serif;
    color: var(--accent-green);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.focus-center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9) contrast(1.1); 
    opacity: 1;
}

.focus-box-right:hover .focus-center-image {
    opacity: 0.9;
}

.center-text-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: transparent; 
    color: var(--accent-green);
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 30px; 
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0;
    line-height: 1;
    z-index: 10;
}
.overlay-text {
    font-family: 'Akira Expanded Demo', sans-serif;
    color: var(--accent-green);
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1.2;
}

.focus-center-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.9) contrast(1.1); 
    opacity: 1;
}

.focus-box-right:hover .focus-center-image {
    opacity: 0.9;
}

.center-text-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: transparent; 
    color: var(--accent-green);
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 30px; 
    font-weight: bold;
    letter-spacing: 2px;
    padding: 0;
    line-height: 1;
    z-index: 10;
}


.three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px; /
    z-index: 2;
    position: relative;
}
.card {
    border: 1px solid #a19f9f;   
    border-radius: 50px;
    padding: 40px 25px; 
    min-height: 280px;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;     
    background-color: transparent; 
    transition: border-color 0.3s, box-shadow 0.3s; 
}

.card:hover {
    border-color: var(--accent-green); /* Highlight border on hover */
}

.card-title1 {
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555; 
    margin-bottom: 0;     
    text-align: left;
    font-family: 'Akira Expanded Demo', sans-serif;
    line-height: 1; 
}

.card-description {
    font-family: 'Akira Expanded Demo', sans-serif;
    font-size: 0.5rem; 
    line-height: 1.8;
    color: #666; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto; 
    text-align: center;
    margin-bottom: 0; 
}

.top-centered-buttons {
    display: flex;
    justify-content: center; 
    gap: 10px; 
    margin-bottom: 20px; 
    position: relative; 
    z-index: 5; 
}

.action-button {
    width: 40px; 
    height: 40px;
    background-color: #383737; 
border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.action-button:hover {
    background-color: #333333;
}

.button-icon img {
    width: 20px; 
    height: 20px;
     
}
@font-face {
    font-family: 'Akira Expanded Demo';
    src: url('fonts/Akira-Expanded-Demo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --accent-green: #3BFF3B;
    --light-grey-text: #ccc;
    --dark-bg: #000;
    --white-separator: #fff;
    --card-bg-color: #0e0e0e;
    --max-content-width: 1200px;
    --content-alignment-padding: calc((100vw - var(--max-content-width)) / 2);
    --dot-color: rgba(0, 0, 0, 0.1);
    --pricing-card-dark-grey: #222222;
    --card-top-box-bg: rgba(34, 34, 34, 0.9);
    --menu-icon-bg: #111;

    --glass-background: rgba(255, 255, 255, 0.08);
    --glass-blur: 15px;
    --card-gradient-start: rgba(0, 0, 0, 0.6);
}

.page-container-detail {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--dark-bg);
    color: var(--light-grey-text);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

.navbar-top-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--content-alignment-padding); 
    background-color: #0e0e0e; 
    position: relative; 
    border-bottom: none;
    box-shadow: none;
}

.navbar-top-detail::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%); 
    width: 80vw;
    max-width: 1000px;
    height: 0px; 
    border-bottom: 1.5px solid #444444; 
    box-shadow: none;
    z-index: 10;
}

.logo-image-detail {
    width: 50px; 
    height: auto;
}

.username-display {
    position: absolute; 
    left: 50%;
    transform: translateX(-50%); 
    font-family: 'Akira Expanded Demo', sans-serif; 
    font-size: 20px; 
    font-weight: bold;
    color: #797878;
    letter-spacing: 2px;
    padding-top: 5px; 
    z-index: 1; 
}

.menu-icon-img-detail {
    height: 36px;
    width: 80px;
    cursor: pointer;
    z-index: 110;
    border-radius: 12px;
    padding: 5px 12px;
    transition: all 0.2s ease-in-out;
}

.menu-icon-img-detail:hover {
    opacity: 0.8;
}

.nav-links-detail {
    list-style: none;
    position: absolute;
    font-family: 'Akira Expanded Demo' ;
    top: 35px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 25px 50px 10px 30px;
    border-radius: 5px;
    z-index: 105;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
}

.menu-icon-img-detail:hover + .nav-links-detail,
.nav-links-detail:hover {
    max-height: 400px; 
    opacity: 1;
    pointer-events: all;
}

.nav-link-detail {
    color: var(--light-grey-text);
    font-size: 14px;
    transition: color 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 2.2;
    font-family: 'Akira Expanded Demo' ;
}

.nav-link-detail:hover {
    color: var(--accent-green);
}

.main-content-detail-area {
    flex-grow: 1;
    padding: 40px var(--content-alignment-padding);
    display: flex;
    flex-direction: column;
    background-color: #0e0e0e; 
    gap: 30px;
}

.top-centered-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; 
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.action-button {
    width: 40px; 
    height: 40px;
    background-color: #383737; 
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.action-button:hover {
    background-color: #333333;
}

.button-icon img {
    width: 20px;
    height: 20px;
}

.dotted-main-container { 
     background-color: #131313;
    position: relative;
    overflow: hidden;
    border: 2px dashed rgba(59, 255, 59, 0.4);
    min-height: 450px;
     max-width: 80vw; 
    width: 80vw; 
    margin: 0 auto;
     border: 1px solid #a19f9f;
 border-radius: 50px;
padding: 20px 60px 40px 60px; 
    background-image:
        radial-gradient(circle, #393838 1.4px, transparent 1px);
    background-size: 15px 15px;

.page-container-detail {
    width: 100vw;
    min-height: 100vh;
    background-color: var(--dark-bg);
    color: var(--light-grey-text);
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-direction: column;
}

.navbar-top-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--content-alignment-padding); 
    background-color: #0e0e0e; 
    position: relative; 
    border-bottom: none;
    box-shadow: none;
}

.navbar-top-detail::after {
    content: '';
    position: absolute;
    bottom: 0; 
    left: 50%;
    transform: translateX(-50%); 
    width: 80vw;
    max-width: 1000px;
    height: 0px; 
    border-bottom: 1.5px solid #444444; 
    box-shadow: none;
    z-index: 10;
}


.logo-image-detail {
    width: 50px; 
    height: auto;
}

.username-display {
    position: absolute; 
    left: 50%;
    transform: translateX(-50%); 
    font-family: 'Akira Expanded Demo', sans-serif; 
    font-size: 20px; 
    font-weight: bold;
    color: #797878;
    letter-spacing: 2px;
    padding-top: 5px; 
    z-index: 1; 
}


.menu-icon-img-detail {
    height: 36px;
    width: 80px;
    cursor: pointer;
    z-index: 110;
    border-radius: 12px;
    padding: 5px 12px;
    transition: all 0.2s ease-in-out;
}

.menu-icon-img-detail:hover {
    opacity: 0.8;
}

.nav-links-detail {
    list-style: none;
    position: absolute;
    font-family: 'Akira Expanded Demo' ;
    top: 35px;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    padding: 25px 50px 10px 30px; 
    border-radius: 5px;
    z-index: 105;
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    pointer-events: none;
}

.menu-icon-img-detail:hover + .nav-links-detail,
.nav-links-detail:hover {
    max-height: 400px; 
    opacity: 1;
    pointer-events: all;
}

.nav-link-detail {
    color: var(--light-grey-text);
    font-size: 14px;
    transition: color 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 2.2;
    font-family: 'Akira Expanded Demo' ;
}

.nav-link-detail:hover {
    color: var(--accent-green);
}

.main-content-detail-area {
    flex-grow: 1;
    padding: 40px var(--content-alignment-padding);
    display: flex;
    flex-direction: column;
    background-color: #0e0e0e; 
    gap: 30px;
}

.top-centered-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; 
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}

.action-button {
    width: 40px; 
    height: 40px;
    background-color: #383737; 
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s, border-color 0.2s;
}

.action-button:hover {
    background-color: #333333;
}

.button-icon img {
    width: 20px;
    height: 20px;
}

.dotted-main-container {
 
    background-color: #131313;

    position: relative;

    overflow: hidden;

    min-height: 450px;


    max-width: 80vw; 
    
    margin: 0 auto;

    border: 1px solid #a19f9f;

    border-radius: 50px;

    padding: 20px 60px 40px 60px; 


    background-image:
        radial-gradient(circle, #393838 1.4px, transparent 1px);

    background-size: 15px 15px;

    
}
.card {
    border: 1px solid #a19f9f; 	
    border-radius: 40px;
    background-color: transparent; 
    transition: border-color 0.3s, box-shadow 0.3s; 
}

.card:hover {
    border-color: var(--accent-green);
}

.focus-main-card {
    padding: 40px 60px; 
    min-height: 190px; 
    margin-bottom: 20px; 

    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Bottom */
    align-items: flex-start; /* Left */
}

.focus-main-card.card:hover {
    border-color: #a19f9f; 
    box-shadow: none; 
}

.card-title-main {
    display: inline-block; 
    padding-right: 79%; 
    margin-left: 0; 
    
    font-size: 1.5rem; 
    letter-spacing: 2px;
    text-transform: focus-main-card carduppercase;
    color: #555; 
    
    text-align: left; 
    font-family: 'Akira Expanded Demo', sans-serif;
    line-height: 1; 
    white-space: nowrap; 
}
* {
    font-family: 'Akira Expanded Demo', sans-serif !important;
}

.tactic-session-details-card {
    display: flex;
    flex-direction: row;
    padding: 35px;       
    border-radius: 30px;
    min-height: 400px;
    align-items: flex-start;
        box-shadow: none !important; 
    border: 1px solid #a19f9f; 
.tactic-video-container {
    position: relative;
    z-index: 1;
    pointer-events: auto !important; 
}

.tactic-video-container iframe {
    position: relative;
    z-index: 2;
    pointer-events: auto !important;
    display: block;
}

.video-shield {
    display: none !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.video-item-card {
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 255, 59, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.main-content-detail-area, .dotted-main-container {
    pointer-events: auto !important;
}