/* --- Global Animations --- */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-down {
    animation: fadeInDown 0.6s ease-out 0.2s forwards;
    opacity: 0;
}
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
    opacity: 0;
}
.animate-stagger-in {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.4s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

/* --- Spinner --- */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
}
[data-theme="dark"] .spinner {
    border: 4px solid #4a5568;
    border-top: 4px solid #63b3ed;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Base Styles & Fonts --- */
body {
    font-family: 'Inter', sans-serif;
    transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out;
    /* FIX: Removed flex properties. 
      The body should not be responsible for centering the main app container.
      The #appContainer itself is set to 100dvh (100% dynamic viewport height)
      and handles its own layout. This conflict was causing the inconsistency.
    */
    min-height: 100vh;
    padding: 0;
    background-image: linear-gradient(135deg, #e0f2fe 0%, #c7d2fe 100%);
    line-height: 1.6;
    color: #1f2937;
}

/* --- Dark Mode Theme Overrides --- */
[data-theme="dark"] body {
    background-color: #1a202c;
    background-image: linear-gradient(135deg, #1e293b 0%, #3730a3 100%);
    color: #e2e8f0;
}
[data-theme="dark"] #appContainer {
    background-color: #2d3748;
}
[data-theme="dark"] #explorerPage,
[data-theme="dark"] #solutionPage,
[data-theme="dark"] #aboutPage,
[data-theme="dark"] #resumePage {
    background-color: #2d3748;
    color: #e2e8f0;
}
[data-theme="dark"] #mainHeader {
    background-color: #2d3748;
    border-color: #a0aec0;
}
[data-theme="dark"] footer,
[data-theme="dark"] #mainFooter {
    background-color: #1a202c;
    border-color: #a0aec0;
}
[data-theme="dark"] #welcomePage .text-gray-800,
[data-theme="dark"] #aboutContent .text-gray-700,
[data-theme="dark"] #aboutContent strong {
    color: #e2e8f0;
}

/* --- Dark Mode Toggle Switch --- */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
}
.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    border: 2px solid #000;
}
input:checked + .slider {
    background-color: #3f51b5;
}
input:checked + .slider:before {
    transform: translateX(26px);
    background-color: #fdd835;
    border-color: #000;
}
[data-theme="dark"] .slider {
    background-color: #4a5568;
    border-color: #a0aec0;
    box-shadow: 2px 2px 0px #a0aec0;
}
[data-theme="dark"] .slider:before {
    border-color: #a0aec0;
    background-color: #e2e8f0;
}
[data-theme="dark"] input:checked + .slider {
    background-color: #4299e1;
}

/* --- Mobile Burger Menu --- */
#burgerButton {
    border: 2px solid #000;
    border-radius: 0.5rem;
    padding: 0.25rem;
    transition: all 0.2s;
    box-shadow: 2px 2px 0px #000;
    z-index: 1000;
    position: relative;
}
#burgerButton:active {
    transform: translate(2px, 2px);
    box-shadow: none;
}
[data-theme="dark"] #burgerButton {
    border-color: #a0aec0;
    box-shadow: 2px 2px 0px #a0aec0;
    color: #e2e8f0;
}
#mobileMenu {
    position: fixed;
    top: 50%;
    left: 50%;
    background-color: rgba(255, 255, 255, 1);
    z-index: 998;
    padding: 2rem;
    border-bottom: 4px solid #000;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 20rem;
    border-radius: 0.75rem;
    border: 4px solid #000;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out, visibility 0.2s;
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
    visibility: hidden;
}
#mobileMenu.visible {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}
[data-theme="dark"] #mobileMenu {
    background-color: rgba(45, 55, 72, 1);
    border-color: #a0aec0;
}
#mobileMenu > div {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 20rem;
}
.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 800;
    padding: 1rem;
    border: 2px solid #000;
    box-shadow: 3px 3px 0px #000;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.2s;
    width: 100%;
    display: block;
}
.mobile-menu-link:active {
    transform: translate(3px, 3px);
    box-shadow: none;
}
[data-theme="dark"] .mobile-menu-link {
    border-color: #a0aec0;
    box-shadow: 3px 3px 0px #a0aec0;
    color: #e2e8f0;
    background-color: #4a5568;
}

/* --- Neo-Brutalism Shadows & Buttons --- */
.neo-shadow {
    box-shadow: 6px 6px 0px #000;
    transition: box-shadow 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.neo-shadow-sm {
    box-shadow: 3px 3px 0px #000;
}
.neo-shadow-xs {
    box-shadow: 2px 2px 0px #000;
}
.neo-button {
    transition: all 0.1s ease-in-out;
    border: 2px solid #000;
    border-radius: 0.5rem;
    font-weight: 700;
    color: white;
}
.neo-button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}
.neo-button:active {
    transform: translate(3px, 3px);
    box-shadow: none;
}
[data-theme="dark"] .neo-shadow {
    box-shadow: 6px 6px 0px #a0aec0;
}
[data-theme="dark"] .neo-shadow-sm {
    box-shadow: 3px 3px 0px #a0aec0;
}
[data-theme="dark"] .neo-shadow-xs {
    box-shadow: 2px 2px 0px #a0aec0;
}
[data-theme="dark"] .neo-button {
    border: 2px solid #a0aec0;
    color: #e2e8f0;
    background-color: #4a5568;
}
[data-theme="dark"] .neo-button:hover {
    background-color: #5a6578;
}

/* --- Dynamic Button Colors --- */
/* AWS (Amber/Yellow) */
.btn-aws { background-color: #f59e0b; color: #1f2937; }
.btn-aws:hover { background-color: #d97706; }
.btn-aws.active:hover { background-color: #f59e0b; transform: translate(3px, 3px); box-shadow: none; }
[data-theme="dark"] .btn-aws { background-color: #f59e0b; color: #1f2937; }
[data-theme="dark"] .btn-aws:hover { background-color: #fbbf24; }
[data-theme="dark"] .btn-aws.active:hover { background-color: #f59e0b; transform: translate(3px, 3px); box-shadow: none; }

/* Azure (Blue) */
.btn-azure { background-color: #3b82f6; color: white; }
.btn-azure:hover { background-color: #2563eb; }
.btn-azure.active:hover { background-color: #3b82f6; transform: translate(3px, 3px); box-shadow: none; }
[data-theme="dark"] .btn-azure { background-color: #60a5fa; color: #1f2937; }
[data-theme="dark"] .btn-azure:hover { background-color: #3b82f6; }
[data-theme="dark"] .btn-azure.active:hover { background-color: #60a5fa; transform: translate(3px, 3px); box-shadow: none; }

/* OCI (Red) */
.btn-oracle { background-color: #ef4444; color: white; }
.btn-oracle:hover { background-color: #dc2626; }
.btn-oracle.active:hover { background-color: #ef4444; transform: translate(3px, 3px); box-shadow: none; }
[data-theme="dark"] .btn-oracle { background-color: #f87171; color: #1f2937; }
[data-theme="dark"] .btn-oracle:hover { background-color: #ef4444; }
[data-theme="dark"] .btn-oracle.active:hover { background-color: #f87171; transform: translate(3px, 3px); box-shadow: none; }

/* About Me (Green) */
.btn-about { background-color: #10b981; color: white; }
.btn-about:hover { background-color: #059669; }
.btn-about.active:hover { background-color: #10b981; transform: translate(3px, 3px); box-shadow: none; }
[data-theme="dark"] .btn-about { background-color: #34d399; color: #1f2937; }
[data-theme="dark"] .btn-about:hover { background-color: #10b981; }
[data-theme="dark"] .btn-about.active:hover { background-color: #34d399; transform: translate(3px, 3px); box-shadow: none; }

/* Dark mode tab text color override */
[data-theme="dark"] .tab-btn.btn-aws,
[data-theme="dark"] .tab-btn.btn-azure,
[data-theme="dark"] .tab-btn.btn-oracle,
[data-theme="dark"] .tab-btn.btn-about {
    color: #1f2937 !important;
}

/* --- Main App Container Layout --- */
#appContainer {
    width: 100%;
    max-width: 100%;
    background-color: white;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100dvh; /* Use dynamic viewport height */
    transition: background-color 0.5s, border-color 0.5s;
}
#contentArea {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem 0;
    padding-bottom: 2rem; /* Bottom padding for mobile */
}
@media (min-width: 768px) {
    #contentArea {
        padding-bottom: 1rem;
    }
}

/* --- Header & Footer --- */
#mainHeader {
    transition: all 0.3s ease-in-out;
    padding: 0.5rem 1rem; /* Base padding */
}
@media (min-width: 768px) {
    #mainHeader {
        padding: 0.75rem 1.5rem; /* Larger padding on desktop */
    }
}
.logo-svg {
    width: 30px;
    height: 30px;
}
.logo-text {
    font-size: 1.5rem; /* text-2xl */
}
@media (min-width: 640px) {
    .logo-text {
        font-size: 1.875rem; /* sm:text-3xl */
    }
}
#mainFooter {
    padding: 0.75rem 1.5rem !important;
}
#mainFooter > div {
    flex-direction: row;
    justify-content: space-between;
}
#mainFooter p {
    font-size: 0.875rem;
    margin: 0;
}
#mainFooter svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* --- Welcome Page Cards --- */
.cloud-graphic {
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    width: 100%;
    border: 4px solid #000;
    border-radius: 0.75rem;
    padding: 1rem; /* Mobile padding */
    text-align: center;
}
.cloud-graphic:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 12px 12px 0px #000;
}
.cloud-graphic:active {
    transform: translate(4px, 4px);
    box-shadow: 4px 4px 0px #000;
}
[data-theme="dark"] .cloud-graphic {
    border-color: #a0aec0;
}
[data-theme="dark"] .cloud-graphic:hover {
    box-shadow: 12px 12px 0px #a0aec0;
}
@media (min-width: 640px) {
    .cloud-graphic {
        width: 45%;
        padding: 2rem; /* Desktop padding */
    }
}
@media (min-width: 1024px) {
    .cloud-graphic {
        width: 30%;
    }
}
.cloud-graphic[data-cloud="aws"] { background-color: #ff9900; }
.cloud-graphic[data-cloud="oracle"] { background-color: #f80000; }
.cloud-graphic[data-cloud="azure"] { background-color: #0078d4; }

/* --- Explorer Page: Search Bar --- */
.search-container {
    position: relative;
    transition: all 0.3s ease-in-out;
    width: 100%;
    margin-top: 0.5rem;
    overflow: hidden;
}
#projectSearch {
    padding-left: 3rem !important;
    border: 2px solid #000;
    border-radius: 0.5rem;
    box-shadow: 3px 3px 0px #000;
    color: #1f2937;
    transition: box-shadow 0.2s;
}
#projectSearch:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    box-shadow: 3px 3px 0px #3b82f6;
}
.search-icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}
#explorerContent {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}
@media (min-width: 768px) {
    #explorerContent {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
[data-theme="dark"] #explorerContent {
    background-color: #2d3748;
}
[data-theme="dark"] #projectSearch {
    border-color: #a0aec0;
    box-shadow: 3px 3px 0px #a0aec0;
    background-color: #1a202c;
    color: #e2e8f0;
}
[data-theme="dark"] #projectSearch::placeholder {
    color: #909bb0;
}
[data-theme="dark"] #projectSearch:focus {
    box-shadow: 3px 3px 0px #63b3ed;
}
[data-theme="dark"] .search-icon svg {
    color: #a0aec0;
}

/* --- Explorer Page: Project List Item --- */
.project-item {
    transition: all 0.2s ease-in-out;
}
.project-item:hover {
    transform: translateY(-2px) scale(1.005);
    box-shadow: 3px 3px 0px #3b82f6;
}
[data-theme="dark"] .project-item {
    background-color: #202b3c;
    border-color: #a0aec0 !important;
}
[data-theme="dark"] .project-item:hover {
    background-color: #2d3748;
    box-shadow: 3px 3px 0px #63b3ed;
}
[data-theme="dark"] .project-item .text-gray-500 {
    color: #ccc;
}
[data-theme="dark"] .project-item .text-gray-800 {
    color: #e2e8f0;
}
.difficulty-bar {
    height: 4px;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 2px;
}
.difficulty-easy { background-color: #10b981; }
.difficulty-medium { background-color: #f59e0b; }
.difficulty-hard { background-color: #ef4444; }
[data-theme="dark"] .difficulty-easy { background-color: #34d399; }
[data-theme="dark"] .difficulty-medium { background-color: #fbbd23; }
[data-theme="dark"] .difficulty-hard { background-color: #f87171; }

/* --- Explorer Page: Category Tags --- */
.category-tag {
    border: 2px solid #000;
    box-shadow: 2px 2px 0px #000;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 800;
    color: #000;
    margin: 0.25rem;
    display: inline-block;
}
[data-theme="dark"] .category-tag {
    border-color: #a0aec0;
    box-shadow: 2px 2px 0px #a0aec0;
}
.category-serverless { background-color: #38bdf8; color: #000; }
.category-database { background-color: #f59e0b; color: #000; }
.category-orchestration { background-color: #10b981; color: #000; }
.category-messaging { background-color: #8b5cf6; color: #fff; }
.category-storage { background-color: #f43f5e; color: #fff; }
.category-workflow { background-color: #22c55e; color: #000; }
.category-streaming { background-color: #ef4444; color: #fff; }
.category-other { background-color: #94a3b8; color: #000; }
.category-dr { background-color: #7dd3fc; color: #000; }
.category-network { background-color: #c084fc; color: #fff; }
.category-secretsmanagement { background-color: #fca5a5; color: #000; }
.category-secureaccess { background-color: #7dd3fc; color: #000; }
.category-containers { background-color: #f472b6; color: #000; }
.category-ai\/ml { background-color: #34d399; color: #000; }
.category-devops { background-color: #facc15; color: #000; }
.category-security { background-color: #f87171; color: #000; }
[data-theme="dark"] .category-serverless { background-color: #67e8f9; color: #000; }
[data-theme="dark"] .category-database { background-color: #fcd34d; color: #000; }
[data-theme="dark"] .category-orchestration { background-color: #34d399; color: #000; }
[data-theme="dark"] .category-messaging { background-color: #c4b5fd; color: #000; }
[data-theme="dark"] .category-storage { background-color: #f87171; color: #000; }
[data-theme="dark"] .category-workflow { background-color: #86efac; color: #000; }
[data-theme="dark"] .category-streaming { background-color: #fca5a5; color: #000; }
[data-theme="dark"] .category-other { background-color: #9ca3af; color: #000; }
[data-theme="dark"] .category-dr { background-color: #86efac; color: #000; }
[data-theme="dark"] .category-network { background-color: #c4b5fd; color: #000; }
[data-theme="dark"] .category-secretsmanagement { background-color: #fca5a5; color: #000; }
[data-theme="dark"] .category-secureaccess { background-color: #67e8f9; color: #000; }
[data-theme="dark"] .category-containers { background-color: #f9a8d4; color: #000; }
[data-theme="dark"] .category-ai\/ml { background-color: #6ee7b7; color: #000; }
[data-theme="dark"] .category-devops { background-color: #fde047; color: #000; }
[data-theme="dark"] .category-security { background-color: #fca5a5; color: #000; }

/* --- Tab Buttons (Solution & Resume/About) --- */
.tab-btn {
    background-color: #ffffff;
    border: 3px solid #000;
    border-radius: 0.5rem;
    box-shadow: 3px 3px 0px #000;
    color: #1f2937;
    transition: all 0.1s ease-in-out;
    font-weight: 700;
}
.tab-btn:not(.active):hover {
    background-color: #f0f0f0;
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000;
}
.tab-btn.active {
    border-color: #000;
    transform: translate(3px, 3px);
    box-shadow: none;
    background-color: #e5e7eb !important; /* gray-200 */
    color: #1f2937 !important; /* black text */
}
.tab-btn:not(.active) {
    background-color: #ffffff !important;
}
[data-theme="dark"] .tab-btn:not(.active) {
    background-color: #2d3748 !important;
}
[data-theme="dark"] .tab-btn {
    border: 3px solid #a0aec0;
    box-shadow: 3px 3px 0px #a0aec0;
    color: #e2e8f0;
}
[data-theme="dark"] .tab-btn:not(.active):hover {
    background-color: #4a5568;
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #a0aec0;
}
[data-theme="dark"] .tab-btn.active {
    border-color: #a0aec0;
    transform: translate(3px, 3px);
    box-shadow: none;
    background-color: transparent !important;
    color: white !important;
}
[data-theme="dark"] .tab-btn.active:hover {
    transform: translate(3px, 3px);
    box-shadow: none;
}

/* --- Tab Content Animation --- */
.solution-tab-content,
.about-tab-content {
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
    transform: translateY(0);
}
.tab-hiding {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

/* --- Content Typography (Prose) --- */
.prose {
    font-size: 1.1rem;
}
.prose h1, .prose h2, .prose h3 {
    font-weight: 800;
}
.prose p, .prose li {
    margin-bottom: 1rem;
}
.prose code, .prose pre {
    font-family: 'Roboto Mono', monospace;
}
.prose ul {
    list-style-type: disc;
    padding-left: 1.5em;
}
.prose a {
    color: #2563eb;
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.2s ease-in-out;
}
.prose a:hover {
    color: #1d4ed8;
    text-decoration: none;
}
[data-theme="dark"] .prose a {
    color: #93c5fd;
}
[data-theme="dark"] .prose a:hover {
    color: #3b82f6;
}
.prose strong {
    font-weight: 900;
}
.prose em {
    font-style: italic;
}
.prose code:not(pre code) {
    background-color: #fef3c7;
    color: #b45309;
    padding: 0.1rem 0.3rem;
    border-radius: 0.2rem;
    font-weight: 600;
}
.prose .code-container {
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.prose pre {
    background-color: #1f2937;
    color: #f9fafb;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    border: 2px solid #000;
    box-shadow: 4px 4px 0px #000;
}
[data-theme="dark"] .prose pre {
    background-color: #1a202c;
    border: 2px solid #a0aec0;
    box-shadow: 4px 4px 0px #a0aec0;
}
.copy-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 20;
    cursor: pointer;
    background-color: #3b82f6;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: none;
    opacity: 0.8;
    transition: opacity 0.2s, background-color 0.2s;
}
.copy-btn:hover {
    opacity: 1;
    background-color: #2563eb;
}
[data-theme="dark"] .copy-btn:hover {
    background-color: #3b82f6;
}

/* --- Solution Page: Step-by-Step Guide --- */
.prose ol.step-guide-list {
    list-style: none;
    counter-reset: step-counter;
    padding-left: 0;
}
.prose ol.step-guide-list > li {
    counter-increment: step-counter;
    position: relative;
    border: 3px solid #000;
    box-shadow: 6px 6px 0px #000;
    background-color: #f9fafb;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    padding-top: 4rem;
    margin-bottom: 2.5rem;
    border-radius: 0.5rem;
    opacity: 0; /* Start hidden for animation */
}
.prose ol.step-guide-list > li h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}
[data-theme="dark"] .prose ol.step-guide-list > li {
    border-color: #a0aec0;
    box-shadow: 6px 6px 0px #a0aec0;
    background-color: #3f4a58;
    color: #e2e8f0;
}
.prose ol.step-guide-list > li::before {
    content: counter(step-counter);
    position: absolute;
    top: -1.5rem;
    left: -0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: #3b82f6;
    color: white;
    border: 3px solid #000;
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 4px 4px 0px #000;
    border-radius: 0.5rem;
    z-index: 10;
}
[data-theme="dark"] .prose ol.step-guide-list > li::before {
    border-color: #a0aec0;
    background-color: #63b3ed;
    color: #1a202c;
    box-shadow: 4px 4px 0px #a0aec0;
}
.prose ol.step-guide-list > li > ul {
    margin-top: 1rem;
    margin-bottom: 0;
    list-style-type: disc;
    padding-left: 1.5em;
}
.prose ol.step-guide-list > li > ul > li {
    margin-bottom: 0.5rem;
}

/* --- Resume Page: Info Card Styling --- */
.info-card {
    border: 3px solid #000;
    border-radius: 0.5rem;
    box-shadow: 4px 4px 0px #000;
    padding: 1rem 1.5rem;
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0; /* For stagger animation */
}
.info-card h2, .info-card h3 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}
.info-card ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0;
}
[data-theme="dark"] .info-card {
    border-color: #a0aec0;
    box-shadow: 4px 4px 0px #a0aec0;
    background-color: #3f4a58;
    color: #e2e8f0;
}

/* --- Resume Page: Job Entry Card Styling --- */
.job-entry {
    border: 3px solid #000;
    border-radius: 0.5rem;
    box-shadow: 4px 4px 0px #000;
    padding: 1.5rem;
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    opacity: 0; /* For stagger animation */
}
[data-theme="dark"] .job-entry {
    border-color: #a0aec0;
    box-shadow: 4px 4px 0px #a0aec0;
    background-color: #3f4a58;
    color: #e2e8f0;
}
.job-entry h3 {
    font-weight: 800;
    font-size: 1.25rem;
    margin-top: 0;
    margin-bottom: 0.25rem;
}
.job-entry ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}
.job-entry li {
    margin-bottom: 0.5rem;
}
.job-location {
    font-style: italic;
    color: #4b5563;
}
[data-theme="dark"] .job-location {
    color: #9ca3af;
}

/* --- Resume Page: Skill Card Grid Styling --- */
.skill-card-grid {
    border: 3px solid #000;
    border-radius: 0.5rem;
    box-shadow: 5px 5px 0px #000;
    transition: all 0.2s;
    background-color: #ffffff;
    overflow: hidden;
    opacity: 0; /* For stagger animation */
}
.skill-card-grid h4 {
    font-weight: 800;
    font-size: 1.25rem;
    padding: 0.75rem 1.25rem;
    margin: 0;
    color: white;
    border-bottom: 3px solid #000;
}
.skill-card-grid ul {
    list-style-type: disc;
    padding: 1rem 1.25rem 1rem 2.5rem;
    margin: 0;
}
.skill-card-grid li {
    font-weight: 500;
    margin-bottom: 0.5rem;
}
[data-theme="dark"] .skill-card-grid {
    border-color: #a0aec0;
    box-shadow: 5px 5px 0px #a0aec0;
    background-color: #2d3748;
    color: #e2e8f0;
}
[data-theme="dark"] .skill-card-grid h4 {
    border-bottom: 3px solid #a0aec0;
    color: #1f2937;
}
[data-theme="dark"] .skill-card-grid li {
    color: #e2e8f0;
}
.skill-card-grid h4.h-platforms { background-color: #3b82f6; border-color: #2563eb; }
.skill-card-grid h4.h-automation { background-color: #f97316; border-color: #ea580c; }
.skill-card-grid h4.h-strategy { background-color: #8b5cf6; border-color: #7c3aed; }
.skill-card-grid h4.h-governance { background-color: #ef4444; border-color: #dc2626; }
.skill-card-grid h4.h-devops { background-color: #eab308; color: #1f2937; border-color: #d97706; }
.skill-card-grid h4.h-business { background-color: #22c55e; border-color: #16a34a; }
[data-theme="dark"] .skill-card-grid h4.h-platforms { background-color: #60a5fa; border-color: #3b82f6; }
[data-theme="dark"] .skill-card-grid h4.h-automation { background-color: #fb923c; border-color: #f97316; }
[data-theme="dark"] .skill-card-grid h4.h-strategy { background-color: #a78bfa; border-color: #8b5cf6; }
[data-theme="dark"] .skill-card-grid h4.h-governance { background-color: #f87171; border-color: #ef4444; }
[data-theme="dark"] .skill-card-grid h4.h-devops { background-color: #facc15; border-color: #eab308; }
[data-theme="dark"] .skill-card-grid h4.h-business { background-color: #4ade80; border-color: #22c55e; }

/* --- About Page Specific --- */
.summary-text {
    font-size: 1.1rem;
}
/* FIX: Removed extra closing brace '}' that was here */