:root {
    --primary-color: #e50914;
    --secondary-color: #221f1f;
    --text-color: #ffffff;
    --background-color: #0f0f0f;
    --card-bg-color: #181818;
    --hover-color: #333333;
    --gold-color: #ffd700;
    --royalty-color: #8a2be2;
}

/* Theme toggle button styles */
.theme-toggle-btn {
    background-color: #666;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.theme-toggle-btn:hover {
    background-color: #888;
}

/* 2008 Theme Warning Modal */
.theme-modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.theme-modal-content {
    background-color: #f0f0f0;
    color: #000;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 400px;
    max-width: 90%;
    text-align: center;
    font-family: "Arial", sans-serif;
    border-radius: 3px;
}

.theme-modal-content h2 {
    color: #003366;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.theme-ok-btn {
    background-color: #003366;
    color: white;
    border: 2px outset #003366;
    padding: 5px 20px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

/* 2008 Theme Styles */
body.theme-2008 {
    background-color: #FFFFFF;
    font-family: Arial, Verdana, sans-serif;
    color: #000000;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAC1JREFUeNpiYGBgEGHAD/6jK2TBJQtSCFOMTyExCpkYRgHlgGhTGWM6JwAEGABpWAQzbjyiWQAAAABJRU5ErkJggg==');
}

body.theme-2008 header {
    background-color: #003366;
    border-bottom: 5px solid #FF6600;
    box-shadow: none;
}

body.theme-2008 .logo {
    border: 2px solid white;
    padding: 3px;
    background-color: white;
}

body.theme-2008 nav ul li a {
    color: white;
    text-decoration: underline;
    font-weight: normal;
}

body.theme-2008 nav ul li a:hover {
    color: #FF6600;
}

body.theme-2008 nav ul li a.sub-link {
    background-color: #FF6600;
    border: 2px outset #FF6600;
}

body.theme-2008 main {
    background-color: #F0F0F0;
    border: 1px solid #CCCCCC;
    margin: 20px 5%;
    padding: 20px;
    box-shadow: 5px 5px 10px #888888;
}

body.theme-2008 section h2 {
    color: #003366;
    font-size: 18px;
    border-left: none;
    border-bottom: 1px solid #CCCCCC;
    padding-bottom: 10px;
    padding-left: 0;
}

body.theme-2008 .video-card {
    border: 1px solid #999999;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 5px #AAAAAA;
}

body.theme-2008 .video-info h3 {
    color: #0066CC;
}

body.theme-2008 .views {
    color: #666666;
}

body.theme-2008 footer {
    background-color: #003366;
    border-top: 3px solid #FF6600;
    color: white;
}

body.theme-2008 .account-btn, 
body.theme-2008 .theme-toggle-btn {
    background-color: #CCCCCC;
    color: #000000;
    border: 2px outset #CCCCCC;
}

body.theme-2008 .social-links a {
    background-color: #FFFFFF;
    color: #003366;
    padding: 3px;
    border: 1px solid #999999;
    margin-left: 5px;
    border-radius: 3px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--secondary-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after, nav ul li a.active::after {
    width: 100%;
}

nav ul li a.sub-link {
    background-color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
}

nav ul li a.sub-link:hover {
    background-color: #c00812;
    transform: scale(1.05);
}

/* Main content styles */
main {
    padding: 2rem 5%;
}

section {
    margin-bottom: 3rem;
}

section h2 {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    font-size: 1.8rem;
}

/* Featured video styles */
.featured-video-container {
    width: 100%;
}

.video-card.featured {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.video-card.featured .thumbnail img {
    height: 500px;
}

.video-card.featured h3 {
    font-size: 1.6rem;
}

/* Video grid styles */
.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-card {
    background-color: var(--card-bg-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail {
    position: relative;
    overflow: hidden;
}

.thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s;
}

.video-card:hover .thumbnail img {
    transform: scale(1.05);
}

.duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .overlay {
    opacity: 1;
}

.overlay i {
    font-size: 3rem;
    color: var(--primary-color);
}

.video-info {
    padding: 1rem;
}

.video-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.views {
    color: #aaa;
    font-size: 0.9rem;
}

/* Footer styles */
footer {
    background-color: var(--secondary-color);
    padding: 2rem 5%;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.logo-small {
    height: 30px;
    margin-right: 1rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.5rem;
    margin-left: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: var(--card-bg-color);
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: white;
}

.tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--hover-color);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-color);
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
}

.tab-btn.active {
    opacity: 1;
    border-bottom: 3px solid var(--primary-color);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #ddd;
}

.form-group input {
    width: 100%;
    padding: 10px;
    background-color: var(--hover-color);
    border: 1px solid #444;
    color: white;
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #c00812;
}

.forgot-password {
    text-align: center;
    margin-top: 15px;
}

.forgot-password a {
    color: #999;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* About page styles */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-content {
    flex: 2;
    min-width: 300px;
}

.about-intro {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.stat-box {
    background-color: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    flex: 1;
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.journey-section h2 {
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
}

.first-video {
    max-width: 600px;
    margin: 2rem 0;
}

.bucees-gallery {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.bucees-gallery img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* Video page styles */
.video-page-main {
    display: flex;
    padding: 2rem 3%;
    gap: 2rem;
}

.video-content {
    flex: 3;
    min-width: 0;
}

.suggested-videos {
    flex: 1;
    min-width: 300px;
}

.video-player-container {
    margin-bottom: 2rem;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    background-color: black;
    margin-bottom: 1rem;
}

.video-player .placeholder-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.play-button i {
    font-size: 40px;
    margin-left: 5px;
}

.video-details h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--hover-color);
}

.views-date {
    color: #aaa;
}

.video-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    background: none;
    border: none;
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.action-btn:hover {
    background-color: var(--hover-color);
}

.channel-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--hover-color);
}

.channel-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.channel-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.channel-text h3 {
    margin-bottom: 5px;
}

.channel-text p {
    color: #aaa;
    font-size: 0.9rem;
}

.subscribe-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

.video-description {
    padding: 1rem 0;
    border-bottom: 1px solid var(--hover-color);
}

.video-description p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.show-more {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-weight: bold;
}

.comments-section {
    padding-top: 1rem;
}

.comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.sort-btn {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.add-comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.user-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.add-comment input {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 1px solid var(--hover-color);
    color: white;
    padding: 10px 0;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment {
    display: flex;
    gap: 1rem;
}

.comment-content {
    flex: 1;
}

.commenter-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.commenter-info span {
    color: #aaa;
    font-size: 0.9rem;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 8px;
}

.comment-actions button {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.suggested-videos h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.suggested-videos .video-card {
    display: flex;
    margin-bottom: 1rem;
    background: none;
}

.suggested-videos .thumbnail {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
}

.suggested-videos .video-info {
    flex: 2;
    padding: 0 0 0 10px;
}

.suggested-videos .video-info h3 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.suggested-videos .channel,
.suggested-videos .views {
    color: #aaa;
    font-size: 0.8rem;
    margin-bottom: 3px;
}

/* Subscription page styles */
.subscription-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.subscription-header {
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeIn 1s ease;
}

.subscription-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary-color), #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.subscription-plans {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 1000px;
}

.plan-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 2.5rem;
    width: 300px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.plan-card.free {
    border: 1px solid var(--text-color);
}

.plan-card.plus {
    border: 1px solid var(--primary-color);
}

.plan-card.plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}

.plan-card.plusplus {
    border: 2px solid var(--gold-color);
    background: linear-gradient(145deg, var(--card-bg-color), #2a2a2a);
}

.plan-card.plusplus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--gold-color);
}

.plan-card.true-fan {
    border: 3px solid transparent;
    background: linear-gradient(145deg, var(--card-bg-color), #2a2a2a);
    position: relative;
    background-clip: padding-box;
    z-index: 1;
}

.plan-card.true-fan::before {
    content: '';
    position: absolute;
    top: -3px; right: -3px; bottom: -3px; left: -3px;
    background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    border-radius: 13px;
    z-index: -1;
    animation: rainbow 18s ease infinite;
    background-size: 1800% 1800%;
}

.plan-card.employee {
    border: 2px solid white;
    background: linear-gradient(145deg, var(--card-bg-color), #333333);
    position: relative;
}

.plan-name {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.plan-price {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.plan-price.gold {
    color: var(--gold-color);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.plan-features {
    margin-bottom: 2rem;
    list-style-type: none;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 5px;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 1rem;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.plan-button:hover {
    background-color: #c00812;
    transform: scale(1.05);
}

.plan-button:hover::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

.plan-button.gold {
    background-color: var(--gold-color);
    color: black;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.plan-button.gold:hover {
    background-color: #e5c100;
}

.plan-button.rainbow-bg {
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

.employee-btn {
    background-color: white;
    color: black;
    font-weight: 700;
}

.employee-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

/* Games page styles */
.games-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.games-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-thumbnail {
    position: relative;
    overflow: hidden;
}

.game-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s;
}

.game-card:hover .game-thumbnail img {
    transform: scale(1.05);
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.game-info p {
    margin-bottom: 1.5rem;
    color: #ddd;
}

.play-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.3s;
}

.play-button:hover {
    background-color: #c00812;
    transform: scale(1.05);
}

.game-coming-soon {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.game-coming-soon h3 {
    margin: 1rem 0;
    font-size: 1.3rem;
}

/* Hamster Game styles */
.game-container {
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.game-canvas-container {
    position: relative;
    width: 100%;
    height: 500px;
    margin: 1rem 0 2rem;
    background-color: #000;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

#game-canvas {
    display: block;
    width: 100%;
    height: 100%;
    background-color: #8cccff;
}

.game-controls {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: var(--card-bg-color);
    border-radius: 10px;
}

.game-controls h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.game-score {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2rem;
    z-index: 10;
}

.game-lives {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2rem;
    z-index: 10;
}

.game-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    font-size: 1.5rem;
    z-index: 20;
    display: none;
}

.game-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.game-button:hover {
    background-color: #c00812;
}

/* Contact page styles */
.contact-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 2rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.social-link-card {
    background-color: var(--card-bg-color);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.social-link-card:hover {
    transform: translateY(-10px);
}

.social-link-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.social-link-card.youtube i {
    color: #FF0000;
}

.social-link-card.twitter i {
    color: #1DA1F2;
}

.social-link-card.instagram i {
    color: #C13584;
}

.social-link-card.tiktok i {
    color: #69C9D0;
}

.social-link-card.facebook i {
    color: #4267B2;
}

.contact-form {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

/* Zacktube page styles */
.zacktube-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.zacktube-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
}

.zacktube-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.filter-pill {
    background-color: var(--card-bg-color);
    border: 1px solid var(--hover-color);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    white-space: nowrap;
}

.filter-pill.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .featured-video-container .video-card.featured .thumbnail img {
        height: auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .social-links {
        margin-top: 1rem;
    }

    .social-links a {
        margin: 0 0.5rem;
    }
}

@media (max-width: 1200px) {
    .video-page-main {
        flex-direction: column;
    }

    .suggested-videos .video-card {
        flex-direction: row;
    }

    .suggested-videos {
        width: 100%;
    }
}

/* About page milestone styles */
.milestone-header {
    margin-top: 3rem;
    font-size: 2rem;
    text-align: center;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.milestone-card {
    background-color: var(--card-bg-color);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.milestone-card:hover {
    transform: translateY(-10px);
}

.milestone-year {
    background-color: var(--primary-color);
    color: white;
    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.milestone-stat {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.milestone-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.milestone-card p {
    color: #ddd;
    line-height: 1.6;
}