:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #00ff9d;
    --text-color: #ffffff;
    --text-secondary: #ffffff;
    --hover-color: #E31837;  /* The red color from the logo */
    --yellow-color: #FFD700;  /* Yellow color from the logo */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: baseline;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-main-container {
    display: flex;
    align-items: baseline;
    gap: 0px;
}

.logo-the {
    color: #E31837;
    font-weight: 600;
}

.logo-main {
    position: relative;
    background: linear-gradient(45deg, 
        #F9F02E 10%,   /* Yellow */
        #2E9F6B 66%,   /* Dark Green */
        #28276C 100%   /* Blue */
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
    display: inline-block;
    padding: 0.1em 0;
    /* Fallback for browsers that don't support background-clip: text */
    @supports not (background-clip: text) {
        background: none;
        color: #2E9F6B;
    }
}

/* Add a pseudo-element for Safari compatibility */
@media not all and (min-resolution:.001dpcm) { 
    @supports (-webkit-appearance:none) {
        .logo-main {
            -webkit-box-decoration-break: clone;
            box-decoration-break: clone;
        }
    }
}

.logo-tagline {
    color: #E31837;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: right;
    line-height: 1;
    margin-top: -0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.coffee-link {
    background-color: rgba(249, 240, 46, 0.1);
    border: 1px solid var(--yellow-color);
    color: var(--yellow-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.coffee-link:hover {
    background-color: var(--yellow-color);
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary-color);
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

#heroCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    pointer-events: none; /* Allow clicks to pass through to canvas */
}

.hero-content .cta-button {
    pointer-events: auto;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: var(--secondary-color);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Responsive breakpoints for services */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card i {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

.service-card {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background-color: var(--hover-color);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
    color: #2d2d2d;
}

.service-card h3 {
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card p {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Page Styles */
.contact-page {
    padding: 8rem 5% 5rem;
}

.contact-page .container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-container {
    background-color: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Process Overview Styles */
.process-overview {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.process-overview h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-align: center;
}

.process-overview p {
    margin-bottom: 1.5rem;
    text-align: center;
}

.process-steps {
    counter-reset: step-counter;
    list-style-type: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.process-steps li {
    position: relative;
    padding: 0.75rem 0.75rem 0.75rem 3rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-color);
    background-color: rgba(0, 255, 157, 0.05);
}

/* Disclaimer styling */
.disclaimer {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #ff9800;
    font-style: italic;
}

.process-steps li:before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.75rem;
    height: 1.75rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Form Section Styles */
.form-section {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-section h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--accent-color);
}

.section-intro {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form textarea {
    resize: vertical;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: auto;
}

.consent-checkbox {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(0, 255, 157, 0.05);
    border-radius: 5px;
    border-left: 3px solid var(--accent-color);
}

.consent-checkbox .checkbox-label {
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
}

.submit-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

.form-status {
    grid-column: span 2;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
}

.form-status.sending {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.form-status.success {
    background-color: rgba(0, 255, 157, 0.1);
    color: var(--text-color);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
    margin-top: 1.5rem;
    border-radius: 5px;
}

.form-status.success h4 {
    color: var(--accent-color);
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.form-status.success p {
    margin-bottom: 0.75rem;
}

.form-status.success p:last-child {
    margin-bottom: 0;
}

.form-status.error {
    color: #ff4d4d;
    padding: 0.75rem;
    background-color: rgba(255, 77, 77, 0.1);
    border-left: 3px solid #ff4d4d;
    margin-top: 1rem;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border: 1px solid #ff4d4d;
    background-color: rgba(255, 77, 77, 0.05);
}

.consent-checkbox.error {
    background-color: rgba(255, 77, 77, 0.05);
    border-left: 3px solid #ff4d4d;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-status {
        grid-column: span 1;
    }
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

/* Protected Email Display */
.protected-email {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.protected-email:hover {
    background-color: var(--hover-color);
    color: var(--primary-color);
}

.protected-email i {
    font-size: 1.2rem;
}

.email-text {
    font-weight: 500;
}

.protected-email.revealed {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.protected-email.revealed:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 5% 1rem;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo-container {
    display: flex;
    align-items: baseline;
    gap: 0px;
}

.footer-logo-t {
    color: #E31837;
    font-weight: 500;
}

.footer-logo-nc {
    position: relative;
    background: linear-gradient(45deg, 
        #F9F02E 10%,   /* Yellow */
        #2E9F6B 66%,   /* Dark Green */
        #28276C 100%   /* Blue */
    );
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -o-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
    display: inline-block;
    padding: 0.1em 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }
    
    /* Remove this style as it conflicts with the mobile menu */
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .process-overview {
        padding: 1.5rem;
    }
    
    .process-steps li {
        padding-left: 2.5rem;
    }

    /* Mobile menu styles removed - consolidated in the hamburger section */

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

/* Hamburger Menu Styles */
.hamburger {
    display: none; /* Hidden by default on desktop */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

/* Desktop Navigation Styles */
.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex; /* Show hamburger on mobile */
    }
    
    .navbar .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 45%;
        height: 100vh;
        background-color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 5rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .navbar .nav-links a {
        display: block;
        padding: 0.8rem 0;
        text-align: center;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .navbar .nav-links .coffee-link {
        margin-top: 1rem;
    }
    
    .navbar .nav-links.active {
        right: 0;
    }
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.projects-container {
    padding: 120px 5% 5rem;
}

.projects-subtitle {
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 400;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.project-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.project-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--secondary-color);
}

.project-content {
    padding: 1.5rem;
}

.project-content h3 {
    margin-bottom: 0.5rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.view-project {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 1rem;
}

/* Blurb Card Styles */
.blurb-card {
    background: linear-gradient(45deg, 
        #F9F02E 10%,   /* Yellow */
        #2E9F6B 66%,   /* Dark Green */
        #28276C 100%   /* Blue */
    );
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.blurb-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.2);
    z-index: 1;
}

.blurb-card h3, .blurb-card p, .blurb-card .project-tags {
    position: relative;
    z-index: 2;
}

.blurb-card h3 {
    color: #F9F02E; /* The red color from the logo */
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.blurb-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blurb-card .project-tags .tag {
    background-color: rgba(227, 24, 55, 0.1); /* hover-color with 0.3 opacity */
    border: 1px solid rgba(227, 24, 55, 1);
    color: rgba(227, 24, 55, 1);
}

.view-project:hover {
    color: var(--hover-color);
}

/* Latest Projects Section */
.latest-projects {
    padding: 5rem 5% 3rem;
    background-color: var(--primary-color);
}

.latest-projects h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 600;
}

.latest-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.latest-project-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.latest-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.latest-project-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--secondary-color);
}

.latest-project-content {
    padding: 1.5rem;
}

.latest-project-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: var(--text-color);
}

.latest-project-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.project-category {
    margin: 1rem 0;
}

.project-category .category {
    background-color: rgba(0, 255, 157, 0.1);
    color: var(--accent-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-tags {
    margin: 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags .tag {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--yellow-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
}

.loading-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: var(--accent-color);
}

.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #ff4d4d;
}

.view-all-container {
    text-align: center;
    margin-top: 2.5rem;
}

.view-all-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.view-all-button:hover {
    background-color: var(--hover-color);
    border-color: var(--hover-color);
    color: var(--primary-color);
}

/* Project card coming soon state */
.project-card.coming-soon {
    grid-column: 1 / -1;
    background-color: rgba(0, 255, 157, 0.05);
    border-left: 3px solid var(--accent-color);
    padding: 2rem;
    text-align: center;
}

.project-card.coming-soon h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.project-card.coming-soon p {
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.project-card.coming-soon a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.project-card.coming-soon a:hover {
    opacity: 0.8;
}

/* Make it responsive for smaller screens */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .latest-projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .latest-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .latest-projects-grid {
        grid-template-columns: 1fr;
    }
}
.games-container {
    padding: 120px 5% 5rem;
}

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

.game-card {
    background-color: var(--secondary-color);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.game-image {
    width: 100%;
    height: 200px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image i {
    font-size: 4rem;
    color: var(--primary-color);
}

.game-content {
    padding: 1.5rem;
    text-align: center;
}

.game-content h3 {
    margin-bottom: 1rem;
}

.play-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

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

/* About Page Styles */
.about-section {
    padding: 8rem 5% 5rem;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: start;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 147px;
    height: 450px; /* Fixed height */
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-content h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.skills-section {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    margin-bottom: 2rem;
}

.skill-category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.skill-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.skill-name {
    flex: 1;
}

.skill-level {
    display: flex;
}

.skill-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 4px;
    background-color: var(--accent-color);
}

.skill-dot.empty {
    background-color: rgba(255, 255, 255, 0.2);
}

.experience-section {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.timeline {
    position: relative;
    margin-top: 2rem;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 2rem;
}

.timeline-item:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--hover-color); /* Changed to red logo color */
}

.timeline-date {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-location {
    font-size: 0.95rem;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    font-style: italic;
}

.timeline-description {
    font-size: 0.95rem;
    opacity: 0.8;
}

.philosophy-section {
    margin-top: 4rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.philosophy-quote {
    font-size: 1.5rem;
    font-style: italic;
    max-width: 800px;
    margin: 2rem auto;
    position: relative;
    padding: 0 2rem;
}

.philosophy-quote:before,
.philosophy-quote:after {
    content: '"';
    font-size: 4rem;
    position: absolute;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.philosophy-quote:before {
    left: 0;
    top: -20px;
}

.philosophy-quote:after {
    right: 0;
    bottom: -40px;
}

/* About Page Responsive Styles */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    padding: 3rem 5% 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-logo-t {
    color: var(--hover-color);
    font-weight: 600;
    font-size: 1.5rem;
}

.footer-logo-nc {
    background: linear-gradient(45deg, 
        #F9F02E 10%,   /* Yellow */
        #2E9F6B 66%,   /* Dark Green */
        #28276C 100%   /* Blue */
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--hover-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Additional Mobile Responsive Styles */
@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
        margin: 1.5rem 0;
    }
    
    .footer-links a {
        padding: 0.5rem 0;
    }
    
    .social-links {
        margin-top: 1rem;
    }
    
    .nav-links {
        width: 75%; /* Slightly wider menu on very small screens but still thinner */
    }
    
    .nav-links a {
        padding: 0.8rem 0;
    }
}