 /* --- Embedded CSS (style.css contents) --- */
 :root {
     --color-dark-bg: #111111;
     --color-surface-dark: #1f1f1f;
     --color-text-light: #ffffff;
     --color-text-medium: #bbbbbb;
     --color-accent-blue: #007bff;
     /* Primary CTA blue */
     --color-accent-gold: #ffc107;
     --font-primary: 'Montserrat', sans-serif;
     --font-secondary: 'Oswald', sans-serif;
     --section-padding: 60px;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: var(--font-primary);
     background-color: var(--color-dark-bg);
     color: var(--color-text-medium);
     line-height: 1.6;
 }

 a {
     color: var(--color-text-light);
     text-decoration: none;
     transition: color 0.3s;
 }

 h2 {
     font-family: var(--font-secondary);
     font-size: 3.5rem;
     color: var(--color-text-light);
     line-height: 1.1;
 }

 h3.section-title {
     /* font-family: var(--font-secondary); */
     font-size: 1.2rem;
     color: var(--color-text-light);
     /* border-bottom: 2px solid var(--color-accent-blue); */
     display: inline-block;
     padding-bottom: 5px;
     margin-bottom: 25px;
 }

 /* --- Navigation Bar --- */
 /* ====== Existing Desktop Code (NO CHANGE) ====== */
 .navbar {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 50px;
     background: transparent;
     border-bottom: 1px solid var(--color-surface-dark);
     position: sticky;
     top: 0;
     backdrop-filter: blur(15px);
     z-index: 1000;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo-icon {
     font-size: 2rem;
     color: var(--color-accent-gold);
     margin-right: 10px;
 }

 .logo-text h1 {
     font-size: 1.2rem;
     margin: 0;
     line-height: 1;
     font-family: var(--font-secondary);
 }

 .logo-text p {
     font-size: 0.6rem;
     margin: 0;
     color: var(--color-text-medium);
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .nav-links a {
     margin-left: 25px;
     font-size: 0.9rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     font-weight: 700;
 }

 .menu-icon {
     display: none;
     /* Hide in desktop view */
     cursor: pointer;
     font-size: 1.8rem;
     color: var(--color-accent-gold);
 }


 /* ====== Mobile Responsive Code (NEW) ====== */
 @media (max-width: 768px) {
     .menu-icon {
         display: block;
     }

     .nav-links {
         display: none;
         position: absolute;
         top: 95px;
         left: 0;
         width: 100%;
         background-color: var(--color-dark-bg);
         text-align: center;
         flex-direction: column;
         padding: 20px 0;
         border-top: 1px solid var(--color-surface-dark);
         z-index: 999;
     }

     .nav-links.active {
         display: flex;
         animation: slideDown 0.3s ease-in-out;
     }

     .nav-links a {
         margin: 10px 0;
         font-size: 0.95rem;
     }

     @keyframes slideDown {
         from {
             opacity: 0;
             transform: translateY(-10px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }
 }

 /* --- Hero Area --- */
 .hero-area {
     position: relative;
     height: 600px;
     top: -85px;
     /* Adjust as needed */
     display: flex;
     align-items: center;
     padding-left: 50px;
     /* Placeholder for background image */
     background: url('../images/banner-img.jpg') no-repeat center center/cover;
 }


 .hero-bg-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.6);
     z-index: 1;
 }

 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 600px;
     color: var(--color-text-light);
 }

 .hero-content h2 {
     margin-bottom: 20px;
 }

 .hero-content p {
     font-size: 1.1rem;
     margin-bottom: 30px;
 }

 .cta-buttons a {
     padding: 10px 25px;
     border-radius: 3px;
     font-weight: 700;
     text-transform: uppercase;
     margin-right: 15px;
     transition: background-color 0.3s;
     margin: 5px;
 }

 .btn.primary {
     background-color: #f5c067;
     color: var(--color-text-light);
     border: 2px solid #f5c067;
 }

 .btn.secondary {
     background-color: transparent;
     color: white;
     border: 2px solid white;
 }

 .btn.primary:hover {
     background-color: #0056b3;
     border-color: #0056b3;
 }

 .btn.secondary:hover {
     background-color: var(--color-accent-blue);
     color: var(--color-text-light);
 }

 /* --- Main Content Grid Layout --- */
 .content-grid {
     display: grid;
     grid-template-columns: 2fr 1.5fr;
     /* Matches the visual weight in the image */
     gap: 40px;
     padding: 50px 50px 100px 50px;
 }

 .left-column,
 .right-column {
     display: flex;
     flex-direction: column;
     gap: 0px;
     /* Space between the main sections in each column */
 }

 .section {
     padding-bottom: 40px;
 }

 .section:last-child {
     border-bottom: none;
 }

 .intro-text {
     margin-bottom: 20px;
     font-size: 0.95rem;
 }

 /* --- About Us Section --- */
 .specialties-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
     margin-bottom: 30px;
 }

 .specialty-item {
     text-align: center;
     font-size: 0.8rem;
     padding: 15px 5px;
     background-color: var(--color-surface-dark);
     border-radius: 5px;
     font-weight: 700;
 }

 .specialty-item span {
     display: block;
     font-size: 1.5rem;
     color: var(--color-accent-gold);
     margin-bottom: 5px;
 }

 .description-text {
     font-size: 0.9rem;
 }

 /* --- Mission & Vision Section --- */
 .mission-vision-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .mv-card {
     background-color: var(--color-surface-dark);
     padding: 25px;
     /* border-left: 3px solid var(--color-accent-blue); */
     text-align: center;
     border: 1px solid #4c4c4c;

 }

 .mv-card h4 {
     /* font-family: var(--font-secondary); */
     font-size: 1.2rem;
     color: var(--color-text-light);
     margin-bottom: 10px;
 }

 .mv-card p {
     font-size: 0.85rem;
 }

 /* --- Producer Tiers Section --- */
 .tier-grid {
     display: grid;
     /* grid-template-columns: repeat(4, 1fr); */
     gap: 15px;
     margin-top: 20px;
 }

 .tier-card {
     background-color: var(--color-surface-dark);
     padding: 20px 10px;
     text-align: center;
     border-radius: 5px;
     cursor: pointer;
     margin: 5px 0;
     transition: background-color 0.3s;
 }

 .tier-card:hover {
     background-color: #333;
 }

 .tier-card span {
     font-size: 2rem;
     display: block;
     margin-bottom: 5px;
 }

 .tier-card h4 {
     font-family: var(--font-secondary);
     font-size: 1rem;
     color: var(--color-text-light);
     margin-bottom: 5px;
 }

 .tier-card p {
     font-size: 0.75rem;
 }

 /* --- Join the Movement --- */
 .section.join-movement {
     text-align: center;
     background-color: var(--color-surface-dark);
     padding: 40px;
     border-radius: 5px;
 }

 .join-movement p {
     margin-bottom: 15px;
 }

 .join-movement .cta-buttons a {
     margin: 0 10px;
 }

 .tagline {
     font-family: var(--font-secondary);
     font-size: 1.5rem;
     color: var(--color-accent-gold);
     margin-top: 20px;
 }

 /* --- Projects & Expertise Section --- */
 .project-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     margin-top: 20px;
 }

 .project-card {
     position: relative;
     overflow: hidden;
     height: 150px;
     /* Fixed height for image consistency */
 }

 .project-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     /* Placeholder styling */
     background-color: #444;
 }

 .project-card p {
     position: absolute;
     bottom: -16px;
     left: 0;
     right: 0;
     background: rgb(17 17 17 / 94%);
     color: var(--color-text-light);
     padding: 5px;
     font-size: 0.7rem;
     text-align: center;
     opacity: 1;
     transition: opacity 0.3s;
 }

 /* --- Producer Circle Section --- */
 .producer-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .producer-feature {
     font-size: 0.9rem;
     color: var(--color-text-light);
     margin-bottom: 10px;
     font-weight: 700;
     position: relative;
     z-index: 11;
 }

 .producer-feature span {
     color: var(--color-accent-gold);
     margin-right: 5px;
 }

 .producer-image {
     width: 100%;
     height: auto;
     margin-top: 15px;
     border-radius: 5px;
     /* Placeholder styling */
     background-color: #444;
     height: 150px;
     object-fit: cover;
 }

 .producer-right h4 {
     font-family: var(--font-secondary);
     font-size: 1.1rem;
     color: var(--color-text-light);
     margin-bottom: 15px;
 }

 .benefit-item {
     font-size: 0.85rem;
     margin-bottom: 10px;
 }

 .benefit-item span {
     color: var(--color-accent-blue);
     margin-right: 5px;
     font-weight: 700;
 }

 /* --- Events & Experiences Section --- */
 .events-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 10px;
     margin-top: 20px;
 }

 .events-grid img {
     width: 100%;
     height: 100px;
     /* Fixed height for event image consistency */
     object-fit: cover;
     border-radius: 3px;
     /* Placeholder styling */
     background-color: #444;
 }

 /* --- Footer --- */
 .footer {
     background-color: var(--color-surface-dark);
     padding: 30px 50px;
     border-top: 1px solid #333;
 }

 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .footer-logo {
     display: flex;
     align-items: center;
 }

 .contact-info p {
     font-size: 0.8rem;
     margin: 5px 0;
     text-align: right;
 }

 .footer-tagline {
     font-family: var(--font-secondary);
     font-size: 1.2rem;
     color: var(--color-accent-gold);
 }

 .producer-left {
     padding: 16px;
     position: relative;
     background-image: url(../images/gaming.jpg);
     height: 300px;
 }

 .producer-left::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: #1f1f1fd4;
 }

 .producer-right {
     background: #1f1f1f;
     padding: 10px;
 }

 @media(max-width:750px) {
     .hero-area {
         padding-left: 0px;
         text-align: center;
         top: -46px;
     }

     .specialties-grid {
         display: flex;
         flex-direction: column;
     }

     .content-grid {
         display: flex;
         flex-direction: column;
     }

     .left-column,
     .right-column {
         gap: 5px;
     }

     .content-grid {
         padding: 50px 20px 100px 20px;
     }

     .description-text {
         text-align: justify;
     }

     .mission-vision-grid {
         display: flex;
         flex-direction: column;
     }

     .producer-content {
         display: flex;
         flex-direction: column;
     }

     .producer-left {
         height: auto;
         background-attachment: fixed;
         background-size: cover;
         background-repeat: no-repeat;
     }

     .footer-content {
         flex-direction: column;
     }

     .navbar {
         padding: 15px 20px;
     }

     .nav-links a {
         margin-left: 5px;
     }

     .logo-text p {
         font-size: 8px;
     }
 }
 .social-block ul li {
	list-style-type: none;
    display: inline-block;
}
.social-block ul li a {
	    background: #383838;
    width: 38px;
    height: 38px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 4px;
    margin-bottom: 10px;
    line-height: 36px;
}
.social-block ul li a:hover {
	background:#ffc107;
	color:#000;
}