* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #f5f7fa;
    color: #222;
}

/* Header */
.header {
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #2b68ff, #6c5ce7);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Navigation */
.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: #ffeaa7;
}

/* Login Icon */
.login-icon i {
    font-size: 1.4rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, #e8eeff, #ffffff);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
}

/* Video Section */
.video-section {
    padding: 80px 20px;
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

video {
    width: 100%;
    display: block;
}

.video-text {
    font-size: 1.1rem;
    color: #444;
}

/* Comments Section */
.comments-section {
    padding: 80px 20px;
    background: #ffffff;
}

.comments-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.comments-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.comment-card {
    background: #f8faff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.comment-card p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.comment-card span {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer {
    text-align: center;
    padding: 25px;
    background: #111827;
    color: #fff;
    margin-top: 40px;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #2b68ff;
}

.disclaimer {
    font-size: 0.85rem;
    color: #ccc;
    margin-bottom: 10px;
}
.video-text {
    line-height: 1.6;       /* easier to read */
    color: #444;
    max-width: 750px;       /* limits the width */
    margin: 20px auto 0;    /* center under the video */
    text-align: center;
}
/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 40px; /* reduced bottom padding */
    background: linear-gradient(135deg, #e8eeff, #ffffff);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px; /* reduced spacing */
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 0; /* remove extra margin */
}

/* Video Section */
.video-section {
    padding: 40px 20px 30px; /* reduced top and bottom padding */
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 15px; /* smaller margin below video */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.video-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    max-width: 750px;
    margin: 10px auto 0; /* reduced top margin */
    text-align: center;
}

/* Comments Section */
.comments-section {
    padding: 40px 20px; /* reduced padding */
    background: #ffffff;
}

.comments-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 25px; /* reduced spacing between title and cards */
}

/* Cards container */
.comments-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
