:root {
    --primary-color: #91ff00;
    --secondary-color: #000000;
    --dark-color: #121212;
    --darker-color: #0a0a0a;
    --light-color: #f8f9fa;
    --accent-color: #8338EC;
    --success-color: #06D6A0;
    --youtube-red: #FF0000;
    --twitter-blue: #1DA1F2;
    --instagram-purple: #E1306C;
    --discord-blurple: #5865F2;
    --tiktok-black: #010101;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-color);
    background-color: var(--darker-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: white;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

span {
    color: var(--primary-color);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(145, 255, 0, 0.3);
}

.btn-primary:hover {
    background-color: #7ae600;
    border-color: #7ae600;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(145, 255, 0, 0.4);
    color: var(--secondary-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(145, 255, 0, 0.3);
}

.btn-load-more {
    position: relative;
    padding-right: 2.5rem;
}

.btn-load-more i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(-50%) translateY(5px);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--darker-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(145, 255, 0, 0.2);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.3;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(145, 255, 0, 0.1);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Titan One', cursive;
    font-size: 1.8rem;
    color: white !important;
}

.navbar-brand span {
    color: var(--primary-color);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link.active::before {
    width: 100%;
}

/* Theme Switch */
.theme-switch-wrapper {
    display: flex;
    align-items: center;
}

.theme-switch {
    display: inline-block;
    height: 24px;
    position: relative;
    width: 50px;
}

.theme-switch input {
    display: none;
}

.slider {
    background-color: #444;
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider:before {
    background-color: #fff;
    bottom: 4px;
    content: "";
    height: 16px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 16px;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--darker-color) 0%, var(--dark-color) 100%);
    color: white;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content h1 span {
    display: block;
    color: var(--primary-color);
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(145, 255, 0, 0.1);
    z-index: 1;
    animation: pulse 3s ease-out infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    70% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons .youtube {
    background-color: var(--youtube-red);
}

.social-icons .twitter {
    background-color: var(--twitter-blue);
}

.social-icons .instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons .discord {
    background-color: var(--discord-blurple);
}

.social-icons .tiktok {
    background-color: var(--tiktok-black);
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23121212" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23121212" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23121212"/></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.brawl-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 5s infinite;
}

.star-1 {
    width: 3px;
    height: 3px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.star-2 {
    width: 2px;
    height: 2px;
    top: 40%;
    left: 80%;
    animation-delay: 1s;
}

.star-3 {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes twinkle {
    0% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 0.8; transform: scale(1.2); }
    100% { opacity: 0; transform: scale(0.5); }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.about-content h3 {
    margin-bottom: 1.5rem;
    color: white;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.youtube-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background-color: rgba(145, 255, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(145, 255, 0, 0.1);
    min-width: 120px;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(145, 255, 0, 0.1);
    border-color: rgba(145, 255, 0, 0.3);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.skills-section {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(145, 255, 0, 0.1);
    backdrop-filter: blur(5px);
}

.skills-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.skill-item {
    margin-bottom: 1.5rem;
}

.skill-name {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
}

.skill-name span {
    color: var(--primary-color);
}

.progress {
    height: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: linear-gradient(to right, var(--primary-color), #c8ff7a);
    border-radius: 5px;
}

/* Videos Section */
.videos-section {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.video-card {
    background-color: rgba(18, 18, 18, 0.8);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(145, 255, 0, 0.05);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(145, 255, 0, 0.1);
    border-color: rgba(145, 255, 0, 0.2);
}

.video-card.featured {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.video-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(145, 255, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--youtube-red);
    font-size: 1.5rem;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.video-meta {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.video-stats i {
    margin-right: 0.25rem;
}

.video-card.small .video-info h3 {
    font-size: 1.1rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.btn-filter {
    padding: 0.5rem 1.5rem;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-filter:hover {
    background-color: rgba(145, 255, 0, 0.2);
    color: var(--primary-color);
}

.btn-filter.active {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.portfolio-grid {
    margin-top: 2rem;
}

.portfolio-item {
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.portfolio-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(145, 255, 0, 0.05);
}

.portfolio-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-info {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.portfolio-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.portfolio-info p {
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-card:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--darker-color);
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    min-width: 300px;
    background-color: rgba(18, 18, 18, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(145, 255, 0, 0.1);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(145, 255, 0, 0.1);
    border-color: rgba(145, 255, 0, 0.3);
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    color: var(--primary-color);
    opacity: 0.3;
    font-size: 3rem;
}

.testimonial-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid var(--primary-color);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: white;
}

.author-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.contact-form {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(145, 255, 0, 0.1);
}

.form-control {
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(145, 255, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

textarea.form-control {
    resize: none;
}

.contact-info {
    background-color: rgba(18, 18, 18, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(145, 255, 0, 0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(145, 255, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: white;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.contact-social {
    margin-top: 2rem;
}

.contact-social h3 {
    margin-bottom: 1rem;
}

.contact-social .social-icons {
    justify-content: flex-start;
}

/* Footer */
.footer {
    background-color: var(--darker-color);
    color: white;
    padding: 80px 0 0;
    border-top: 1px solid rgba(145, 255, 0, 0.1);
}

.footer-about h3 {
    font-family: 'Titan One', cursive;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-about h3 span {
    color: var(--primary-color);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-links h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 50px 0 0 50px;
    outline: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    width: 50px;
    border: none;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #7ae600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 40px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-menu {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-color);
}

.footer-social a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #7ae600;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Confetti Button */
.confetti-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 99;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.confetti-btn:hover {
    background-color: #7ae600;
    transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.75rem;
    }
    
    .hero-content .lead {
        font-size: 1.25rem;
    }
    
    .about-section, .videos-section, .portfolio-section, .contact-section, .testimonials-section {
        padding: 80px 0;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 200px;
        margin-bottom: 0.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        max-width: 80%;
    }
    
    .about-section, .videos-section, .portfolio-section, .contact-section, .testimonials-section {
        padding: 60px 0;
    }
    
    .youtube-stats {
        justify-content: center;
    }
    
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .footer {
        padding: 60px 0 0;
        text-align: center;
    }
    
    .footer-links, .footer-newsletter {
        margin-top: 2rem;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .footer-bottom .row > div {
        text-align: center !important;
        margin-bottom: 1rem;
    }
    
    .footer-menu, .footer-social {
        justify-content: center !important;
    }
    
    .footer-menu {
        gap: 1rem;
    }
    
    .confetti-btn {
        bottom: 90px;
        left: 20px;
    }
}

@media (max-width: 575.98px) {
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .stat-box {
        width: 100%;
        max-width: none;
    }
    
    .portfolio-filter {
        gap: 0.25rem;
    }
    
    .btn-filter {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .testimonial-card {
        min-width: 250px;
    }

}


/* */
/* Editing Demo Section */
/* Editing Demo Section */
.editing-demo-section {
    background-color: var(--dark-color);
    padding: 100px 0;
}

.youtube-short-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 for desktop */
    background: #000;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--primary-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-description {
    text-align: center;
    color: var(--light-color);
    padding: 0 2rem;
}

.video-description h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hashtags {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hashtags span {
    color: var(--primary-color);
    font-weight: 600;
}

.signature {
    font-family: 'Titan One', cursive;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.subscriber-badge {
    font-size: 1rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-left: 1rem;
    vertical-align: middle;
}

/* Mobile Styles (9:16 aspect ratio) */
@media (max-width: 768px) {
    .youtube-short-container {
        flex-direction: column;
    }
    
    .video-wrapper {
        padding-top: 177.78%; /* 9:16 aspect ratio */
        max-width: 350px;
        margin: 0 auto;
    }
    
    .video-description {
        padding: 0;
    }
    
    .signature {
        font-size: 1.5rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1600px) {
    .youtube-short-container {
        flex-direction: row;
        align-items: center;
    }
    
    .video-wrapper {
        flex: 1;
        padding-top: 0;
        height: 600px;
    }
    
    .video-description {
        flex: 0 0 400px;
        text-align: left;
        padding-left: 3rem;
    }
}
