body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(45deg, #ffffff 25%, transparent 25%),
                linear-gradient(-45deg, #ffffff 25%, transparent 25%),
                linear-gradient(45deg, transparent 75%, #ffffff 75%),
                linear-gradient(-45deg, transparent 75%, #ffffff 75%);
    background-size: 20px 20px;
    background-color: #f8f8f8;
    animation: waveMove 0.5s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(11, 80, 79, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(11, 80, 79, 0.05) 0%, transparent 50%);
    animation: meshMove 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes waveMove {
    0% {
        background-position: 0 0, 10px 0, 10px -10px, 0px 10px;
    }
    100% {
        background-position: 20px 20px, 30px 20px, 30px 10px, 20px 30px;
    }
}

@keyframes meshMove {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

body.fade-in {
    opacity: 1;
}

body.fade-out {
    opacity: 0;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
    padding: 0 20px;
    box-sizing: border-box;
    margin-top: 180px;
    margin-bottom: 60px;
    position: relative;
}

.greeting {
    margin-top: 40px;
    text-align: center;
    font-family: 'Montserrat', Arial, sans-serif;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dynamic-island {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(600px, calc(100% - 40px));
    max-width: 600px;
    background: linear-gradient(135deg, #0B504F, #0D6B6A);
    border-radius: 32px;
    box-shadow: 0 4px 24px rgba(11, 80, 79, 0.2);
    padding: 8px 12px;
    z-index: 1000;
    gap: 8px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.dynamic-island:hover {
    transform: translateX(-50%) scale(1.02);
    box-shadow: 0 8px 32px rgba(11, 80, 79, 0.3);
    background: linear-gradient(135deg, #0D6B6A, #0B504F);
}

.island-left, .island-right {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
    align-items: center;
}

.island-left a, .island-right a {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    height: 24px;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

.island-left a:hover, .island-right a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.island-center {
    flex: 1 1 0%;
    text-align: center;
    color: #fff;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: 'Montserrat', Arial, sans-serif;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 0 4px;
    min-width: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.island-center:hover {
    color: #E0E0E0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.circular-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 
        0 0 100px rgba(11, 80, 79, 0.7),
        0 0 50px rgba(11, 80, 79, 0.7),
        0 0 20px rgba(11, 80, 79, 0.8);
    transition: box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.circular-image:hover {
    box-shadow: 
        0 0 120px rgba(11, 80, 79, 0.9),
        0 0 60px rgba(11, 80, 79, 0.9),
        0 0 30px rgba(11, 80, 79, 1);
}

.hello {
    color: #0B504F;
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(11, 80, 79, 0.2);
}

.name {
    color: #111;
    font-size: 2rem;
    font-weight: 400;
    display: block;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.intro-text {
    color: #333;
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    font-family: 'Montserrat', Arial, sans-serif;
}

.fade-in-section {
    opacity: 0;
    transform: translateY(100px);
    visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.interests {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    background: linear-gradient(135deg, #0B504F, #0D6B6A);
    padding: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(11, 80, 79, 0.15);
}

.interest-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    font-family: 'Montserrat', Arial, sans-serif;
}

.interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

.interest-card h3 {
    color: #0B504F;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
}

.interest-card p {
    color: #555;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    font-family: 'Montserrat', Arial, sans-serif;
}

.view-more-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0B504F, #0D6B6A);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(11, 80, 79, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 80, 79, 0.3);
    background: linear-gradient(135deg, #0D6B6A, #0B504F);
}

.quote-container {
    margin-top: 40px;
    text-align: center;
    max-width: 600px;
    padding: 30px;
    background: linear-gradient(135deg, #0B504F, #0D6B6A);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(11, 80, 79, 0.15);
}

.quote {
    color: white;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.quote-author {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Montserrat', Arial, sans-serif;
    margin-top: 15px;
    font-style: normal;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .content {
        margin-top: 160px;
    }
    .dynamic-island {
        width: min(500px, calc(100% - 32px));
        max-width: 500px;
        padding: 6px 10px;
        gap: 6px;
    }
    .island-left, .island-right {
        gap: 6px;
    }
    .island-left a, .island-right a {
        font-size: 0.9rem;
        padding: 6px 14px;
        height: 34px;
    }
    .island-center {
        font-size: 1rem;
        padding: 0 6px;
    }
    .circular-image {
        width: 300px;
        height: 300px;
    }
    .interests {
        padding: 30px 15px;
        border-radius: 20px;
    }
    .interest-card {
        width: 220px;
        padding: 15px;
    }
    .interest-card h3 {
        font-size: 1.2rem;
    }
    .intro-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    .view-more-btn {
        padding: 10px 24px;
        font-size: 1rem;
    }
    .quote-container {
        margin-top: 30px;
        padding: 25px;
    }
    .quote {
        font-size: 1.2rem;
    }
    .hello {
        font-size: 2.2rem;
    }
    .name {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media screen and (max-width: 525px) {
    .content {
        margin-top: 140px;
    }
    .dynamic-island {
        width: calc(100% - 24px);
        padding: 5px 8px;
        gap: 4px;
        justify-content: space-between;
    }
    .island-left, .island-right {
        display: none !important;
    }
    .island-center {
        font-size: 0.9rem;
        padding: 0 4px;
        flex: 1 1 auto;
        min-width: 30px;
        max-width: none;
        text-align: center;
    }
    .circular-image {
        width: 250px;
        height: 250px;
    }
    .hello {
        font-size: 2rem;
    }
    .name {
        font-size: 1.5rem;
    }
    .interests {
        padding: 25px 12px;
        border-radius: 16px;
    }
    .interest-card {
        width: 100%;
        max-width: 280px;
    }
    .intro-text {
        font-size: 1rem;
        padding: 0 15px;
    }
    .view-more-btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }
    .quote-container {
        margin-top: 25px;
        padding: 20px;
    }
    .quote {
        font-size: 1.1rem;
    }
    .quote-author {
        font-size: 0.9rem;
    }

    /* Mobile Menu Styles */
    .dynamic-island .mobile-menu {
        display: flex !important;
        align-items: center;
        height: 34px;
        padding: 0;
        margin: 0;
        cursor: pointer;
        position: relative;
        z-index: 1001;
    }

    .dynamic-island .mobile-menu .hamburger {
        width: 24px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .dynamic-island .mobile-menu .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: white;
        transition: all 0.3s ease;
    }

    .dynamic-island .mobile-menu.active .hamburger span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .dynamic-island .mobile-menu.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .dynamic-island .mobile-menu.active .hamburger span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .dynamic-island .mobile-dropdown {
        display: block !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #0B504F, #0D6B6A);
        padding: 60px 20px 20px;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .dynamic-island .mobile-menu.active .mobile-dropdown {
        left: 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .dynamic-island .mobile-dropdown a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
        font-family: 'Montserrat', Arial, sans-serif;
        cursor: pointer;
        pointer-events: auto;
    }

    .dynamic-island .mobile-dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 10px;
    }

    .dynamic-island .mobile-dropdown .dropdown-content a {
        font-size: 1rem;
        padding: 12px 0;
        font-family: 'Montserrat', Arial, sans-serif;
        pointer-events: auto;
        border-bottom: none;
    }

    .dynamic-island .mobile-dropdown .dropdown-content a:last-child {
        margin-bottom: 0;
    }

    .dynamic-island .mobile-dropdown .dropdown-trigger {
        background: transparent;
        padding: 16px 0;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-family: 'Montserrat', Arial, sans-serif;
        cursor: pointer;
        pointer-events: auto;
    }

    .dynamic-island .mobile-dropdown .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .dynamic-island .mobile-dropdown .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .dynamic-island .mobile-dropdown .back-button {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        padding: 12px 0;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
        font-family: 'Montserrat', Arial, sans-serif;
        cursor: pointer;
    }

    .dynamic-island .mobile-dropdown .back-button i {
        font-size: 0.9rem;
        transition: transform 0.2s ease;
    }

    .dynamic-island .mobile-dropdown .back-button:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 10px;
    }

    .dynamic-island .mobile-dropdown .back-button:hover i {
        transform: translateX(-3px);
    }

    .dynamic-island .mobile-dropdown .websites-section {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dynamic-island .mobile-dropdown .websites-section h3 {
        color: white;
        font-size: 1.1rem;
        margin: 0 0 12px 0;
        font-family: 'Montserrat', Arial, sans-serif;
        font-weight: 500;
        opacity: 0.9;
    }

    .dynamic-island .mobile-dropdown .websites-section a {
        padding: 12px 0 12px 20px;
        font-size: 1rem;
        border-bottom: none;
    }

    .dynamic-island .mobile-dropdown .websites-section a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }
}

.footer {
    width: 100%;
    background: linear-gradient(135deg, #0B504F, #0D6B6A);
    padding: 40px 0;
    margin-top: 60px;
    box-shadow: 0 -4px 20px rgba(11, 80, 79, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 8px;
}

.footer-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 0.9rem;
    text-align: center;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 0;
    }
    .footer-links {
        gap: 20px;
    }
    .footer-links a {
        font-size: 0.95rem;
    }
}

/* Mobile */
@media screen and (max-width: 525px) {
    .footer {
        padding: 25px 0;
    }
    .footer-links {
        gap: 15px;
    }
    .footer-links a {
        font-size: 0.9rem;
        padding: 4px 8px;
    }
    .footer-text {
        font-size: 0.8rem;
    }
}

.skills-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.my-text {
    color: #000;
}

.skills-text {
    color: #0B504F;
}

.skills-description {
    color: #333;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .skills-title {
        font-size: 2.2rem;
    }
    .skills-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Mobile */
@media screen and (max-width: 525px) {
    .skills-title {
        font-size: 2rem;
    }
    .skills-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}

.skills-container {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.image-container {
    flex: 1;
    max-width: 400px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    background: #f0f0f0;
}

.skill-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.skill-image.active {
    opacity: 1;
}

.text-container {
    flex: 1;
    padding: 1rem;
}

.skill-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.skill-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.split-container {
    width: 100%;
    max-width: 800px;
    height: 400px;
    margin: 2rem auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.split-image {
    position: absolute;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: all 0.5s ease;
}

.split-image img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.split-image.left {
    left: 0;
}

.split-image.right {
    right: 0;
}

.split-image.left img {
    object-position: left;
}

.split-image.right img {
    object-position: right;
}

.split-container:hover .split-image.left {
    width: 60%;
}

.split-container:hover .split-image.right {
    width: 60%;
}

.split-container:hover .split-image.left img {
    transform: translateX(-20%);
}

.split-container:hover .split-image.right img {
    transform: translateX(20%);
}

.polaroid-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.polaroid {
    background: white;
    padding: 0.8rem 0.8rem 1.5rem 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
    max-width: 220px;
    flex: 1;
    min-width: 200px;
}

.polaroid:nth-child(2) {
    transform: rotate(2deg);
}

.polaroid:nth-child(3) {
    transform: rotate(-1deg);
}

.polaroid:nth-child(4) {
    transform: rotate(1deg);
}

.polaroid:hover {
    transform: rotate(0) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.polaroid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 0.8rem;
}

.polaroid-caption {
    font-family: 'Montserrat', Arial, sans-serif;
    text-align: center;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

.polaroid img.left-aligned {
    object-position: 30% center;
}

/* Tablet */
@media screen and (max-width: 900px) {
    .polaroid-container {
        gap: 1rem;
    }
    
    .polaroid {
        max-width: 180px;
        min-width: 160px;
    }
    
    .polaroid img {
        height: 180px;
    }
}

/* Mobile */
@media screen and (max-width: 600px) {
    .polaroid-container {
        flex-direction: column;
        align-items: center;
    }
    
    .polaroid {
        max-width: 200px;
        min-width: 200px;
        margin-bottom: 1rem;
    }
    
    .polaroid img {
        height: 200px;
    }
}

.section-title {
    text-align: center;
    margin: 3rem auto 2rem;
    max-width: 800px;
    padding: 0 1rem;
}

.section-heading {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.2rem;
    color: #0B504F;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(11, 80, 79, 0.2);
}

.section-description {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    margin: 0 auto;
}

.section-heading .black-text {
    color: #000;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    .section-description {
        font-size: 1rem;
    }
}

/* Mobile */
@media screen and (max-width: 525px) {
    .section-heading {
        font-size: 1.8rem;
    }
    .section-description {
        font-size: 0.95rem;
    }
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    margin: 2rem auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
    flex: 0 0 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.card-content {
    flex: 1;
    padding: 1rem;
}

.card-content h1 {
    margin-bottom: 1rem;
}

/* Tablet */
@media screen and (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .card-image {
        flex: 0 0 250px;
        height: 250px;
    }
}

/* Mobile */
@media screen and (max-width: 525px) {
    .profile-card {
        padding: 1rem;
    }
    
    .card-image {
        flex: 0 0 200px;
        height: 200px;
    }
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 12px;
    padding: 4px 8px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
    white-space: nowrap;
    backdrop-filter: blur(5px);
    height: 24px;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    cursor: pointer;
    font-family: 'Montserrat', Arial, sans-serif;
}

.dropdown-icon {
    margin-left: 4px;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: linear-gradient(135deg, #0B504F, #0D6B6A);
    min-width: 160px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(11, 80, 79, 0.2);
    padding: 8px 0;
    margin-top: 8px;
    z-index: 1001;
}

.dropdown-content a {
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.2s ease;
    font-family: 'Montserrat', Arial, sans-serif;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown.active .dropdown-content {
    display: block;
}

.dropdown.active .dropdown-trigger {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content:hover {
    display: block;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

@media screen and (max-width: 770px) {
    .dynamic-island {
        width: calc(100% - 32px);
        padding: 6px 10px;
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .island-left, .island-right {
        gap: 6px;
        flex: 0 1 auto;
        min-width: 0;
    }
    .island-left a, .island-right a {
        font-size: 0.9rem;
        padding: 6px 14px;
        height: 34px;
    }
    .island-center {
        font-size: 1rem;
        padding: 0 6px;
        flex: 1 1 auto;
        min-width: 50px;
        max-width: 200px;
    }
    .dropdown {
        height: 34px;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .dropdown-trigger {
        font-size: 0.9rem;
        padding: 6px 14px;
        height: 34px;
        align-items: center;
        padding: 6px 14px;
        margin: 0;
    }
    .dropdown-content {
        top: 40px;
    }
}

@media screen and (max-width: 525px) {
    .dynamic-island {
        width: calc(100% - 24px);
        padding: 5px 8px;
        gap: 4px;
        justify-content: space-between;
    }
    .island-left, .island-right {
        gap: 4px;
        flex: 0 1 auto;
        min-width: 0;
    }
    .island-left a, .island-right a {
        font-size: 0.9rem;
        padding: 5px 12px;
        height: 30px;
    }
    .island-center {
        font-size: 0.9rem;
        padding: 0 4px;
        flex: 1 1 auto;
        min-width: 40px;
        max-width: 150px;
    }
    .dropdown {
        height: 30px;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .dropdown-trigger {
        font-size: 0.9rem;
        padding: 5px 12px;
        height: 30px;
        align-items: center;
        padding: 5px 12px;
        margin: 0;
    }
    .dropdown-icon {
        font-size: 0.8em;
    }
    .dropdown-content {
        top: 36px;
    }
    .dropdown-content a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 400px) {
    .dynamic-island {
        width: calc(100% - 16px);
        padding: 4px 6px;
        gap: 3px;
        justify-content: space-between;
    }
    .island-left, .island-right {
        gap: 3px;
        flex: 0 1 auto;
        min-width: 0;
    }
    .island-left a, .island-right a {
        font-size: 0.8rem;
        padding: 4px 10px;
        height: 28px;
    }
    .dropdown {
        height: 28px;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .dropdown-trigger {
        font-size: 0.8rem;
        padding: 4px 10px;
        height: 28px;
        align-items: center;
        padding: 4px 10px;
        margin: 0;
    }
    .dropdown-icon {
        font-size: 0.7em;
    }
    .island-center {
        font-size: 0.8rem;
        padding: 0 3px;
        flex: 1 1 auto;
        min-width: 30px;
        max-width: 100px;
    }
    .dropdown-content {
        top: 34px;
    }
    .dropdown-content a {
        padding: 7px 9px;
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 300px) {
    .dynamic-island {
        width: calc(100% - 12px);
        padding: 3px 5px;
        gap: 2px;
        justify-content: space-between;
    }
    .island-left, .island-right {
        gap: 2px;
        flex: 0 1 auto;
        min-width: 0;
    }
    .island-left a, .island-right a {
        font-size: 0.75rem;
        padding: 3px 8px;
        height: 26px;
    }
    .dropdown {
        height: 26px;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .dropdown-trigger {
        font-size: 0.75rem;
        padding: 3px 8px;
        height: 26px;
        align-items: center;
        padding: 3px 8px;
        margin: 0;
    }
    .dropdown-icon {
        font-size: 0.6em;
    }
    .island-center {
        font-size: 0.7rem;
        padding: 0 2px;
        flex: 1 1 auto;
        min-width: 20px;
        max-width: 80px;
    }
    .dropdown-content {
        top: 32px;
    }
    .dropdown-content a {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 250px) {
    .dynamic-island {
        width: calc(100% - 8px);
        padding: 2px 4px;
        gap: 1px;
        justify-content: space-between;
    }
    .island-left, .island-right {
        gap: 1px;
        flex: 0 1 auto;
        min-width: 0;
    }
    .island-left a, .island-right a {
        font-size: 0.7rem;
        padding: 2px 6px;
        height: 24px;
    }
    .dropdown {
        height: 24px;
        align-items: center;
        padding: 0;
        margin: 0;
    }
    .dropdown-trigger {
        font-size: 0.7rem;
        padding: 2px 6px;
        height: 24px;
        align-items: center;
        padding: 2px 6px;
        margin: 0;
    }
    .dropdown-icon {
        font-size: 0.5em;
    }
    .island-center {
        font-size: 0.65rem;
        padding: 0 1px;
        flex: 1 1 auto;
        min-width: 10px;
        max-width: 60px;
    }
    .dropdown-content {
        top: 30px;
    }
    .dropdown-content a {
        padding: 5px 7px;
        font-size: 0.7rem;
    }
}

/* Connect Page Styles */
.connect-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.social-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #333;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0B504F, #0D6B6A);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(11, 80, 79, 0.2);
    color: white;
}

.social-card:hover::before {
    opacity: 1;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 80, 79, 0.1);
    border-radius: 12px;
    margin-right: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.social-card:hover .social-icon {
    background: rgba(255, 255, 255, 0.2);
}

.social-icon i,
.social-icon svg {
    font-size: 24px;
    color: #0B504F;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.bluesky-icon {
    width: 24px;
    height: 24px;
}

.social-card:hover .social-icon i,
.social-card:hover .social-icon svg {
    color: white;
}

.social-info {
    text-align: left;
    position: relative;
    z-index: 1;
}

.social-info h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-info p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width: 768px) {
    .connect-container {
        padding: 30px 15px;
    }
    
    .social-card {
        padding: 15px;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
    }
    
    .social-icon i {
        font-size: 20px;
    }
    
    .social-info h3 {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 525px) {
    .connect-container {
        padding: 20px 10px;
    }
    
    .social-card {
        padding: 12px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        margin-right: 15px;
    }
    
    .social-icon i {
        font-size: 18px;
    }
    
    .social-info h3 {
        font-size: 1rem;
    }
    
    .social-info p {
        font-size: 0.85rem;
    }
}

.mobile-dropdown {
    display: none;
}

@media screen and (max-width: 450px) {
    .mobile-dropdown {
        display: block !important;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #0B504F, #0D6B6A);
        padding: 60px 20px 20px;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.2);
        visibility: hidden;
        opacity: 0;
    }

    .mobile-dropdown a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 16px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
        font-family: 'Montserrat', Arial, sans-serif;
    }

    .mobile-dropdown a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 10px;
    }

    .mobile-dropdown .dropdown-content a {
        font-size: 1rem;
        padding: 12px 0;
        font-family: 'Montserrat', Arial, sans-serif;
    }

    .mobile-menu.active .mobile-dropdown {
        left: 0;
        visibility: visible;
        opacity: 1;
    }

    .mobile-dropdown .dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        box-shadow: none;
        background: transparent;
        padding: 0 0 0 20px;
        margin-top: 0;
        margin-bottom: 16px;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .dynamic-island .mobile-dropdown .dropdown.active .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .dynamic-island .mobile-dropdown .dropdown-content a {
        font-size: 1rem;
        padding: 12px 0;
        font-family: 'Montserrat', Arial, sans-serif;
        pointer-events: auto;
        border-bottom: none;
    }

    .dynamic-island .mobile-dropdown .dropdown-content a:last-child {
        margin-bottom: 0;
    }

    .mobile-dropdown .dropdown-trigger {
        background: transparent;
        padding: 16px 0;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-family: 'Montserrat', Arial, sans-serif;
    }

    .mobile-dropdown .dropdown-trigger:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-dropdown .dropdown-icon {
        transition: transform 0.3s ease;
    }

    .mobile-dropdown .dropdown.active .dropdown-icon {
        transform: rotate(180deg);
    }

    .mobile-dropdown .back-button {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        padding: 12px 0;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
        font-family: 'Montserrat', Arial, sans-serif;
        cursor: pointer;
    }

    .mobile-dropdown .back-button i {
        font-size: 0.9rem;
        transition: transform 0.2s ease;
    }

    .mobile-dropdown .back-button:hover {
        color: white;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 10px;
    }

    .mobile-dropdown .back-button:hover i {
        transform: translateX(-3px);
    }

    .dynamic-island .mobile-dropdown .websites-section {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dynamic-island .mobile-dropdown .websites-section h3 {
        color: white;
        font-size: 1.1rem;
        margin: 0 0 12px 0;
        font-family: 'Montserrat', Arial, sans-serif;
        font-weight: 500;
        opacity: 0.9;
    }

    .dynamic-island .mobile-dropdown .websites-section a {
        padding: 12px 0 12px 20px;
        font-size: 1rem;
        border-bottom: none;
    }

    .dynamic-island .mobile-dropdown .websites-section a:hover {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 30px;
    }
}

