/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

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

.nav-links a {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563eb;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
    margin-top: 70px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Projects Section */
.projects {
    padding: 8rem 0 5rem;
    background: #fff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.project-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e2e8f0;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-image img[src=""], 
.project-image img:not([src]) {
    display: none;
}

.project-image:has(img[src=""]), 
.project-image:has(img:not([src])) {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.project-image:has(img[src=""]):before, 
.project-image:has(img:not([src])):before {
    content: "📷 Screenshot Coming Soon";
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-video {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f8fafc;
    position: relative;
}

.project-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
}

.project-video video::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.8);
}

.video-link {
    background: #16a34a !important;
    color: white !important;
    border: none;
    cursor: pointer;
}

.video-link:hover {
    background: #15803d !important;
}

.project-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.project-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.project-icon i {
    font-size: 1.5rem;
    color: white;
}

.project-meta h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.project-type {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.project-description {
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.project-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.project-link:first-child {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
}

.project-link:first-child:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.demo-link {
    background: #2563eb;
    color: white;
}

.demo-link:hover {
    background: #1d4ed8;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8fafc;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.skills h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.skill-category {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.skill-category h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    color: #475569;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.skill-category li::before {
    content: "▸";
    color: #2563eb;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}

.contact-text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: #f8fafc;
    color: #475569;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.contact-link i {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #94a3b8;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-links {
        flex-direction: column;
        align-items: center;
    }
    
    .project-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .project-card {
        padding: 1.5rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card {
    animation: fadeInUp 0.6s ease-out;
}

.project-card:nth-child(2) {
    animation-delay: 0.1s;
}

.project-card:nth-child(3) {
    animation-delay: 0.2s;
}

.project-card:nth-child(4) {
    animation-delay: 0.3s;
}/* Cl
ickable project cards */
.project-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-card-link:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: inherit;
}

.project-card-link:hover .project-card {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card-link:visited {
    color: inherit;
}

.project-card-link:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
    border-radius: 12px;
}

/* Ensure external links still work within clickable cards */
.project-links a.demo-link {
    position: relative;
    z-index: 10;
}

/* Prevent text selection on card hover for better UX */
.project-card-link .project-card {
    user-select: none;
    cursor: pointer;
}

/* Make sure the card content doesn't interfere with clicking */
.project-card-link * {
    pointer-events: none;
}

.project-card-link .demo-link {
    pointer-events: auto;
}

/* Visual feedback for clickable cards */
.project-card {
    transition: all 0.3s ease;
}

.project-card-link:hover .project-card {
    background: #fafafa;
}

/* Ensure proper spacing and layout */
.project-card-link {
    margin-bottom: 0;
}

/* Project Detail Pages */
.project-detail {
    padding: 8rem 0 5rem;
    background: #fff;
    min-height: 100vh;
}

.project-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
}

.project-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.project-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.project-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.project-tagline {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.project-tech-main {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-tech-main .tech-tag {
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.project-content {
    max-width: 1000px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #2563eb;
    padding-bottom: 0.5rem;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.content-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.content-section p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Image Showcase */
.image-showcase {
    margin: 2rem 0;
    text-align: center;
}

.main-screenshot, .architecture-diagram img, .analytics-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.architecture-diagram {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Problem & Solution */
.problem-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.problem, .solution {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.problem {
    background: #fef2f2;
    border-color: #fecaca;
}

.solution {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.problem h3, .solution h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.problem h3 i {
    color: #dc2626;
}

.solution h3 i {
    color: #16a34a;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.feature-images {
    display: grid;
    gap: 1rem;
}

.feature-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #2563eb;
    width: 20px;
    text-align: center;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h4 {
    margin-bottom: 0.75rem;
}

/* Learning Paths / Certifications */
.learning-paths, .certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.path-card, .cert-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cert-card {
    text-align: center;
}

.cert-card i {
    font-size: 2rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Game Mechanics / Exam Features */
.game-mechanics, .exam-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.mechanic, .feature-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.mechanic h4, .feature-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.mechanic i, .feature-item i {
    color: #2563eb;
}

/* Technical Details */
.tech-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tech-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Input/Output Section */
.io-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.input-section, .output-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.input-section h3, .output-section h3 {
    color: #2563eb;
    margin-bottom: 1rem;
}

.input-section ul, .output-section ul {
    list-style: none;
    padding: 0;
}

.input-section li, .output-section li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 1.5rem;
}

.input-section li:before, .output-section li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.input-section li:last-child, .output-section li:last-child {
    border-bottom: none;
}

/* Screenshots Grid */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.screenshot {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Architecture Components */
.architecture-diagram {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.arch-component {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.arch-component h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

/* Pipeline Steps */
.pipeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2563eb;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

/* Analytics Features */
.analytics-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.analytics-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* UX Features */
.ux-features, .performance-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.ux-item, .perf-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #16a34a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Smart Features */
.smart-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Future Features */
.future-features {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #bae6fd;
    margin: 2rem 0;
}

/* Responsive Design for Project Details */
@media (max-width: 768px) {
    .project-hero h1 {
        font-size: 2rem;
    }
    
    .project-tagline {
        font-size: 1rem;
    }
    
    .problem-solution {
        grid-template-columns: 1fr;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
    }
    
    .io-section {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .learning-paths,
    .certifications-grid,
    .game-mechanics,
    .exam-features,
    .tech-details,
    .screenshots-grid,
    .architecture-diagram,
    .pipeline-steps,
    .analytics-features,
    .ux-features,
    .performance-features,
    .smart-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .project-hero {
        padding: 1.5rem 1rem;
    }
    
    .project-content {
        padding: 0 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .service-card,
    .path-card,
    .cert-card,
    .mechanic,
    .feature-item,
    .tech-item,
    .input-section,
    .output-section,
    .arch-component,
    .analytics-item,
    .ux-item,
    .perf-item {
        padding: 1rem;
    }
}/* Sc
reenshots Grid - Two images per row */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.screenshot {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.screenshot:hover {
    transform: scale(1.05);
}

/* Responsive design for screenshots */
@media (max-width: 768px) {
    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}/* Lo
go link styling */
.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    text-decoration: none;
    color: inherit;
}

.logo a h1 {
    margin: 0;
    transition: color 0.3s ease;
}

.logo a:hover h1 {
    color: #2563eb;
}/* N
ew simplified project card styles */
.project-image-large {
    width: 100%;
    height: 560px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image-large img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
    text-align: center;
}

.project-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

/* Update project card link hover */
.project-card-link:hover .project-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for new style */
@media (max-width: 768px) {
    .project-image-large {
        height: 440px;
    }
    
    .project-info {
        padding: 1rem;
    }
    
    .project-info h3 {
        font-size: 1.125rem;
    }
}/* P
lay Game Button - Solid standout style */
.play-game-btn {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.play-game-btn:hover {
    background: linear-gradient(135deg, #15803d 0%, #166534 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.play-game-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3) !important;
}/* Try
 Exam Button - Solid standout style */
.try-exam-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    color: white !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.try-exam-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
    color: white !important;
    text-decoration: none !important;
}

.try-exam-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3) !important;
}/* L
ive Demo Badge and Special Effects */
.project-card.has-demo {
    border: 2px solid #16a34a;
    box-shadow: 0 4px 20px rgba(22, 163, 74, 0.15), 0 0 0 1px rgba(22, 163, 74, 0.1);
}

.project-card.has-demo:hover {
    border-color: #15803d;
    box-shadow: 0 12px 30px rgba(22, 163, 74, 0.25), 0 0 0 1px rgba(22, 163, 74, 0.2);
}

.live-demo-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.live-demo-badge i {
    font-size: 0.7rem;
}

/* Ensure project card has relative positioning for badge */
.project-card {
    position: relative;
}

/* Badge animation on hover */
.project-card:hover .live-demo-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.4);
}

/* Responsive adjustments for badge */
@media (max-width: 768px) {
    .live-demo-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
}/
* Logo with Apple Icon */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.logo a:hover .logo-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo a:hover h1 {
    color: #1d4ed8;
}

/* Responsive logo adjustments */
@media (max-width: 768px) {
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
}/*
 Fix logo alignment for main page */
.logo-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}