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

:root {
    --primary-color: #15facf;
    --primary-dark: #0fc4a8;
    --primary-light: #3dfce0;
    --bg-color: #1e2328;
    --bg-light: #252a30;
    --bg-lighter: #2d3339;
    --text-color: #ffffff;
    --text-light: #e0e0e0;
    --text-lighter: #b0b0b0;
    --border-color: #3a4047;
    --shadow: rgba(21, 250, 207, 0.15);
    --shadow-hover: rgba(21, 250, 207, 0.25);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #1e2328;
    background-image: 
        linear-gradient(135deg, rgba(232, 245, 243, 0.08) 0%, transparent 50%),
        linear-gradient(225deg, rgba(212, 237, 233, 0.06) 0%, transparent 50%),
        linear-gradient(45deg, rgba(192, 229, 223, 0.04) 0%, transparent 50%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

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

html {
    scroll-behavior: smooth;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.header {
    background: rgba(30, 35, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
    cursor: pointer;
}

.logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(21, 250, 207, 0.4));
}

.logo-wrapper:hover .logo-icon {
    filter: drop-shadow(0 0 15px rgba(21, 250, 207, 0.7)) brightness(1.1);
    transform: scale(1.08);
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    margin: 0;
}

.logo-wrapper:hover .logo {
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.2rem;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.8rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.85rem;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color);
    background-color: rgba(37, 42, 48, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 250, 207, 0.2);
}

.nav-link:hover::before, .nav-link.active::before {
    width: 80%;
}

.nav-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(21, 250, 207, 0.15);
}

.top-banner {
    background: rgba(37, 42, 48, 0.6);
    padding: 3.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.banner-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.banner-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-signature {
    font-size: 1.1rem;
    color: var(--text-lighter);
    margin-top: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.team-name-bold {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(21, 250, 207, 0.3);
    transition: all 0.3s ease;
}

.team-name-bold:hover {
    color: var(--primary-light);
    text-shadow: 0 0 15px rgba(21, 250, 207, 0.5);
}

.subtitle {
    text-align: center;
    color: var(--text-lighter);
    font-size: 1rem;
    margin-bottom: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.footer-team-name {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-team-name:hover {
    color: var(--primary-light);
}

.section {
    padding: 3.5rem 0;
    position: relative;
    z-index: 1;
    scroll-margin-top: 90px;
}

.applications-section {
    padding-top: 2rem;
}

.applications-section .section-title {
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    padding-bottom: 1rem;
    position: relative;
    line-height: 1.3;
}

.section-title::after { content: ''; position: absolute; bottom: 0; right: 50%; transform: translateX(50%); width: 80px; height: 3px; background: var(--primary-color); border-radius: 2px; }

.section-intro {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0 auto 2rem;
    max-width: 750px;
    line-height: 1.7;
    padding: 0 1rem;
}

.content-wrapper {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.intro-text p {
    margin-bottom: 1rem;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow);
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.intro-image:hover {
    box-shadow: 0 15px 40px rgba(21, 250, 207, 0.3);
    transform: scale(1.05) translateY(-5px);
}

.list-box {
    background: rgba(37, 42, 48, 0.7);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    box-shadow: 0 2px 15px var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.list-box:hover {
    box-shadow: 0 8px 30px rgba(21, 250, 207, 0.2);
    transform: translateY(-3px);
}

.list-box h3 { color: var(--text-color); margin-bottom: 1.2rem; font-size: 1.2rem; font-weight: 600; }

.list-box ul {
    list-style: none;
    padding-left: 1.5rem;
}

.list-box li {
    padding: 0.6rem 2rem 0.6rem 1.8rem;
    position: relative;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    line-height: 1.6;
}

.list-box li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    padding-left: 2.5rem;
}

.list-box li::before { content: '✓'; position: absolute; left: 0.5rem; color: var(--primary-color); font-weight: bold; font-size: 1.3rem; transition: all 0.3s ease; }

.list-box li:hover::before { transform: scale(1.2) rotate(5deg); color: var(--primary-dark); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    background: rgba(30, 35, 40, 0.8);
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(21, 250, 207, 0.15);
    border-top: 3px solid #15facf;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.info-card:hover {
    box-shadow: 0 10px 35px rgba(21, 250, 207, 0.25);
    transform: translateY(-8px);
    border-top-width: 4px;
}

.info-card h3 {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-card:hover h3 { color: var(--primary-color); }

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.comparison-table {
    margin-top: 2rem;
    background: rgba(30, 35, 40, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.comparison-table:hover {
    box-shadow: 0 8px 35px rgba(21, 250, 207, 0.2);
    transform: translateY(-3px);
}

.comparison-table h3 { color: var(--text-color); margin-bottom: 1.2rem; text-align: center; font-size: 1.2rem; font-weight: 600; }

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    background: transparent;
}

th {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    background: transparent;
    border-bottom: 2px solid var(--primary-color);
    font-size: 0.95rem;
}

td {
    padding: 1rem;
    text-align: center;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
    background: transparent;
    font-size: 0.9rem;
}

tbody tr {
    transition: all 0.3s ease;
}

tbody tr:hover {
    transform: scale(1.02);
}

tbody tr:hover td {
    background: rgba(21, 250, 207, 0.12);
    color: var(--text-color);
}

.app-card {
    margin-bottom: 2rem;
    background: rgba(30, 35, 40, 0.8);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(21, 250, 207, 0.15);
    border-left: 3px solid #15facf;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.application_card:hover {
    box-shadow: 0 12px 40px rgba(21, 250, 207, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #15facf;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-card h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    margin: 0;
    padding: 0;
    border-bottom: none;
    font-weight: 600;
    line-height: 1.4;
    word-break: keep-all;
    transition: color 0.3s ease;
    flex: 1;
    min-width: 0;
}

.app-card:hover h3 { color: #15facf; }

.card-content {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.image-box {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
}

.card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    display: block;
}

.card-image:hover {
    box-shadow: 0 15px 45px rgba(21, 250, 207, 0.35);
    transform: scale(1.06) translateY(-8px);
}

.text-area {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    overflow: visible;
}

.text-area p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.6;
    word-break: keep-all;
}

.text-area ol {
    padding-left: 1.5rem;
    color: var(--text-light);
}

.text-area li {
    padding: 0.5rem 0;
    line-height: 1.6;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.text-area li::marker { color: var(--primary-color); font-weight: bold; }

.text-area li:hover {
    color: var(--primary-color);
}

.audio-box {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.player-box {
    width: auto;
    min-width: 280px;
    max-width: 100%;
    background: rgba(30, 35, 40, 0.8);
    border: 1px solid var(--border-color);
    border-left: 3px solid var(--primary-color);
    border-radius: 6px;
    padding: 0.5rem 0.8rem;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    box-sizing: border-box;
    overflow: visible;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: help;
}

.player-box:hover {
    border-color: var(--primary-color);
    background: rgba(30, 35, 40, 0.95);
    box-shadow: 0 2px 10px rgba(21, 250, 207, 0.15);
}

.audio-label-text {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.3px;
}

.audio-player {
    flex: 1;
    min-width: 0;
    height: 36px;
    outline: none;
    display: block;
    box-sizing: border-box;
}

.audio-player::-webkit-media-controls-panel {
    background-color: transparent !important;
}

.audio-player::-webkit-media-controls-play-button {
    background-color: var(--primary-color) !important;
    border-radius: 50% !important;
    width: 28px !important;
    height: 28px !important;
}

.audio-player::-webkit-media-controls-play-button:hover {
    background-color: var(--primary-dark) !important;
}

.audio-player::-webkit-media-controls-current-time-display,
.audio-player::-webkit-media-controls-time-remaining-display {
    color: var(--text-light) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.7rem !important;
    font-weight: 500;
}

.audio-player::-webkit-media-controls-timeline {
    background-color: rgba(58, 64, 71, 0.8) !important;
    border-radius: 2px;
    height: 3px;
    margin: 0 0.4rem;
}

.audio-player::-webkit-media-controls-timeline::-webkit-slider-thumb {
    background-color: var(--primary-color) !important;
    border-radius: 50%;
    width: 10px;
    height: 10px;
}

.audio-player::-webkit-media-controls-volume-slider {
    background-color: rgba(58, 64, 71, 0.8) !important;
    border-radius: 2px;
}

.audio-player::-webkit-media-controls-mute-button {
    filter: brightness(0) invert(0.7);
    opacity: 0.8;
}

.audio-player::-webkit-media-controls-mute-button:hover {
    opacity: 1;
    filter: brightness(0) invert(0.9);
}

.audio-player::-webkit-media-controls-enclosure {
    background-color: transparent !important;
}

@media (max-width: 768px) {
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .audio-box {
        justify-content: flex-start;
        width: 100%;
    }

    .player-box {
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 0.45rem 0.7rem;
        box-sizing: border-box;
        flex-wrap: wrap;
        gap: 0.6rem;
    }

    .audio-label-text {
        font-size: 0.7rem;
        width: 100%;
    }

    .audio-player {
        height: 32px;
        width: 100%;
        flex: 1 1 100%;
    }

    .card-content {
        align-items: flex-start;
    }
}

.challenges-content {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px var(--shadow);
    max-width: 850px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    background: rgba(37, 42, 48, 0.7);
    backdrop-filter: blur(5px);
}

.challenges-content:hover {
    box-shadow: 0 8px 30px rgba(21, 250, 207, 0.2);
    transform: translateY(-3px);
}

.challenges-content > p { font-size: 1rem; margin-bottom: 1.5rem; color: var(--text-color); text-align: center; font-weight: 600; line-height: 1.6; }

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

.challenges-list li {
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(30, 35, 40, 0.6);
    border-left: 3px solid var(--text-light);
    border-radius: 8px;
    box-shadow: 0 1px 5px var(--shadow);
    transition: all 0.3s ease;
    line-height: 1.7;
    font-size: 0.9rem;
}

.challenge-note { display: block; margin-top: 0.6rem; color: var(--text-lighter); font-size: 0.85rem; font-style: italic; padding-top: 0.5rem; border-top: 1px solid var(--border-color); line-height: 1.6; }

.challenges-list li:hover {
    background: rgba(30, 35, 40, 0.9);
    box-shadow: 0 6px 20px rgba(21, 250, 207, 0.25);
    border-left-color: var(--primary-color);
    border-left-width: 4px;
    transform: translateX(8px) scale(1.02);
}

.challenges-list strong { color: var(--text-color); display: block; margin-bottom: 0.4rem; font-size: 0.95rem; font-weight: 600; transition: all 0.3s ease; }

.challenges-list li:hover strong { color: var(--primary-color); }

.contact-form {
    max-width: 550px;
    margin: 0 auto;
    background: rgba(30, 35, 40, 0.8);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.contact-form:hover {
    box-shadow: 0 8px 35px rgba(21, 250, 207, 0.25);
    transform: translateY(-3px);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
    background: rgba(37, 42, 48, 0.6);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-color);
    background: rgba(30, 35, 40, 0.8);
    box-shadow: 0 0 0 3px rgba(21, 250, 207, 0.15);
    transform: translateY(-2px);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 250, 207, 0.3);
}

.footer {
    background: rgba(37, 42, 48, 0.6);
    color: var(--text-color);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.social-media {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    color: var(--text-light);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.social-icon:hover {
    background-color: rgba(30, 35, 40, 0.8);
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 12px var(--shadow);
}

.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); }

a:focus, button:focus { outline: 2px solid var(--primary-color); outline-offset: 2px; border-radius: 4px; }

.form-group input.error, .form-group textarea.error { border-color: #ef4444; background-color: #fef2f2; }

.error-message { color: #ef4444; font-size: 0.875rem; margin-top: 0.5rem; }

@media (max-width: 1200px) {
    .nav-link {
        font-size: 0.8rem;
        padding: 0.45rem 0.7rem;
    }
    
    .nav-list {
        gap: 0.15rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 1024px) {
    .nav-list {
        flex-wrap: wrap;
    }
    
    .header .container {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }

    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .logo-wrapper {
        gap: 0.6rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .nav-list {
        flex-direction: row;
        gap: 0.2rem;
        text-align: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }

    .top-banner {
        padding: 2.5rem 0;
    }

    .banner-title {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .banner-subtitle {
        font-size: 0.85rem;
        padding: 0 1rem;
    }

    .team-signature {
        font-size: 0.95rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .team-name-bold {
        font-size: 1.05rem;
    }

    .subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .section-intro {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .content-wrapper, .card-content {
        flex-direction: column;
        gap: 1.2rem;
    }

    .intro-image, .card-image {
        margin-top: 1rem;
        align-self: stretch;
    }

    .intro-text {
        font-size: 0.9rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .info-card, .app-card, .list-box, .challenges-content, .contact-form {
        padding: 1.5rem;
    }

    .footer {
        padding: 1.5rem 0;
    }

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

    table {
        font-size: 0.85rem;
    }

    th, td {
        padding: 0.6rem 0.4rem;
    }
}

.thank-you-card {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(30, 35, 40, 0.8);
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(21, 250, 207, 0.15);
    border: 1px solid #3a4047;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.thank-you-card:hover {
    box-shadow: 0 8px 35px rgba(21, 250, 207, 0.25);
    transform: translateY(-3px);
}

.success-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: #15facf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(21, 250, 207, 0.3);
    animation: fadeIn 0.5s ease;
}

.message-content {
    margin-bottom: 1.5rem;
}

.thank-you-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.85rem;
    text-align: center;
}

.thank-you-text:last-of-type {
    margin-bottom: 0;
}

.action-buttons {
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.thank-you-btn-primary,
.thank-you-btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 140px;
}

.thank-you-btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

.thank-you-btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(21, 250, 207, 0.4);
}

.thank-you-btn-secondary {
    background: rgba(37, 42, 48, 0.6);
    color: var(--text-color);
    border: 2px solid var(--primary-color);
}

.thank-you-btn-secondary:hover {
    background: rgba(30, 35, 40, 0.8);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(21, 250, 207, 0.3);
}

@media (max-width: 768px) {
    .thank-you-card {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .thank-you-text {
        font-size: 0.95rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .thank-you-btn-primary,
    .thank-you-btn-secondary {
        width: 100%;
        min-width: 100%;
    }
}

.team-container {
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: rgba(30, 35, 40, 0.8);
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(21, 250, 207, 0.15);
    border: 1px solid #3a4047;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.team-card .section-title {
    margin-bottom: 1.2rem;
}

.team-card:hover {
    box-shadow: 0 8px 35px rgba(21, 250, 207, 0.25);
    transform: translateY(-3px);
}

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

.member-card {
    background: rgba(37, 42, 48, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #3a4047;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 88px;
    text-decoration: none;
    display: block;
    color: inherit;
}

.member-card:nth-child(-n+3) {
    margin-top: 60px;
}

.member-card:hover {
    text-decoration: none;
	border-color: #15facf;
    box-shadow: 0 6px 25px rgba(21, 250, 207, 0.2);
    transform: translateY(-5px);
}

.name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    position: relative;
}

.member-card:hover .name {
    color: #15facf;
}

.profile-pic {
    position: absolute;
    top: -90px;
    left: 50%;
    transform: translateX(-50%) scale(0.8) translateY(10px);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #15facf;
    box-shadow: 0 4px 15px rgba(21, 250, 207, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.member-card:hover .profile-pic {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1) translateY(0);
}

.skills {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.3rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    z-index: 5;
    max-width: 100%;
    overflow: hidden;
}




.skill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.55rem;
    background: rgba(21, 250, 207, 0.15);
    border: 1px solid rgba(21, 250, 207, 0.4);
    border-radius: 14px;
    color: #15facf;
    font-size: 0.65rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    flex-shrink: 0;
    position: relative;
}

.skill-tag i {
    font-size: 0.75rem;
}

.skill-tag:hover {
    background: rgba(21, 250, 207, 0.2);
    border-color: rgba(21, 250, 207, 0.5);
    transform: scale(1.05);
}

.member-card:hover .skills {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
}


@media (max-width: 768px) {
    .team-card {
        padding: 1.5rem;
    }

    .members-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .skills {
        top: -48px;
        gap: 0.3rem;
    }

    .skill-tag {
        padding: 0.25rem 0.6rem;
        font-size: 0.65rem;
    }

    .skill-tag i {
        font-size: 0.75rem;
    }
}
