        :root {
            --primary: #0071e3;
            --primary-hover: #0062c4;
            --text-primary: #1d1d1f;
            --text-secondary: #555;
            --bg-primary: #ffffff;
            --bg-secondary: #f5f5f7;
            --bg-tertiary: #e6e6ea;
            --shadow-color: rgba(0, 0, 0, 0.08);
            --card-bg: #ffffff;
            --quote-bg: #f8f8fa;
            --border-radius: 2rem;
            --transition-all: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            --header-height: 70px;
            --skeleton-color: rgba(0, 0, 0, 0.05);
            --skeleton-animation: skeleton-loading 1.5s ease-in-out infinite;
    --overlay-icon: #ff6b6b;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --primary: #0a84ff;
                --primary-hover: #399cff;
                --text-primary: #f5f5f7;
                --text-secondary: #a1a1a6;
                --bg-primary: #1c1c1e;
                --bg-secondary: #2c2c2e;
                --bg-tertiary: #3a3a3c;
                --shadow-color: rgba(0, 0, 0, 0.3);
                --card-bg: #2c2c2e;
                --quote-bg: #3a3a3c;
                --skeleton-color: rgba(255, 255, 255, 0.05);
            }
        }

        /* Disable text selection */
        body *:not(input):not(textarea) {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }

        /* Allow text selection in content areas */
        .about-content,
        .quote,
        .tagline {
            user-select: text;
            -webkit-user-select: text;
            -moz-user-select: text;
            -ms-user-select: text;
        }

        /* Disable image dragging */
        img {
            -webkit-user-drag: none;
            -khtml-user-drag: none;
            -moz-user-drag: none;
            -o-user-drag: none;
            user-drag: none;
        }


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

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            transition: var(--transition-all);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            padding-top: var(--header-height);
            touch-action: pan-y;
        }

        @keyframes skeleton-loading {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        .skeleton {
            background: linear-gradient(90deg, var(--skeleton-color) 25%, rgba(0, 0, 0, 0.1) 50%, var(--skeleton-color) 75%);
            background-size: 400% 100%;
            animation: var(--skeleton-animation);
            border-radius: 4px;
            color: transparent;
            position: relative;
            overflow: hidden;
        }

        .skeleton::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--skeleton-color);
            z-index: -1;
        }

        .loader {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 4px solid rgba(0, 113, 227, 0.2);
            border-radius: 50%;
            border-top-color: var(--primary);
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading-container {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--bg-primary);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loading-container.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loading-logo {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            opacity: 0;
            transform: scale(0.8);
            animation: fadeInScale 0.8s 0.2s forwards;
        }

        @keyframes fadeInScale {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .loading-text {
            margin-top: 20px;
            color: var(--text-secondary);
            font-size: 1rem;
            opacity: 0;
            animation: fadeIn 0.6s 0.4s forwards;
        }

        .header-container {
            box-shadow: 0 2px 30px var(--shadow-color);
            padding: 1rem 3rem;
            position: fixed;
            top: 0.50;
            left: 0;
            right: 0;
            margin: 20px;
            margin-top: -30px;
            border-radius: 50px;
            z-index: 100;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            transition: var(--transition-all);
            height: var(--header-height);
            display: flex;
            align-items: center;
            justify-content: space-between;
    /* Subtle 3D edges - preserved exactly */
    box-shadow:
        inset 0.5px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1.5px 0 rgba(0, 0, 0, 0.05),
        0 1px 1.5px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);

        }

        .header-content {
            display: flex;
            align-items: center;
            width: 100%;
            justify-content: space-between;
        }

        .profile-avatar {
            width: 40px;
            height: 40px;
            margin-right: 5px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--primary);
            transition: var(--transition-all);
            cursor: pointer;

        }

        .profile-avatar:hover {
            transform: scale(1.1);
            box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
        }

        .back-button {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            width: fit-content;
            padding: 0.5rem 1rem;
            border-radius: 100px;
            background: transparent;
            border: 1px solid transparent;
    /* Subtle 3D edges - preserved exactly */
    box-shadow:
        inset 0.5px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1.5px 0 rgba(0, 0, 0, 0.05),
        0 1px 1.5px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);
        }

        .back-button:hover {
            color: var(--primary-hover);
            transform: translateX(-4px);
            background: rgba(0, 113, 227, 0.1);
            border-color: rgba(0, 113, 227, 0.2);
        }

        .back-button svg {
            width: 18px;
            height: 18px;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .back-button:hover svg {
            transform: translateX(-3px);
        }

        main {
            padding: 2rem;
            flex: 1;
            opacity: 0;
            animation: fadeIn 0.8s 0.6s forwards;
        }

        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        .hero {
            text-align: center;
            margin: 3rem 0 4rem;
            position: relative;
            overflow: hidden;
            padding: 2rem 0;
        }

        .hero-tag {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            display: inline-block;
            position: relative;
            opacity: 0;
            transform: translateY(10px);
            animation: slideUpFadeIn 0.6s 0.8s forwards;
        }

        @keyframes slideUpFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-tag::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        h1 {
            font-size: clamp(2rem, 6vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--primary);
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFadeIn 0.6s 1s forwards;
        }

        .tagline {
            font-size: clamp(1rem, 3vw, 1.5rem);
            font-weight: 400;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUpFadeIn 0.6s 1.2s forwards;
        }

        .tagline::before,
        .tagline::after {
            content: '"';
            color: var(--primary);
            opacity: 0.3;
            font-size: 1.5em;
            vertical-align: middle;
            line-height: 0;
        }

        .tagline::before {
            margin-right: 0.5rem;
        }

        .tagline::after {
            margin-left: 0.5rem;
        }

        .about-container {
            max-width: 800px;
            margin: 2rem auto;
            background: var(--card-bg);
            border-radius: 45px;
            box-shadow: 0 20px 60px var(--shadow-color);
            padding: 2.5rem;
            transition: var(--transition-all);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 113, 227, 0.1);
            opacity: 0;
            transform: translateY(30px);
            animation: slideUpFadeIn 0.6s 1.4s forwards;
    /* Subtle 3D edges - preserved exactly */
    box-shadow:
        inset 0.5px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1.5px 0 rgba(0, 0, 0, 0.05),
        0 1px 1.5px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);
        }

        .blur-cover {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.7);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
            border-radius: inherit;
            transition: all 0.5s ease;
        }

        @media (prefers-color-scheme: dark) {
            .blur-cover {
                background: rgba(0, 0, 0, 0.7);
            }
        }

        .blur-cover.hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .blur-cover-content {
            max-width: 500px;
        }

        .access-denied-icon {
            font-size: 3rem;
            color: #ff3b30;
            margin-bottom: 1rem;
        }

        .access-denied-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-primary);
        }

        .access-denied-text {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
        }

        .verify-button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 100px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition-all);
        }

        .verify-button:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
        }

        .section-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
            position: relative;
            display: inline-block;
            color: var(--primary);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: width 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .about-container:hover .section-title::after {
            width: 100px;
        }

        .about-content {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--text-primary);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;

        }

        .read-more-btn {
            background: none;
            border: none;
            color: var(--primary);
            font-weight: 500;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 0.75rem 1.5rem;
            margin-top: 0.5rem;
            border-radius: 100px;
            transition: var(--transition-all);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .read-more-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 113, 227, 0.1);
            border-radius: 100px;
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .read-more-btn:hover {
            color: var(--primary-hover);
        }

        .read-more-btn:hover::before {
            transform: scaleX(1);
        }

        .read-more-btn svg {
            width: 16px;
            height: 16px;
            transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .read-more-btn.active svg {
            transform: rotate(180deg);
        }

        .hidden-content {
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .hidden-content.active {
            max-height: 1000px;
        }

        .quotes-section {
            max-width: 800px;
            margin: 4rem auto;
            background: var(--card-bg);
            border-radius: 45px;
            box-shadow: 0 20px 60px var(--shadow-color);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 113, 227, 0.1);
            opacity: 0;
            transform: translateY(30px);
            animation: slideUpFadeIn 0.6s 1.6s forwards;
    /* Subtle 3D edges - preserved exactly */
    box-shadow:
        inset 0.5px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1.5px 0 rgba(0, 0, 0, 0.05),
        0 1px 1.5px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);

        }

        .quotes-container {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
        }

        .quote {
            font-style: italic;
            color: var(--text-primary);
            padding: 2rem;
            border-radius: calc(40px - 0.5rem);
            background: var(--quote-bg);
            position: relative;
            overflow: hidden;
            transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
            z-index: 1;
            opacity: 0;
            touch-action: pan-y;
            user-select: none;
    /* Subtle 3D edges - preserved exactly */
    box-shadow:
        inset 0.5px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1.5px 0 rgba(0, 0, 0, 0.05),
        0 1px 1.5px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.06);

        }

        .quote:nth-child(1) {
            animation: slideUpFadeIn 0.6s 1.8s forwards;
        }

        .quote:nth-child(2) {
            animation: slideUpFadeIn 0.6s 2.0s forwards;
        }

        .quote:nth-child(3) {
            animation: slideUpFadeIn 0.6s 2.2s forwards;
        }

        .quote:nth-child(4) {
            animation: slideUpFadeIn 0.6s 2.4s forwards;
        }

        .quote:nth-child(5) {
            animation: slideUpFadeIn 0.6s 2.6s forwards;
        }

        .quote:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px var(--shadow-color);
        }

        .quote::before {
            content: '"';
            font-size: 6rem;
            position: absolute;
            left: 1rem;
            top: 0;
            color: rgba(0, 113, 227, 0.05);
            line-height: 1;
            z-index: -1;
            font-family: serif;
        }

        .quote-author {
            display: block;
            text-align: right;
            font-weight: 600;
            color: var(--primary);
            margin-top: 1rem;
            font-style: normal;
        }

        footer {
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
            color: var(--text-secondary);
            background: var(--card-bg);
            margin-top: 3rem;
            border-top: 1px solid rgba(0, 113, 227, 0.1);
            transition: var(--transition-all);
            opacity: 0;
            animation: fadeIn 0.6s 2.8s forwards;
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
        }

        /* Focus styles for accessibility */
        button:focus,
        a:focus {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            main {
                padding: 1rem;
            }

            .about-container,
            .quotes-section {
                padding: 1.5rem;
                border-radius: 30px;
            }

            .quote {
                padding: 1.5rem;
                border-radius: 25px;
            }

            .header-container {
                padding: 1rem;
                margin: 10px;
                margin-top: -20px;
            }

            .blur-cover {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0.75rem;
                margin: 5px;
                margin-top: -15px;
            }

            .hero {
                margin: 2rem 0 3rem;
            }

            .back-button {
                padding: 0.5rem;
            }

            .about-container,
            .quotes-section {
                border-radius: 20px;
            }

            .access-denied-title {
                font-size: 1.2rem;
            }

            .access-denied-text {
                font-size: 0.9rem;
            }
        }

        ::selection {
            background: rgba(0, 113, 227, 0.3);
            color: var(--text-primary);
        }
/* About Cover Styles */
.about-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    z-index: 10;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    box-shadow:
        inset 0.5px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1.5px 0 rgba(0, 0, 0, 0.05),
        0 1px 1.5px var(--shadow-color),
        0 2px 4px var(--shadow-color);
    transition: var(--transition-all);
}

.about-cover i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--overlay-icon);
}

.about-cover h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.about-cover p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    opacity: 0.9;
    color: var(--text-secondary);
}

.about-cover .countdown {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--text-primary);
}

.about-container {
    position: relative;
    overflow: hidden;
}

/* Disable text selection for about content */
.about-content,
.section-title {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
        
        /* Profile actions styles remain the same */
        .profile-actions {
            display: flex;
            justify-content: space-around;
            margin-top: 1.75rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(120, 120, 120, 0.2);
            position: relative;
        }

        .action-link {
            text-decoration: none;
            font-weight: 600;
            color: var(--accent-color);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        }

        .action-link span {
            position: relative;
            z-index: 2;
        }

        .action-link i {
            position: relative;
            z-index: 2;
            transition: transform 0.3s ease;
        }

        .license-link {
            color: #3a86ff;
        }

        .license-link:hover {
            color: white;
            transform: translateY(-2px);
        }

        .license-link:hover i {
            transform: scale(1.1);
        }

        .license-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #3a86ff, #4cc9f0);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            border-radius: 50px;
        }

        .license-link:hover::before {
            opacity: 1;
        }

        .license-link::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, #3a86ff, #4cc9f0, #3a86ff);
            background-size: 200% 200%;
            z-index: 0;
            opacity: 0;
            border-radius: 60px;
            animation: glow-pulse 3s linear infinite;
            filter: blur(8px);
            transition: opacity 0.4s ease;
        }

        .license-link:hover::after {
            opacity: 0.7;
        }

        .donate-link {
            color: #ff6b6b;
        }

        .donate-link:hover {
            color: white;
            transform: translateY(-2px);
        }

        .donate-link:hover i {
            transform: scale(1.1) rotate(-5deg);
        }

        .donate-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #ff6b6b, #ffb56b);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            border-radius: 50px;
        }

        .donate-link:hover::before {
            opacity: 1;
        }

        .donate-link::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, #ff6b6b, #ffb56b, #ff6b6b);
            background-size: 200% 200%;
            z-index: 0;
            opacity: 0;
            border-radius: 60px;
            animation: glow-pulse 3s linear infinite;
            filter: blur(8px);
            transition: opacity 0.4s ease;
        }

        .donate-link:hover::after {
            opacity: 0.7;
        }

        @keyframes glow-pulse {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }
        
        .quote-notice {
          padding: 1rem 2rem; 
          font-size: 0.95rem;
          line-height: 1.6;
          border-radius: 8px;
          background-color: #f0f4f8; 
        }

        .quote-notice a {
          text-decoration: underline;
        }

        @media (prefers-color-scheme: light) {
          .quote-notice {
            color: #1a1a1a;
            background-color: #f0f4f8;
          }
          .quote-notice a {
            color: #0645ad;
          }
        }

        @media (prefers-color-scheme: dark) {
          .quote-notice {
            color: #e0e0e0;
            background-color: #1f1f1f;
          }
          .quote-notice a {
            color: #7fbfff;
          }
        }