/* Modern Portfolio Styles */
    :root {
        --primary-color: #667eea;
        --secondary-color: #764ba2;
        --accent-color: #ff6b6b;
        --dark-color: #2c3e50;
        --light-color: #f8f9fa;
        --text-color: #333;
        --text-light: #666;
        --white: #ffffff;
        --shadow: 0 10px 30px rgba(0,0,0,0.1);
        --transition: all 0.3s ease;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        overflow-x: hidden;
        background-color: var(--white);
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Header */
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transition: var(--transition);
    }

    header.scrolled {
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--dark-color);
    }

    .logo span {
        color: var(--primary-color);
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 30px;
    }

    .nav-links a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        transition: var(--transition);
        position: relative;
    }

    .nav-links a:hover {
        color: var(--primary-color);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: var(--transition);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .menu-toggle {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Modern Hero Section */
    .modern-hero {
        position: relative;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: var(--white);
        padding: 150px 0 100px;
        overflow: hidden;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .hero-shapes .shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }

    .shape-1 { width: 200px; height: 200px; top: -50px; right: -50px; }
    .shape-2 { width: 150px; height: 150px; bottom: 100px; left: -50px; }
    .shape-3 { width: 100px; height: 100px; top: 50%; right: 20%; }

    .hero-content-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .hero-badge {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 8px 16px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 20px;
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .gradient-text {
        background: linear-gradient(45deg, #ffd89b, #ffffff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-description {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 30px;
        opacity: 0.9;
    }

    .hero-stats {
        display: flex;
        gap: 30px;
        margin-bottom: 40px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.9rem;
        opacity: 0.8;
    }

    .hero-actions {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn {
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-family: 'Poppins', sans-serif;
    }

    .btn-primary {
        background: var(--accent-color);
        color: var(--white);
    }

    .btn-primary:hover {
        background: #ff5252;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

    .btn-large {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    /* Hero Visual - Circle Animation */
    .hero-visual {
        position: relative;
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circle-animation {
        position: relative;
        width: 400px;
        height: 400px;
    }

    .circle-path {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        animation: rotateCircle 20s linear infinite;
    }

    @keyframes rotateCircle {
        from { transform: translate(-50%, -50%) rotate(0deg); }
        to { transform: translate(-50%, -50%) rotate(360deg); }
    }

    .central-circle {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, var(--accent-color), #ff5252);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
        animation: pulse 2s ease-in-out infinite;
    }

    .central-circle::before {
        content: '';
        position: absolute;
        width: 140px;
        height: 140px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        animation: ripple 3s linear infinite;
    }

    .central-circle::after {
        content: '';
        position: absolute;
        width: 160px;
        height: 160px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        animation: ripple 3s linear infinite 1.5s;
    }

    @keyframes pulse {
        0%, 100% { transform: translate(-50%, -50%) scale(1); }
        50% { transform: translate(-50%, -50%) scale(1.05); }
    }

    @keyframes ripple {
        0% { transform: scale(1); opacity: 1; }
        100% { transform: scale(1.3); opacity: 0; }
    }

    .circle-content {
        text-align: center;
        color: var(--white);
        z-index: 2;
        position: relative;
    }

    .circle-content i {
        font-size: 2rem;
        margin-bottom: 5px;
        display: block;
    }

    .circle-content span {
        font-size: 0.8rem;
        font-weight: 600;
        display: block;
    }

    /* Floating Cards on Circle Path */
    .floating-card {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-origin: center;
        animation: orbit 15s linear infinite;
        animation-delay: calc(var(--card-angle) / 360 * -15s);
    }

    .floating-card:nth-child(odd) {
        animation-duration: 18s;
        animation-direction: reverse;
    }

    @keyframes orbit {
        from { transform: translate(-50%, -50%) rotate(var(--card-angle)) translateX(150px) rotate(calc(-1 * var(--card-angle))); }
        to { transform: translate(-50%, -50%) rotate(calc(var(--card-angle) + 360deg)) translateX(150px) rotate(calc(-1 * var(--card-angle) - 360deg)); }
    }

    .card-inner {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 12px 16px;
        border-radius: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: var(--white);
        white-space: nowrap;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .card-inner:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .card-inner i {
        font-size: 1.1rem;
    }

    .card-trail {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 150px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transform-origin: left center;
        transform: rotate(var(--card-angle)) translateX(0px);
        z-index: -1;
        opacity: 0.5;
    }

    /* Enhanced animations for cards */
    .floating-card {
        animation: orbit 15s linear infinite, float 3s ease-in-out infinite;
    }

    .floating-card:nth-child(4) { animation-delay: calc(60deg / 360 * -15s), 0s; }
    .floating-card:nth-child(5) { animation-delay: calc(180deg / 360 * -15s), 1s; }
    .floating-card:nth-child(6) { animation-delay: calc(300deg / 360 * -15s), 2s; }

    @keyframes float {
        0%, 100% { transform: translate(-50%, -50%) rotate(var(--card-angle)) translateX(150px) rotate(calc(-1 * var(--card-angle))) translateY(0px); }
        50% { transform: translate(-50%, -50%) rotate(var(--card-angle)) translateX(150px) rotate(calc(-1 * var(--card-angle))) translateY(-10px); }
    }

    /* Quick Stats Bar */
    .stats-bar {
        background: var(--light-color);
        padding: 40px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

    .stat-box {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .stat-box:hover {
        transform: translateY(-5px);
    }

    .stat-box i {
        font-size: 2rem;
        color: var(--primary-color);
    }

    .stat-box h3 {
        margin: 0;
        font-size: 1.2rem;
    }

    .stat-box p {
        margin: 0;
        color: var(--text-light);
    }

    /* Section Styles */
    section {
        padding: 100px 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--dark-color);
    }

    .section-subtitle {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 20px;
    }

    .section-link {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    /* About Section */
    .about-section {
        background: var(--white);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .about-img {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
    }

    .about-img img {
        width: 100%;
        height: auto;
        display: block;
        transition: var(--transition);
    }

    .about-img:hover img {
        transform: scale(1.05);
    }

    .about-text h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
        color: var(--dark-color);
    }

    .about-text p {
        margin-bottom: 20px;
        color: var(--text-light);
    }

    .personal-info {
        margin: 30px 0;
        padding: 25px;
        background: var(--light-color);
        border-radius: 15px;
    }

    .personal-info h3 {
        margin-bottom: 20px;
        color: var(--dark-color);
        font-size: 1.3rem;
    }

    .info-item {
        display: flex;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .info-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

    .info-item strong {
        min-width: 120px;
        color: var(--dark-color);
    }

    .info-item span {
        color: var(--text-light);
    }

    /* Experience Section */
    .experience-section {
        background: var(--light-color);
    }

    .timeline {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
    }

    .timeline::before {
        content: '';
        position: absolute;
        left: 30px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--primary-color);
    }

    .timeline-item {
        position: relative;
        margin-bottom: 50px;
        padding-left: 80px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item::before {
        content: '';
        position: absolute;
        left: 22px;
        top: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--primary-color);
        border: 3px solid var(--white);
        box-shadow: 0 0 0 3px var(--primary-color);
    }

    .timeline-content {
        background: var(--white);
        padding: 30px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .timeline-content:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    .timeline-date {
        display: inline-block;
        background: var(--primary-color);
        color: var(--white);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
        color: var(--dark-color);
    }

    .timeline-content p {
        color: var(--text-light);
        margin: 0;
    }

    /* Skills Section */
    .skills-section {
        background: var(--white);
    }

    .skills-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .skill-category {
        background: var(--white);
        padding: 30px;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .skill-category:hover {
        transform: translateY(-5px);
    }

    .skill-category h3 {
        margin-bottom: 20px;
        color: var(--dark-color);
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .skill-category h3 i {
        color: var(--primary-color);
    }

    .skill-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .skill-tag {
        background: var(--light-color);
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        color: var(--text-color);
        transition: var(--transition);
    }

    .skill-tag:hover {
        background: var(--primary-color);
        color: var(--white);
    }

    /* Projects Section */
    .projects-section {
        background: var(--light-color);
    }

    .project-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }

    .project-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 1px solid #f0f0f0;
    }

    .project-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .project-img {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

    .project-card:hover .project-img img {
        transform: scale(1.1);
    }

    .project-image-fallback {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 3rem;
        font-weight: 700;
    }

    .featured-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        background: var(--accent-color);
        color: var(--white);
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .project-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: var(--transition);
    }

    .project-card:hover .project-overlay {
        opacity: 1;
    }

    .project-links {
        display: flex;
        gap: 10px;
    }

    .project-link {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transform: scale(0.8);
        transition: var(--transition);
    }

    .project-card:hover .project-link {
        transform: scale(1);
    }

    .project-content {
        padding: 25px;
    }

    .project-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin: 15px 0;
    }

    .project-tag {
        background: var(--light-color);
        padding: 5px 12px;
        border-radius: 15px;
        font-size: 0.8rem;
        color: var(--text-color);
    }

    .project-title {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .project-title a {
        color: var(--dark-color);
        text-decoration: none;
    }

    .project-title a:hover {
        color: var(--primary-color);
    }

    .project-description {
        color: var(--text-light);
        line-height: 1.6;
        margin-bottom: 0;
    }

    .btn-disabled {
        background: #ccc;
        color: #666;
        cursor: not-allowed;
    }

    .btn-disabled:hover {
        background: #ccc;
        transform: none;
        box-shadow: none;
    }

    .no-projects {
        text-align: center;
        padding: 60px 0;
        color: var(--text-light);
    }

    /* Contact Section */
    .contact-section {
        background: var(--white);
    }

    .contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .contact-item {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 20px;
        background: var(--white);
        border-radius: 15px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .contact-item:hover {
        transform: translateY(-5px);
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        background: var(--primary-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.5rem;
    }

    .contact-details h3 {
        margin-bottom: 5px;
        color: var(--dark-color);
    }

    .contact-details p {
        margin: 0;
        color: var(--text-light);
    }

    .contact-form {
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--dark-color);
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 15px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

    /* Footer */
    footer {
        background: var(--dark-color);
        color: var(--white);
        padding: 60px 0 30px;
    }

    .footer-content {
        text-align: center;
    }

    .footer-content h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .footer-content p {
        margin-bottom: 30px;
        opacity: 0.8;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        text-decoration: none;
        transition: var(--transition);
    }

    .social-links a:hover {
        background: var(--primary-color);
        transform: translateY(-5px);
    }

    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
        opacity: 0.7;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 999;
    }

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--secondary-color);
        transform: translateY(-5px);
    }

    /* Alert Styles */
    .alert {
        padding: 15px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .alert-danger {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .hero-content-wrapper,
        .about-content,
        .contact-content {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .hero-title {
            font-size: 2.8rem;
        }

        .hero-visual {
            height: 400px;
        }

        .circle-animation {
            width: 350px;
            height: 350px;
        }
    }

    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        .nav-links {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background: var(--white);
            flex-direction: column;
            align-items: center;
            padding: 20px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .nav-links.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .nav-links li {
            margin: 15px 0;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-stats {
            flex-direction: column;
            gap: 20px;
        }

        .hero-actions {
            justify-content: center;
        }

        .floating-card {
            display: none;
        }

        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .project-grid {
            grid-template-columns: 1fr;
        }

        .about-features {
            grid-template-columns: 1fr;
        }

        .section-title {
            font-size: 2rem;
        }

        .timeline::before {
            left: 20px;
        }

        .timeline-item {
            padding-left: 60px;
        }

        .timeline-item::before {
            left: 12px;
        }
    }

    @media (max-width: 576px) {
        .stats-grid {
            grid-template-columns: 1fr;
        }

        .hero-title {
            font-size: 2rem;
        }

        .hero-visual {
            height: 300px;
        }

        .circle-animation {
            width: 280px;
            height: 280px;
        }

        .central-circle {
            width: 80px;
            height: 80px;
        }

        .central-circle::before {
            width: 100px;
            height: 100px;
        }

        .central-circle::after {
            width: 120px;
            height: 120px;
        }

        .circle-content i {
            font-size: 1.5rem;
        }

        .circle-content span {
            font-size: 0.7rem;
        }

        .card-inner {
            padding: 8px 12px;
            font-size: 0.9rem;
        }

        .card-inner i {
            font-size: 1rem;
        }

        @keyframes orbit {
            from { transform: translate(-50%, -50%) rotate(var(--card-angle)) translateX(110px) rotate(calc(-1 * var(--card-angle))); }
            to { transform: translate(-50%, -50%) rotate(calc(var(--card-angle) + 360deg)) translateX(110px) rotate(calc(-1 * var(--card-angle) - 360deg)); }
        }

        .card-trail {
            width: 110px;
        }

        .info-item {
            flex-direction: column;
            gap: 5px;
        }

        .info-item strong {
            min-width: auto;
        }
    }

    /* Dark mode support */
    @media (prefers-color-scheme: dark) {
        .circle-path circle {
            stroke: rgba(255, 255, 255, 0.3);
        }
        
        .card-inner {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.25);
        }
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
        .circle-path,
        .floating-card,
        .central-circle,
        .central-circle::before,
        .central-circle::after {
            animation: none;
        }
        
        .floating-card {
            transform: translate(-50%, -50%) rotate(var(--card-angle)) translateX(150px) rotate(calc(-1 * var(--card-angle)));
        }
    }