@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

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

body {
    margin: 0;
    padding: 0;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Intro Page */
.intro-page {
    background: linear-gradient(-45deg, #090040, #471396, #52357B, #5459AC);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    color: white;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    
    /* Prevent stretching */
    width: auto;
    max-width: 90%;
    white-space: nowrap;
}

.content h1.bottom-to-top {
    font-family: 'Quicksand', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    overflow: hidden;
    font-weight: 300;
    animation: slideUpFromBottom 0.8s ease-out forwards;
    transform: translateY(100%);
    opacity: 0;
}

@keyframes slideUpFromBottom {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    animation: slideUpFromBottom 0.8s ease-out forwards;
    transform: translateY(100%);
    opacity: 0;
}

.subtitle {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    margin-top: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideUpFromBottom 0.8s ease-out forwards;
    transform: translateY(100%);
    opacity: 0;
}

.code-snippet {
    margin: 25px auto 0;
    padding: 8px 12px;
    background: #1e1e1e;
    border: 1px solid #3c3c3c;
    border-radius: 8px;
    font-family: 'Consolas', 'Courier New', monospace;
    font-size: 0.9rem;
    color: #d4d4d4;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    animation: slideUpFromBottom 0s ease-out forwards;
    transform: translateY(100%);
    opacity: 0;
    display: inline-block;
    width: 700px;
    line-height: 1.1;
}

.code-line {
    overflow: hidden;
    white-space: pre;
    width: 0;
    font-family: 'Consolas', 'Courier New', monospace;
    line-height: 1.1;
    margin: 0;
    margin-bottom: 8px;
    padding: 0;
}

.line1 {
    animation: typewriter-line1 1s steps(20) 1s forwards;
}

.line2 {
    animation: typewriter-line2 3s steps(80) 2.5s forwards;
}

.line2::after {
    content: "";
    border-right: 2px solid #d4d4d4;
    animation: blink 1s infinite 5s;
}

@keyframes typewriter-line1 {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes typewriter-line2 {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    0%, 50% {
        border-color: #d4d4d4;
    }
    51%, 100% {
        border-color: transparent;
    }
}

.code-snippet .keyword {
    color: #569cd6;
}

.code-snippet .function {
    color: #dcdcaa;
}

.code-snippet .string {
    color: #ce9178;
}

.navigation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px auto 0;
    max-width: 900px;
    padding: 0 20px;
    animation: slideUpFromBottom 1s ease-out 5.5s forwards;
    transform: translateY(100%);
    opacity: 0;
}

.nav-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 20px;
    color: white;
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.nav-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.nav-card p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.8;
    margin: 0;
}

.nav-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .code-snippet {
        width: 450px;
        font-size: 0.8rem;
    }
    
    .navigation-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
    }
    
    .nav-card {
        padding: 15px;
    }
    
    .nav-card h3 {
        font-size: 1rem;
    }
    
    .nav-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .code-snippet {
        width: 320px;
        font-size: 0.7rem;
        padding: 6px 10px;
    }
    
    .navigation-cards {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 300px;
    }
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.bottom-link {
    color: white;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.bottom-link:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .bottom-bar {
        gap: 20px;
        padding: 15px;
    }
    
    .bottom-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .bottom-bar {
        gap: 10px;
        padding: 12px;
    }
    
    .bottom-link {
        font-size: 0.7rem;
    }
}

/* Page Sections */
.page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: linear-gradient(-45deg, #090040, #471396, #52357B, #5459AC);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}

.section-content {
    max-width: 800px;
    text-align: center;
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: white;
}

.section-content p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .section-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .section-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .page-section {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .section-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-content p {
        font-size: 0.9rem;
    }
    
    .page-section {
        padding: 40px 10px;
    }
}

/* Project Container */
.project-container-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.project-container-link:not(:first-child) {
    margin-top: 40px;
}

.project-container {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.project-container-link:hover .project-container {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.project-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    filter: brightness(0) invert(1);
}

.project-info {
    flex: 1;
    text-align: left;
}

.project-info h3 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.project-link {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.github-link {
    display: inline-block;
    margin-left: 12px;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.github-link:hover {
    color: white;
    transform: scale(1.1);
}

.github-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.project-info p {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .project-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px;
    }
    
    .project-image {
        width: 120px;
        height: 120px;
    }
    
    .project-info {
        text-align: center;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .project-info p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .project-container-link:not(:first-child) {
        margin-top: 30px;
    }
    
    .project-container {
        padding: 15px;
        gap: 15px;
    }
    
    .project-image {
        width: 100px;
        height: 100px;
    }
    
    .project-info h3 {
        font-size: 1.1rem;
    }
    
    .project-info p {
        font-size: 0.8rem;
    }
}

/* Project Detail Page */
.project-detail-page {
    min-height: 100vh;
    background: linear-gradient(-45deg, #090040, #471396, #52357B, #5459AC);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
    padding: 40px 20px;
}

.project-detail-content {
    max-width: 900px;
    margin: 0 auto;
    color: white;
    font-family: 'Quicksand', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.back-navigation {
    margin-bottom: 30px;
}

.back-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: white;
    text-decoration: underline;
}

.project-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.project-image-large {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    filter: brightness(0) invert(1);
}

.project-title-section h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.project-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.project-details {
    display: grid;
    gap: 30px;
}

.project-section {
    margin-bottom: 40px;
}

.project-section.header-section {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.project-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.project-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.project-section ul {
    list-style: none;
    padding: 0;
}

.project-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.project-section li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.7);
    font-weight: bold;
}

@media (max-width: 768px) {
    .project-header {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 25px;
    }
    
    .project-image-large {
        width: 150px;
        height: 150px;
    }
    
    .project-title-section h1 {
        font-size: 2rem;
    }
    
    .project-subtitle {
        font-size: 1rem;
    }
    
    .project-section {
        padding: 20px;
    }
    
    .project-section h2 {
        font-size: 1.5rem;
    }
    
    .project-section p,
    .project-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .project-detail-page {
        padding: 20px 15px;
    }
    
    .project-header {
        padding: 20px;
    }
    
    .project-image-large {
        width: 120px;
        height: 120px;
    }
    
    .project-title-section h1 {
        font-size: 1.7rem;
    }
    
    .project-subtitle {
        font-size: 0.9rem;
    }
    
    .project-section {
        padding: 15px;
    }
    
    .project-section h2 {
        font-size: 1.3rem;
    }
    
    .project-section p,
    .project-section li {
        font-size: 0.9rem;
    }
}

/* Performance Charts Styling */
.performance-charts {
    margin: 30px 0;
    display: grid;
    gap: 40px;
}

.chart-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.chart-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.chart-container {
    width: 100%;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bar-item {
    display: grid;
    grid-template-columns: 150px 1fr 60px;
    align-items: center;
    gap: 15px;
}

.bar-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
}

.bar-wrapper {
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 12px;
    transition: width 1s ease-in-out;
    position: relative;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.bar-fill.three-class {
    background: linear-gradient(90deg, #2196F3, #64B5F6);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.bar-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    text-align: center;
}

/* Model Cards Styling */
.model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.model-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.model-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.model-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
}

.model-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 8px;
}

/* Responsive Design for Charts */
@media (max-width: 768px) {
    .bar-item {
        grid-template-columns: 120px 1fr 50px;
        gap: 10px;
    }
    
    .bar-label {
        font-size: 0.8rem;
    }
    
    .bar-value {
        font-size: 0.8rem;
    }
    
    .chart-section {
        padding: 20px;
    }
    
    .chart-section h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .performance-charts {
        gap: 30px;
    }
    
    .bar-item {
        grid-template-columns: 100px 1fr 45px;
        gap: 8px;
    }
    
    .bar-label {
        font-size: 0.7rem;
    }
    
    .bar-value {
        font-size: 0.7rem;
    }
    
    .bar-wrapper {
        height: 20px;
    }
    
    .model-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .model-card {
        padding: 15px;
    }
    
    .model-card h4 {
        font-size: 1rem;
    }
    
    .stat-label,
    .stat-value {
        font-size: 0.8rem;
    }
}

/* Minimal Pipeline Styling */
.pipeline-container {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pipeline-flow {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.pipeline-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
}

.stage-number {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.pipeline-stage h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.pipeline-stage p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

.pipeline-connector {
    position: absolute;
    right: -10px;
    top: 17px;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6));
    z-index: 1;
}

.pipeline-stage:last-child .pipeline-connector {
    display: none;
}

/* Analysis Comparison Styling */
.analysis-comparison {
    margin: 40px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.analysis-comparison h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.approach-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.approach-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.approach-header {
    padding: 20px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(139, 195, 74, 0.2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.approach-card.ternary .approach-header {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.2), rgba(100, 181, 246, 0.2));
}

.approach-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.approach-accuracy {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.approach-card.ternary .approach-accuracy {
    color: #2196F3;
    background: rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.4);
}

.approach-content {
    padding: 20px;
}

.classification-types {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.class-item {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.class-item.positive {
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    border-color: rgba(76, 175, 80, 0.5);
}

.class-item.negative {
    background: rgba(244, 67, 54, 0.3);
    color: #f44336;
    border-color: rgba(244, 67, 54, 0.5);
}

.class-item.neutral {
    background: rgba(158, 158, 158, 0.3);
    color: #9e9e9e;
    border-color: rgba(158, 158, 158, 0.5);
}

.approach-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    text-align: center;
}

/* Responsive Design for Pipeline */
@media (max-width: 768px) {
    .pipeline-flow {
        flex-direction: column;
        gap: 25px;
    }
    
    .pipeline-connector {
        display: none;
    }
    
    .stage-number {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
    
    .pipeline-stage h4 {
        font-size: 0.9rem;
    }
    
    .pipeline-stage p {
        font-size: 0.8rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-header {
        padding: 15px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .classification-types {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .pipeline-container {
        padding: 20px;
    }
    
    .pipeline-flow {
        gap: 20px;
    }
    
    .stage-number {
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }
    
    .pipeline-stage h4 {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .pipeline-stage p {
        font-size: 0.75rem;
    }
    
    .analysis-comparison {
        padding: 20px;
    }
    
    .analysis-comparison h3 {
        font-size: 1.2rem;
    }
    
    .approach-content {
        padding: 15px;
    }
    
    .approach-accuracy {
        font-size: 1.1rem;
        padding: 6px 12px;
    }
    
    .class-item {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
}

/* Research Findings Cards Styling */
.findings-container {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.finding-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.finding-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.finding-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.finding-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.finding-metric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.finding-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Findings */
@media (max-width: 768px) {
    .findings-container {
        padding: 20px;
    }
    
    .findings-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .finding-card {
        padding: 15px;
    }
    
    .finding-header h4 {
        font-size: 1rem;
    }
    
    .finding-metric {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .finding-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .findings-container {
        padding: 15px;
    }
    
    .finding-card {
        padding: 12px;
    }
    
    .finding-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .finding-header h4 {
        font-size: 0.95rem;
    }
    
    .finding-metric {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .finding-card p {
        font-size: 0.8rem;
    }
}

/* Brokerage Firms Cards Styling */
.brokerage-container {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.brokerage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.brokerage-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.brokerage-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.method-badge {
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.brokerage-card.direct .method-badge {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.brokerage-card.selenium .method-badge {
    background: linear-gradient(135deg, #FF9800, #FFC107);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.brokerage-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Technical Challenges Cards Styling */
.challenges-container {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.challenge-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.challenge-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.challenge-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.challenge-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
    flex: 1;
}

.solution-badge {
    background: linear-gradient(135deg, #2196F3, #64B5F6);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.challenge-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Financial Scraper Cards */
@media (max-width: 768px) {
    .brokerage-container,
    .challenges-container {
        padding: 20px;
    }
    
    .brokerage-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .brokerage-card,
    .challenge-card {
        padding: 15px;
    }
    
    .card-header,
    .challenge-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .card-header h4,
    .challenge-header h4 {
        font-size: 1rem;
    }
    
    .method-badge,
    .solution-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .brokerage-card p,
    .challenge-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .brokerage-container,
    .challenges-container {
        padding: 15px;
    }
    
    .brokerage-card,
    .challenge-card {
        padding: 12px;
    }
    
    .card-header h4,
    .challenge-header h4 {
        font-size: 0.95rem;
    }
    
    .method-badge,
    .solution-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .brokerage-card p,
    .challenge-card p {
        font-size: 0.8rem;
    }
}

/* Clinical Models Cards Styling */
.models-container {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.model-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.model-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.model-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.model-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.model-type {
    background: linear-gradient(135deg, #9C27B0, #E1BEE7);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
}

.model-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 15px;
}

.model-outcomes {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.outcome {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.outcome.upper { background: rgba(244, 67, 54, 0.3); color: #f44336; border-color: rgba(244, 67, 54, 0.5); }
.outcome.mid { background: rgba(255, 152, 0, 0.3); color: #FF9800; border-color: rgba(255, 152, 0, 0.5); }
.outcome.lower { background: rgba(76, 175, 80, 0.3); color: #4CAF50; border-color: rgba(76, 175, 80, 0.5); }
.outcome.urgent { background: rgba(244, 67, 54, 0.3); color: #f44336; border-color: rgba(244, 67, 54, 0.5); }
.outcome.routine { background: rgba(76, 175, 80, 0.3); color: #4CAF50; border-color: rgba(76, 175, 80, 0.5); }
.outcome.icu { background: rgba(244, 67, 54, 0.3); color: #f44336; border-color: rgba(244, 67, 54, 0.5); }
.outcome.ward { background: rgba(33, 150, 243, 0.3); color: #2196F3; border-color: rgba(33, 150, 243, 0.5); }
.outcome.immediate { background: rgba(244, 67, 54, 0.3); color: #f44336; border-color: rgba(244, 67, 54, 0.5); }
.outcome.standard { background: rgba(158, 158, 158, 0.3); color: #9e9e9e; border-color: rgba(158, 158, 158, 0.5); }

/* Application Features Cards Styling */
.features-container {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin: 0;
}

/* Clinical Applications & Disclaimers Styling */
.disclaimers-container {
    margin: 30px 0;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.applications-section,
.disclaimers-section {
    margin-bottom: 30px;
}

.applications-section:last-child,
.disclaimers-section:last-child {
    margin-bottom: 0;
}

.disclaimers-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 10px;
}

.application-cards,
.disclaimer-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.application-card,
.disclaimer-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.disclaimer-card {
    border-left: 4px solid #f44336;
    background: rgba(244, 67, 54, 0.1);
}

.application-card:hover,
.disclaimer-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.application-card h4,
.disclaimer-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.application-card p,
.disclaimer-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design for Clinical Triage Cards */
@media (max-width: 768px) {
    .models-container,
    .features-container,
    .disclaimers-container {
        padding: 20px;
    }
    
    .models-grid,
    .features-grid,
    .application-cards,
    .disclaimer-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .model-card,
    .feature-card,
    .application-card,
    .disclaimer-card {
        padding: 15px;
    }
    
    .model-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .disclaimers-container h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .models-container,
    .features-container,
    .disclaimers-container {
        padding: 15px;
    }
    
    .model-card,
    .feature-card,
    .application-card,
    .disclaimer-card {
        padding: 12px;
    }
    
    .feature-icon {
        font-size: 1.8rem;
    }
    
    .model-header h4,
    .feature-card h4,
    .application-card h4,
    .disclaimer-card h4 {
        font-size: 0.95rem;
    }
    
    .model-type {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .outcome {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* Real Estate Automation Sections */
.sections-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

.section-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.section-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.section-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.section-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

/* Automation Features */
.automation-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.automation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.automation-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.automation-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.automation-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.automation-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin: 0;
}

/* Real Estate Applications */
.applications-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

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

.application-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
}

.application-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.app-badge {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Badge variations for Real Estate */
.app-badge:nth-of-type(1) { background: linear-gradient(45deg, #43e97b, #38f9d7); }
.app-badge:nth-of-type(2) { background: linear-gradient(45deg, #fa709a, #fee140); }
.app-badge:nth-of-type(3) { background: linear-gradient(45deg, #667eea, #764ba2); }
.app-badge:nth-of-type(4) { background: linear-gradient(45deg, #f093fb, #f5576c); }
.app-badge:nth-of-type(5) { background: linear-gradient(45deg, #4facfe, #00f2fe); }
.app-badge:nth-of-type(6) { background: linear-gradient(45deg, #ff9a9e, #fecfef); }

/* Responsive Design for Real Estate Cards */
@media (max-width: 768px) {
    .sections-container,
    .automation-container,
    .applications-container {
        padding: 20px;
    }
    
    .sections-grid,
    .automation-grid,
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .section-card,
    .automation-card,
    .application-card {
        padding: 15px;
    }
    
    .section-icon,
    .automation-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    
    .app-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .sections-container,
    .automation-container,
    .applications-container {
        padding: 15px;
    }
    
    .section-card,
    .automation-card,
    .application-card {
        padding: 12px;
    }
    
    .section-icon,
    .automation-icon {
        font-size: 1.8rem;
    }
    
    .section-card h4,
    .automation-card h4,
    .app-header h4 {
        font-size: 0.95rem;
    }
    
    .app-badge {
        font-size: 0.7rem;
        padding: 3px 8px;
    }
}

/* About Me Section */
.about-intro {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.about-cards-container {
    margin: 40px 0;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.about-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 15px;
    opacity: 0.9;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.about-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 15px;
}

/* Education Card */
.degrees-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.degree {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.degree.current {
    background: linear-gradient(45deg, rgba(67, 233, 123, 0.2), rgba(56, 249, 215, 0.2));
    border-color: rgba(67, 233, 123, 0.3);
}

.degree-title {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.degree-status {
    background: linear-gradient(45deg, #43e97b, #38f9d7);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.degree-year {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* Passion Card */
.passion-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.highlight {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Gaming Card */
.gaming-elements {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.game-element {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff6b6b;
}

.element-name {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.element-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Philosophy Card */
.approach-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.approach-point {
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.approach-point strong {
    color: white;
}

/* Quote Section */
.about-quote {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-quote blockquote {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    position: relative;
}

.about-quote blockquote::before,
.about-quote blockquote::after {
    content: '"';
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    position: absolute;
}

.about-quote blockquote::before {
    top: -10px;
    left: -15px;
}

.about-quote blockquote::after {
    bottom: -30px;
    right: -15px;
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-intro,
    .about-card,
    .about-quote {
        padding: 20px;
    }
    
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
    
    .about-card h3 {
        font-size: 1.2rem;
    }
    
    .degree {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .passion-highlights {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-intro,
    .about-card,
    .about-quote {
        padding: 15px;
    }
    
    .about-intro p {
        font-size: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
    }
    
    .about-card h3 {
        font-size: 1.1rem;
    }
    
    .about-quote blockquote {
        font-size: 1rem;
    }
    
    .highlight {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}