/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f1f1f1;
    background-color: #0a0a0a;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff2e88;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 46, 136, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #f1f1f1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00f7ff;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 4;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: #f1f1f1;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f1f1f1;
}

.highlight {
    color: #ffeaa7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #ff2e88, #00f7ff);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-shadow: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 46, 136, 0.3);
}

/* Sections */
section {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    padding: 5rem 2rem;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f1f1f1;
    text-shadow: 0 0 15px rgba(255, 46, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 15px rgba(255, 46, 136, 0.5); }
    to { text-shadow: 0 0 25px rgba(0, 247, 255, 0.7); }
}

/* About Section */
.about-content {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.about-text {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    border: 1px solid rgba(255, 46, 136, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 46, 136, 0.2);
}

.about-text ul {
    margin-left: 2rem;
    margin-top: 1rem;
}

/* Skills Section */
.skills-grid {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.skill-category {
    background-color: rgba(18, 18, 18, 0.6);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    border: 1px solid rgba(255, 46, 136, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 46, 136, 0.2);
}

.skill-category h3 {
    margin-bottom: 1rem;
    color: #0984e3;
}

.skill-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-items span {
    background-color: rgba(0, 247, 255, 0.1);
    color: #00f7ff;
    border: 1px solid rgba(0, 247, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: transform 0.25s cubic-bezier(0.4,1.4,0.4,1), box-shadow 0.25s cubic-bezier(0.4,1.4,0.4,1), background 0.25s;
    cursor: pointer;
}

.skill-items span:hover {
    transform: scale(1.18);
    box-shadow: 0 0 18px 4px #74b9ff, 0 0 8px 2px #0984e3;
    background: #d0e6ff;
    z-index: 2;
    background-color: rgba(255, 46, 136, 0.2);
    color: #ff2e88;
    box-shadow: 0 0 15px rgba(255, 46, 136, 0.3);
    border-color: rgba(255, 46, 136, 0.5);
}

/* Projects Section */
.projects-grid {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    animation: float 6s ease-in-out infinite;
}

.repos-loading {
    text-align: center;
    padding: 2rem;
    color: #f1f1f1;
}

.repos-loading .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 46, 136, 0.2);
    border-top: 5px solid #ff2e88;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

.repos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.repo-card {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    border: 1px solid rgba(255, 46, 136, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.repo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 46, 136, 0.2);
}

.repo-card h3 {
    color: #00f7ff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.repo-card p {
    color: #f1f1f1;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.repo-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.repo-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff2e88;
}

.repo-stat i {
    font-size: 1.1rem;
}

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

.repo-link {
    text-decoration: none;
    color: #00f7ff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.repo-link:hover {
    color: #ff2e88;
}

.repos-error {
    text-align: center;
    padding: 2rem;
    color: #ff2e88;
}

.repos-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.repos-error p {
    color: #f1f1f1;
}

@media (max-width: 768px) {
    .repos-container {
        grid-template-columns: 1fr;
    }
    
    .repo-card {
        padding: 1.5rem;
    }
    
    .repo-stats {
        flex-wrap: wrap;
    }
}

/* Contact Section */
.contact-content {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.contact-info {
    background-color: rgba(18, 18, 18, 0.7);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    color: #f1f1f1;
    border: 1px solid rgba(255, 46, 136, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 46, 136, 0.2);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #ff2e88;
    text-shadow: 0 0 5px rgba(255, 46, 136, 0.3);
}

.contact-item a {
    text-decoration: none;
    color: #f1f1f1;
}

.contact-item a:hover {
    color: #00f7ff;
    text-shadow: 0 0 5px rgba(0, 247, 255, 0.3);
}

/* Footer */
footer {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    text-align: center;
    padding: 2rem;
    color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-content {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .hero {
        padding-top: 120px; /* Add space for fixed navigation */
        min-height: calc(100vh - 120px);
    }

    .hero-content {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
        word-break: break-word;
    }

    #typed-name {
        font-size: 1.8rem;
        min-width: 0;
        max-width: 100%;
        word-break: break-word;
        line-height: 1.4;
    }

    .hero h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 100px;
    }

    .hero-content {
        padding: 1.2rem;
        margin-top: 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
    
    #typed-name {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
}

/* Update navigation for mobile */
@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .nav-content {
        padding: 0.5rem 1rem;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .nav-links {
        padding: 0.5rem 0;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}

/* 3D Canvas Styling */
#hero3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.modal .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #888;
    cursor: pointer;
}
#openGame {
    background: #0984e3;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.3s;
}
startGame {
    border-radius: 5px;
    font-size: 2px;
}
startGame:hover {
    background-color: lightskyblue;
}
#openGame:hover {
    background: #00b894;
}
#startGame {
     border-radius: 5px;
}
body.dark-mode .modal-content {
    background-color: #23272f;
    color: #f1f1f1;
}
body.dark-mode .modal .close {
    color: #00b894;
}
body.dark-mode #openGame {
    background: #00b894;
    color: #18191a;
}

/* Typing Effect */
#typed-name {
    color: #ff2e88;
    border-right: 2px solid #ff2e88;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    font-size: 2.5rem;
    min-width: 0;
    max-width: 100%;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(255, 46, 136, 0.7);
    font-weight: bold;
    animation: blink 0.8s steps(1) infinite;
}

@keyframes blink {
    0%, 100% { border-color: #ff2e88; }
    50% { border-color: transparent; }
}

/* Responsive Hero Section Improvements */
@media (max-width: 600px) {
    .hero {
        padding: 0 0.5rem;
        min-height: 60vh;
    }
    .hero-content {
        padding: 1.5rem 0.5rem;
        max-width: 100%;
    }
    .hero h1 {
        font-size: 1.3rem;
        word-break: break-word;
    }
    .hero h2 {
        font-size: 1rem;
    }
    #typed-name {
        font-size: 1.1rem;
        min-width: 0;
        max-width: 100vw;
        word-break: break-word;
    }
}
@media (max-width: 400px) {
    .hero h1, #typed-name {
        font-size: 1rem;
    }
    .hero h2 {
        font-size: 0.9rem;
    }
}

/* Search Overlay Styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1500;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: block;
    opacity: 1;
}

.search-content {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.search-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

#searchInput {
    flex: 1;
    padding: 1rem;
    font-size: 1.2rem;
    border: 2px solid #0984e3;
    border-radius: 5px;
    background: #ffffff;
    color: #2d3436;
}

#closeSearch {
    background: none;
    border: none;
    color: #2d3436;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

#closeSearch:hover {
    color: #0984e3;
}

.search-results {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
}

.search-categories {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
}

.search-categories h3 {
    margin-bottom: 1rem;
    color: #0984e3;
}

.search-categories ul {
    list-style: none;
    padding: 0;
}

.search-categories li {
    margin-bottom: 0.5rem;
}

.search-categories a {
    color: #2d3436;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 3px;
}

.search-categories a:hover {
    color: #0984e3;
    background: rgba(9, 132, 227, 0.1);
}

#searchResultsList {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    min-height: 200px;
}

.search-result-item {
    animation: fadeIn 0.3s ease forwards;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 5px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-result-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.search-result-item h3 {
    color: #0984e3;
    margin-bottom: 0.5rem;
}

.search-result-item p {
    color: #2d3436;
}

/* Animation for search results */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-results {
        grid-template-columns: 1fr;
    }
    
    .search-content {
        margin: 1rem;
        padding: 1rem;
    }
}

/* Profile Data Section */
.profile-data {
    background: rgba(0, 0, 0, 0.65);
    padding: 5rem 2rem;
    position: relative;
    z-index: 2;
}

.profile-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-loading {
    text-align: center;
    padding: 2rem;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #0984e3;
    border-radius: 50%;
    margin: 0 auto 1rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.profile-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
    background-color: rgba(18, 18, 18, 0.7);
    color: #f1f1f1;
    border: 1px solid rgba(255, 46, 136, 0.1);
}

.profile-header {
    text-align: center;
    margin-bottom: 2rem;
}

#profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #0984e3;
}

#profile-name {
    font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 0.5rem;
}

#profile-title {
    color: #0984e3;
    font-size: 1.2rem;
}

.profile-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.detail-item:hover {
    background-color: #f8f9fa;
}

.detail-item i {
    color: #ff2e88;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    text-shadow: 0 0 5px rgba(255, 46, 136, 0.3);
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.stat-item {
    padding: 1rem;
}

.stat-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff2e88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 5px rgba(255, 46, 136, 0.3);
}

.stat-item label {
    color: #00f7ff;
    font-size: 0.9rem;
}

.profile-error {
    text-align: center;
    padding: 2rem;
    color: #e74c3c;
}

.profile-error i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Responsive Design for Profile Section */
@media (max-width: 768px) {
    .profile-stats {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        padding: 1rem;
    }
    
    #profile-avatar {
        width: 120px;
        height: 120px;
    }
}

/* Code Animation Styles */
.code-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 2;
    opacity: 0.3;
    background: transparent;
    overflow: hidden;
}

.code-column {
    position: absolute;
    top: -100%;
    width: 35px;
    font-family: 'Fira Code', 'Courier New', monospace;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    animation: fall linear infinite;
    text-shadow: 0 0 15px rgba(0, 247, 255, 0.8);
}

.code-column div {
    margin-bottom: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.code-column div:hover {
    text-shadow: 0 0 20px rgba(255, 46, 136, 0.9);
    transform: scale(1.05);
}

@keyframes fall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Neural Network Animation */
#neuralNetwork {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    background: transparent;
}

/* Update code animation z-index and opacity */
.code-animation {
    z-index: 2;
    opacity: 0.3;
}

/* Update section backgrounds to be more transparent */
section {
    position: relative;
    z-index: 3;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.hero-content, .about-content, .skills-grid, .projects-grid, .contact-content {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

/* Update other content backgrounds */
.skill-category, .project-card, .about-text, .contact-info {
    background-color: rgba(18, 18, 18, 0.6);
    position: relative;
    z-index: 4;
}

/* Ensure all content sections have proper z-index */
nav {
    z-index: 1000;
}

.hero, .about, .skills, .projects, .contact {
    position: relative;
    z-index: 1;
}

/* Update footer to be above animation */
footer {
    position: relative;
    z-index: 4;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Add floating animation to content sections */
.hero-content, .about-content, .skills-grid, .projects-grid, .contact-content {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Add hover effects to cards */
.skill-category, .project-card, .about-text, .contact-info {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover, .project-card:hover, .about-text:hover, .contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 46, 136, 0.2);
}

/* Add glow effect to headings */
section h2 {
    text-shadow: 0 0 15px rgba(255, 46, 136, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 15px rgba(255, 46, 136, 0.5); }
    to { text-shadow: 0 0 25px rgba(0, 247, 255, 0.7); }
}
