/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: linear-gradient(135deg, #0a0a12, #1a1a24, #0a0a12);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(40, 40, 60, 0.3) 0%, rgba(10, 10, 20, 0) 70%);
    z-index: -1;
}

.review-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.95), rgba(25, 25, 40, 0.95));
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(80, 80, 110, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    color: #70C901;
    text-shadow: 0 0 10px rgba(112, 201, 1, 0.3);
}

.logo i {
    margin-right: 10px;
    font-size: 32px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav li {
    margin-left: 25px;
}

nav a {
    color: #d0d0d0;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
    position: relative;
}

nav a:hover {
    color: #70C901;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #70C901;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                 linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(40, 40, 60, 0.8)),
                 url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 0 0 30px 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 20, 0.8) 0%, 
        rgba(30, 30, 50, 0.6) 50%, 
        rgba(10, 10, 20, 0.8) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(112, 201, 1, 0.5);
    background: linear-gradient(to right, #70C901, #A2F048, #70C901);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 3s infinite;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #e0e0e0;
}

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Main Content */
.page-content {
    padding: 40px 0;
}

.page-title {
    text-align: center;
    margin: 30px 0 50px;
    font-size: 2.5rem;
    color: #70C901;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #0a0a12, #70C901, #0a0a12);
    margin: 15px auto;
    border-radius: 2px;
}

/* Video Grid */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.video-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(30, 30, 45, 0.8));
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(80, 80, 110, 0.3);
    position: relative;
    z-index: 1;
}

.video-card a{
    color:#777;
    text-decoration:none;
}

.video-card a:hover{
    color:#fff;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #70C901, #4A8F00, #70C901);
    z-index: 2;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(112, 201, 1, 0.3);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(20, 20, 30, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(112, 201, 1, 0.5);
    backdrop-filter: blur(5px);
}

.play-icon::before {
    content: '';
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #70C901;
    margin-left: 5px;
}

.video-card:hover .play-icon {
    background: rgba(112, 201, 1, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: #70C901;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    margin: 0 0 15px 0;
    color: #f0f0f0;
    font-size: 1.3rem;
    line-height: 1.4;
    min-height: 3.6rem;
}

.video-info p {
    color: #b0b0b0;
    font-size: 0.95rem;
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.video-date {
    display: block;
    margin-top: 15px;
    color: #70C901;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: right;
}

/* Channel Info */
.channel-info {
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.9), rgba(25, 25, 40, 0.9));
    padding: 50px 0;
    margin: 70px 0;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(80, 80, 110, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.channel-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 20, 0.8) 0%, 
        rgba(30, 30, 50, 0.6) 50%, 
        rgba(10, 10, 20, 0.8) 100%);
    z-index: -1;
}

.channel-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.channel-text {
    flex: 1;
    min-width: 300px;
}

.channel-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #70C901;
}

.channel-text p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(30, 30, 45, 0.6);
    padding: 20px;
    border-radius: 10px;
    min-width: 130px;
    border: 1px solid rgba(80, 80, 110, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(40, 40, 60, 0.7);
    border-color: rgba(112, 201, 1, 0.3);
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #70C901;
}

.stat-label {
    font-size: 1rem;
    color: #b0b0b0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #70C901, #5daa00);
    color: #0a0a12;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(112, 201, 1, 0.4);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A2F048, #70C901);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(112, 201, 1, 0.6);
    color:#fff;
}

.cta-button:hover::before {
    opacity: 1;
}

.channel-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    perspective: 1000px;
}

.channel-image-inner {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

.channel-image:hover .channel-image-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

.channel-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 2px solid #70C901;
    transform: translateZ(20px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95), rgba(15, 15, 25, 0.95));
    color: #b0b0b0;
    padding: 60px 0 30px;
    margin-top: 80px;
    border-top: 1px solid rgba(80, 80, 110, 0.3);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: #70C901;
    margin-bottom: 25px;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #70C901;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #70C901;
    padding-left: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(30, 30, 45, 0.7);
    border-radius: 50%;
    color: #70C901;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(80, 80, 110, 0.3);
}

.social-link:hover {
    background: #70C901;
    color: #0a0a12;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(112, 201, 1, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(80, 80, 110, 0.3);
    font-size: 0.9rem;
    color: #808080;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    nav li {
        margin: 10px 15px;
    }
    
    .hero {
        height: 400px;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .channel-content {
        flex-direction: column;
        text-align: center;
    }
    
    .stats {
        justify-content: center;
    }
    
    .cta-button {
        display: block;
        margin: 30px auto 0;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}

/* Animation for video cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.video-card:nth-child(1) { animation-delay: 0.1s; }
.video-card:nth-child(2) { animation-delay: 0.2s; }
.video-card:nth-child(3) { animation-delay: 0.3s; }
.video-card:nth-child(4) { animation-delay: 0.4s; }
.video-card:nth-child(5) { animation-delay: 0.5s; }
.video-card:nth-child(6) { animation-delay: 0.6s; }


    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.8);
    }
    
    .modal-content {
        position: relative;
        margin: 5% auto;
        padding: 20px;
        width: 80%;
        max-width: 900px;
    }
    
    .close {
        position: absolute;
        top: -40px;
        right: -40px;
        color: white;
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
    }
    
    .close:hover {
        color: #ccc;
    }
    
    /* Make video cards clickable */
    .video-card {
        cursor: pointer;
    }