:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1e3a8a;
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f172a;
    color: white;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 2rem;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    width: 100%;
    max-width: 1400px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    min-height: 1.2em;
    position: relative;
}

.hero-main-title.typing::after {
    content: '|';
    animation: blink 1s infinite;
    color: white;
    font-weight: 700;
    margin-left: 2px;
}

.hero-main-title.complete::after {
    content: '';
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    height: calc(100vh - 250px);
    margin-top: 2rem;
    margin: 0 auto;
}

.hero-grid-item {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.hero-grid-item-video video,
.hero-grid-item-youtube iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
}

.hero-grid-item-youtube iframe {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
}

.hero-grid-item:hover {
    transform: scale(1.02);
    z-index: 10;
}

.hero-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 58, 138, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 2;
}

.hero-grid-item:hover .hero-hover-overlay {
    opacity: 1;
}

.hero-hover-text {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}


.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-image: url('images/binary.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: white;
    position: relative;
    display: inline-block;
    width: 100%;
}


.about-content {
    max-width: 1200px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
}

.about-image-container {
    flex-shrink: 0;
}

.about-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.about-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.interests {
    flex: 1;
    position: relative;
}

.interests h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #60a5fa;
    font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    text-align: center;
}

.interests-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.interests-list li {
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #e0e7ff;
    border: 2px solid rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    font-size: 0.9375rem;
    position: relative;
    white-space: nowrap;
    cursor: pointer;
}

.interests-list li:hover {
    transform: scale(1.1);
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 
        0 0 20px rgba(59, 130, 246, 0.6),
        inset 0 0 15px rgba(59, 130, 246, 0.2);
    background: rgba(15, 23, 42, 0.95);
    color: white;
}

/* Projects Section */
.projects {
    padding: 6rem 0;
    background-image: url('images/binary.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    z-index: 0;
}

.projects .container {
    position: relative;
    z-index: 1;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.project-card {
    background-color: #000000 !important;
    background: #000000 !important;
    border-radius: 12px;
    padding: 0;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: row;
    min-height: 800px;
    height: auto;
    overflow: visible;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    min-height: 800px;
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
    padding: 2rem;
    box-sizing: border-box;
}

.project-card[data-has-video]::before,
.project-card[data-has-youtube-card]::before {
    display: none;
}

/* Project card YouTube display */
.project-card-youtube {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    min-height: 800px;
    z-index: 0;
    overflow: hidden;
}

.project-card-youtube iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Project card video display */
.project-card-video {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    min-height: 800px;
    z-index: 0;
    overflow: hidden;
}

.project-card-video video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center right;
}

.project-card-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.project-card-video:hover .project-card-video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.project-card-video-play {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e3a8a;
    transition: var(--transition);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.project-card-video-play:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.project-card-video-play svg {
    margin-left: 4px;
}

.project-card-content {
    position: relative;
    z-index: 1;
    padding: 3rem;
    background: #000000 !important;
    background-color: #000000 !important;
    backdrop-filter: blur(10px);
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    max-width: 45%;
    min-width: 45%;
    color: white !important;
}

/* Force black background and white text for all project card content */
.projects .project-card .project-card-content {
    background: #000000 !important;
    background-color: #000000 !important;
    color: white !important;
}

.projects .project-card .project-card-content * {
    color: white !important;
}

.project-card-content *,
.project-card-content h3,
.project-card-content h3.project-title,
.project-card-content p,
.project-card-content p.project-description,
.project-card-content div,
.project-card-content div.project-tags,
.project-card-content span,
.project-card-content span.project-tag,
.project-card-content a,
.project-card-content a.project-link {
    color: white !important;
}

.project-card-content .project-description,
.project-card-content p.project-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.project-card-content .project-link,
.project-card-content a.project-link {
    color: white !important;
}

.project-card-content .project-link.secondary,
.project-card-content a.project-link.secondary {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.project-card-content .project-link.secondary:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-card-content .project-title,
.project-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white !important;
}

.projects .project-title {
    color: white !important;
}

.project-card-content .project-description,
.project-description {
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.6;
}

.project-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.875rem;
}

.project-link:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

.project-link.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.project-link.secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.project-link svg {
    width: 18px;
    height: 18px;
}

.project-card-content .project-tags,
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: white;
}

.project-tag {
    padding: 0.25rem 0.75rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-image: url('images/binary.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.7);
    z-index: 0;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content p {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-link svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    opacity: 0.8;
}

/* Video Viewer Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 95%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    max-height: 85vh;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.video-modal-content video,
.video-modal-content iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

.video-modal-close:hover,
.youtube-modal-close:hover {
    color: #60a5fa;
    transform: scale(1.1);
}

.youtube-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

/* PDF Viewer Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.pdf-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-modal-content {
    position: relative;
    width: 95%;
    max-width: 900px;
    height: 90vh;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.3s ease;
}

.pdf-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    line-height: 1;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
}

.pdf-modal-close:hover {
    color: #60a5fa;
    transform: scale(1.1);
}

.pdf-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Interest Modal */
.interest-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.interest-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.interest-modal-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 58, 138, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 700px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    border: 2px solid rgba(59, 130, 246, 0.5);
}

.interest-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #60a5fa;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.interest-modal-close:hover {
    color: white;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.8);
}

.interest-modal-content h3 {
    margin-bottom: 1.5rem;
    color: #60a5fa;
    font-size: 1.75rem;
    font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
}

.interest-modal-content p {
    color: #e0e7ff;
    font-size: 1rem;
    line-height: 1.8;
    font-family: 'Inter', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1e3a8a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu a {
        color: white;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-main-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        font-family: 'JetBrains Mono', 'Courier New', Courier, monospace;
    }

    .hero-grid {
        height: calc(100vh - 200px);
        gap: 0;
        margin-top: 1rem;
    }

    .hero-hover-text {
        font-size: 1.125rem;
        padding: 0.75rem 1rem;
    }


    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .interests-list {
        grid-template-columns: 1fr;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-image {
        max-width: 250px;
    }

    .projects-grid {
        gap: 3rem;
    }

    .project-card {
        flex-direction: column;
        min-height: auto;
    }

    .project-card-content {
        max-width: 100%;
        min-width: 100%;
    }

    .project-card-video,
    .project-card-youtube {
        position: relative;
        width: 100%;
        min-height: 250px;
    }

    .interests-list {
        flex-direction: column;
        align-items: center;
    }

    .interests-list li {
        width: auto;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .contact-links {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-link {
        justify-content: center;
    }
}

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

/* Email Modal */
.email-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.email-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-modal-content {
    background-color: var(--bg-primary);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
}

.email-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.email-modal-close:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.email-modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.email-item {
    margin-bottom: 1.5rem;
}

.email-item:last-child {
    margin-bottom: 0;
}

.email-label {
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.email-value-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.email-value {
    flex: 1;
    color: var(--text-primary);
    font-family: 'Courier New', monospace;
    font-size: 0.9375rem;
    word-break: break-all;
}

.copy-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    white-space: nowrap;
}

.copy-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background-color: #10b981;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

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

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


