@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Shrikhand&display=swap');

/* --- Global Styles & Variables --- */
:root {
    /* Colors derived from the image */
    --color-text-dark: #2c2e35;
    --color-text-medium: #555866;
    --color-text-light: #888ba3;
    --color-background-white: #ffffff;
    --color-background-light-grey: #f7f7f9;

    --color-button-primary: #5c64f4;
    --color-button-hover: #8e50e9;

    --color-accent-purple-start: #a855f7;
    --color-accent-purple-end: #6366f1;
    --color-accent-pink-start: #d946ef;

    --gradient-purple-blue: linear-gradient(135deg, #8e2de2 0%, #4a00e0 100%);

    --color-btn-done: #000000;
    --color-card-bg-subtle: #f0f0f5;

    /* Shadows */
    --shadow-light: 0px 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0px 8px 25px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --border-radius-small: 6px;
    --border-radius-medium: 12px;
    --border-radius-large: 20px;

    /* Typography */
    --font-family-body: 'Montserrat', sans-serif;
    --font-family-headings: 'Montserrat', sans-serif;
    --font-size-base: 16px;
}

/* --- Base Reset & Universal Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-medium);
    background-color: var(--color-background-light-grey);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: var(--color-button-primary);
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: var(--color-button-hover);
}

ul {
    list-style: none;
}

.logo h1 {
    font-family: 'Shrikhand', cursive;
    font-weight: normal;
    font-style: normal;
    color: var(--color-text-dark);
    font-size: 2rem;
    line-height: 1;
    text-transform: lowercase;
    transform: skewX(-5deg);
    display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-headings);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.2;
    margin-bottom: 0.5em;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    transition: all 0.3s ease-in-out;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-section-block {
    padding: 60px 0;
    margin-bottom: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

/* --- EXPLICIT SECTION BACKGROUNDS FOR ALTERNATING PATTERN --- */
#interactive-cool-feature {
    background-color: var(--color-background-white);
}

#blog {
    background-color: var(--color-background-light-grey);
}

.two-column-section {
    background-color: var(--color-background-white);
}

#devrel {
    background-color: var(--color-background-light-grey);
}
/* --- END EXPLICIT SECTION BACKGROUNDS --- */

.section-padded {
    padding: 80px 0;
}

.content-section-block > .container {
    padding: 0 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.primary-btn {
    background-color: var(--color-button-primary);
    color: var(--color-background-white);
    box-shadow: var(--shadow-light);
}

.primary-btn:hover {
    background-color: var(--color-button-hover);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.secondary-btn {
    background-color: transparent;
    color: var(--color-text-medium);
    border: 2px solid var(--color-text-medium);
    padding: 10px 25px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
}

.secondary-btn:hover {
    border-color: var(--color-button-hover);
    color: var(--color-button-hover);
    background-color: rgba(142, 80, 233, 0.1);
}

/* --- Header & Navigation --- */
.main-header {
    background-color: transparent;
    padding: 20px 0;
    box-shadow: none;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding: 0 20px;
}

.main-header .logo h1 {
    color: var(--color-text-dark);
}

.main-header.header-on-image .logo h1,
.main-header.header-on-image .main-nav a {
    color: var(--color-background-white);
}

.main-header .main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-header .main-nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.main-header .main-nav a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--color-text-dark);
}

.main-header .main-nav a::after {
    display: none;
}

.main-header .done-button {
    background-color: var(--color-btn-done);
    color: var(--color-background-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.main-header .done-button:hover {
    background-color: var(--color-text-medium);
}

/* --- UPDATED: Hero Section & SVG Blob (Final, Aggressive Changes) --- */
.hero-section {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    height: 594px !important; /* Fixed pixel height */
    min-height: 594px !important; /* Fixed pixel min-height to override any other rules */
    padding: 20px 40px !important; /* Force a small amount of padding */
    background-color: var(--color-background-light-grey);
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    padding: 0;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 0;
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 5px; /* Reduced margin to pull content up */
    color: var(--color-text-dark);
    position: relative;
    padding-top: 15px;
}

.hero-content h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 10px;
    background: #a855f7;
    border-radius: 5px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-medium);
    margin-bottom: 10px; /* Reduced margin to pull content up */
}

.cta-button {
    text-decoration: none;
    font-weight: 600;
    color: var(--color-background-white);
    background: var(--gradient-purple-blue);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    margin-bottom: 0;
}

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

.hero-blob-container {
    position: absolute;
    top: -150px;
    right: -250px;
    width: 1000px;
    height: 1000px;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-blob-container svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* Media Queries for Responsiveness */
@media (max-width: 900px) {
    .main-header .container { padding: 0 25px; }
    .main-nav { display: none; }
    .main-header .container { justify-content: space-between; }
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px 25px !important;
    }
    .hero-content {
        order: 2;
    }
    .hero-content h2 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }
    .blob-container {
        position: relative;
        width: 100%;
        height: 300px;
        z-index: 1;
        margin: 0 auto;
    }
}

@media (max-width: 500px) {
    .container { padding: 0 15px; }
    .main-header .done-button { padding: 8px 15px; font-size: 0.85rem; }
    .logo img { height: 30px; }
    .hero-content h2 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .cta-button { padding: 12px 30px; font-size: 1rem; }
    .blob-container { height: 250px; }
}

/* --- Styled Footer --- */
.styled-footer {
    background-color: var(--color-background-light-grey);
    padding: 60px 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-column {
    padding: 0 15px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--color-text-dark);
    margin-bottom: 15px;
}

.footer-column h3 {
    font-size: 1.5rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: var(--color-text-medium);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-column ul li a:hover {
    color: var(--color-button-primary);
}

.footer-newsletter p {
    color: var(--color-text-medium);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
}

.newsletter-form button {
    padding: 12px 20px;
    border-radius: var(--border-radius-small);
    font-size: 0.9rem;
}

/* --- Styled Footer Adjustments --- */
.footer-column.footer-logo h3 {
    font-family: 'Shrikhand', cursive;
    font-weight: normal;
    font-style: normal;
    transform: skewX(-5deg);
    display: inline-block;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-column h4 {
    font-family: var(--font-family-headings);
}

.footer-column ul li a {
    font-family: var(--font-family-body);
}

/* --- Project Section Styling --- */
.project-section .container h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: var(--color-background-white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: var(--border-radius-medium);
    border-top-right-radius: var(--border-radius-medium);
}

.project-card .card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-card p {
    font-size: 0.95rem;
    color: var(--color-text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.project-tags {
    margin-top: 10px;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    background-color: #e0e7ff;
    color: var(--color-button-primary);
    padding: 6px 12px;
    border-radius: var(--border-radius-small);
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.project-card .view-project-button {
    margin-top: auto;
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* --- Two-Column Content Layout & SLIDER STYLING (UPDATED FOR FADE) --- */
.two-column-section .container h2 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 2rem;
}

.two-column-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.column-item {
    /* Basic padding for consistency if needed, but the container handles most */
}

/* Coding Projects Column Specifics */
.coding-projects-column {
    /* Styles specific to the left column if any */
}

/* UPDATED SLIDER STYLES FOR FADE EFFECT */
.slider-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: -10px;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: auto;
    overflow: hidden;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    height: 350px;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 10;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
    outline: none;
}

.slider-container:hover .slider-arrow {
    opacity: 1;
}

.prev-arrow {
    left: 15px;
}

.next-arrow {
    right: 15px;
}

.slider-arrow:hover {
    background-color: var(--color-button-hover);
}

.view-all-projects-button-container {
    text-align: center;
    margin-top: 20px;
}

/* DevRel Content Column Specifics */
.devrel-content-column {
    margin-top: 52px;
}

.devrel-content-column h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-align: left;
}

.devrel-content-column h2 br {
    display: block;
    content: "";
    margin-top: 5px;
}

.devrel-content-column p {
    color: var(--color-text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.devrel-summary-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.devrel-summary-list li {
    color: var(--color-text-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.devrel-summary-list li i {
    margin-right: 10px;
    color: var(--color-button-primary);
}

.view-all-devrel-button {
    /* Your existing .btn and .secondary-btn styles will apply */
}


/* Media Queries for Responsive Layout */
@media (max-width: 992px) {
    .two-column-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .two-column-section .container h2 {
        text-align: center;
    }
    .slider-container {
        max-width: 100%;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .view-all-projects-button-container,
    .devrel-content-column .view-all-devrel-button {
        text-align: center;
    }
    .devrel-content-column {
        margin-top: 0;
    }
}

@media (max-width: 500px) {
    .slider-container {
        height: 250px;
    }
    .slider-arrow {
        padding: 8px 10px;
        font-size: 1.2rem;
    }
}

/* --- Projects Section New Layout --- */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.project-row {
    background-color: var(--color-background-white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    padding: 25px 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.project-row.expanded {
    box-shadow: var(--shadow-medium);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-header h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
    color: var(--color-text-dark);
}

.expand-btn {
    background: none;
    border: none;
    color: var(--color-button-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    padding: 5px;
}

.expand-btn i {
    pointer-events: none;
}

.expand-btn[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.project-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.project-media-scroller {
    flex-shrink: 0;
    width: 60%;
    min-width: 300px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.project-media-grid {
    display: flex;
    gap: 15px;
    padding-right: 15px;
}

.media-square {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    background-color: var(--color-background-light-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.media-square figure {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.media-square figure img,
.media-square figure video {
    display: block;
    max-width: 100%;
    max-height: calc(100% - 20px);
    height: auto;
    object-fit: contain;
}

.project-description-wrapper {
    flex-grow: 1;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.project-description-wrapper p {
    margin-bottom: 10px;
}

.project-description-wrapper .hidden {
    display: none;
}

.project-code-section {
    margin-top: 30px;
    border-top: 1px solid var(--color-border-light);
    padding-top: 20px;
}

.project-code-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.show-code-modal-btn {
    background: none;
    border: none;
    color: var(--color-button-primary);
    font-size: 1.1rem;
    cursor: pointer;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-weight: 600;
    transition: color 0.2s ease;
}

.show-code-modal-btn:hover {
    color: var(--color-button-hover);
}

.code-source.hidden {
    display: none;
}

/* Media Queries for responsiveness */
@media (max-width: 992px) {
    .project-content-wrapper {
        flex-direction: column;
    }
    .project-media-scroller {
        width: 100%;
        justify-content: flex-start;
    }
    .project-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .project-header h3 {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .project-row {
        padding: 20px 20px;
    }
    .media-square {
        width: 100px;
        height: 100px;
    }
    .project-header h3 {
        font-size: 1.5rem;
    }
}

/* --- Code Modal Styling --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius-large);
    max-width: 90%;
    max-height: 85%;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: #333;
}

.modal-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--color-text-dark);
}

.modal-content pre {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: var(--border-radius-small);
    padding: 15px;
    overflow-x: auto;
    font-family: 'Consolas', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    line-height: 1.4;
    white-space: pre-wrap;
    word-break: break-all;
}

.modal-content code {
    display: block;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2em;
    cursor: pointer;
    color: #888;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #333;
}

/* --- Processing Files Section --- */
.processing-files-section {
    background-color: var(--color-background-light-grey);
    padding: 80px 0;
    text-align: center;
}

.processing-files-section h2 {
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.processing-files-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    justify-items: center;
}

.processing-file-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.processing-file-item .file-thumbnail {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-light);
    margin-bottom: 10px;
    background-color: var(--color-background-white);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.processing-file-item .file-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.processing-file-item .file-thumbnail img,
.processing-file-item .file-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.processing-file-item .file-title {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--color-text-dark);
    text-transform: lowercase;
    margin-bottom: 5px;
}

.processing-file-item .file-title::before {
    content: '<';
}
.processing-file-item .file-title::after {
    content: '>';
}

/* Media Queries for Processing Files Section */
@media (max-width: 768px) {
    .processing-files-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 20px;
    }
    .processing-file-item .file-thumbnail {
        width: 150px;
        height: 150px;
    }
    .processing-files-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 500px) {
    .processing-files-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }
    .processing-file-item .file-thumbnail {
        width: 120px;
        height: 120px;
    }
    .processing-file-item .file-title {
        font-size: 0.9rem;
    }
}

/* --- UPDATED: Interactive Cards Section --- */
.feature-grid {
    position: relative;
    padding: 60px 0 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -80px;
}

.feature-grid .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-grid h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--color-text-dark);
}

.feature-grid p {
    font-size: 1.25rem;
    color: var(--color-text-medium);
    text-align: center;
    max-width: 700px;
    margin-bottom: 50px;
}

.feature-card {
    background-color: var(--color-background-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    padding: 30px;
    height: 100%;
    box-sizing: border-box;
}

.feature-card.data-aura-card {
    width: 400px;
    min-height: 400px;
    z-index: 2;
    top: 50px;
    position: relative;
}

.feature-card.micro-game-card {
    position: absolute;
    box-shadow: var(--shadow-medium);
    padding: 30px;
    width: 450px; /* Increased the width to make the card longer */
    min-height: 750px;
    top: 0px;
    z-index: 2;
    bottom: 100px;

    left: 820px; /* Increased the 'left' value to move the card further to the right */
}

.data-aura-card h3, .micro-game-card h3 {
    margin-top: 0;
}

#micro-game-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.micro-game-card-item {
    background-color: var(--color-card-bg-subtle);
    border-radius: var(--border-radius-medium);
    padding: 20px;
    text-align: center;
    width: 120px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-weight: 500;
    color: var(--color-text-medium);
    font-size: 0.9em;
}

.card-value {
    font-size: 2em;
    font-weight: 700;
    margin-top: 10px;
}

.card-value svg {
    width: 2em;
    height: 2em;
    color: var(--color-text-dark);
}

.gradient-button {
    background: var(--gradient-purple-blue);
    color: var(--color-background-white);
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gradient-button:hover {
    transform: translateY(-2px);
}

/* --- Blob Wrapper --- */
.blob-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 900px;
    height: 1500px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    width: 100%;
    height: 100%;
    display: block;
}

.main-wrapper {
    position: relative;
}