@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300;400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fira Code', 'Courier New', monospace;
    background: #000000;
    color: #e0e0e0;
    line-height: 1.6;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top left, rgba(255, 0, 102, 0.15), transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(139, 0, 0, 0.15), transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 0, 102, 0.5);
    box-shadow: 
        0 2px 30px rgba(255, 0, 102, 0.4),
        0 0 50px rgba(255, 0, 102, 0.2);
    z-index: 1000;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff0066;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 10px rgba(255, 0, 102, 0.6));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-left: auto !important;
}

.nav-link {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #ff0066;
    text-shadow: 
        0 0 15px rgba(255, 0, 102, 0.8),
        0 0 30px rgba(255, 0, 102, 0.4);
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    z-index: 10;
}

.terminal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.terminal-window {
    background: #0d0d0d;
    border-radius: 8px;
    border: 2px solid rgba(255, 0, 102, 0.6);
    box-shadow: 
        0 0 40px rgba(255, 0, 102, 0.4),
        0 0 80px rgba(255, 0, 102, 0.2),
        inset 0 0 50px rgba(255, 0, 102, 0.05);
    width: 100%;
}

.terminal-header {
    background: rgba(0, 0, 0, 0.8);
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(255, 0, 102, 0.3);
}

.terminal-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.terminal-button.red { background: #ff5f56; }
.terminal-button.yellow { background: #ffbd2e; }
.terminal-button.green { background: #27c93f; }

.terminal-title {
    margin-left: auto;
    font-size: 0.85rem;
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
    font-weight: 600;
}

.terminal-body {
    padding: 1.5rem;
    font-size: 0.9rem;
}

.terminal-line {
    margin: 0.8rem 0;
}

.prompt {
    color: #ff0066;
    font-weight: 600;
    text-shadow: 
        0 0 15px rgba(255, 0, 102, 0.8),
        0 0 30px rgba(255, 0, 102, 0.4);
}

.command {
    color: #ff006e;
    margin-left: 0.5rem;
    text-shadow: 
        0 0 15px rgba(255, 0, 110, 0.8),
        0 0 30px rgba(255, 0, 110, 0.4);
}

.terminal-output {
    color: #a0a0b0;
    margin: 0.5rem 0 0.5rem 2rem;
    font-size: 0.95rem;
}

.cursor {
    color: #ff0066;
    text-shadow: 
        0 0 15px rgba(255, 0, 102, 0.8),
        0 0 30px rgba(255, 0, 102, 0.4);
    animation: blink 1s infinite;
}

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

.section-title {
    font-size: 2rem;
    color: #e0e0e0;
    margin: 4rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.title-number {
    color: #ff0066;
    font-size: 1.5rem;
    text-shadow: 
        0 0 15px rgba(255, 0, 102, 0.8),
        0 0 30px rgba(255, 0, 102, 0.4);
}

.title-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 0, 102, 0.8), transparent);
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.5);
}

.about-section,
.skills-section,
.blog-section {
    padding: 4rem 0;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr auto 2fr;
    gap: 3rem;
    opacity: 1 !important;
    visibility: visible !important;
    align-items: start;
}

/* Vertical Divider */
.vertical-divider {
    width: 2px;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(255, 0, 102, 0.6) 20%,
        rgba(255, 0, 102, 0.8) 50%,
        rgba(255, 0, 102, 0.6) 80%,
        transparent
    );
    box-shadow: 
        0 0 10px rgba(255, 0, 102, 0.5),
        0 0 20px rgba(255, 0, 102, 0.3);
    position: relative;
    animation: dividerPulse 3s ease-in-out infinite;
}

@keyframes dividerPulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.about-text p {
    color: #8892b0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.about-skills-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 1 !important;
    visibility: visible !important;
    padding-left: 1rem;
}

.skills-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.skills-column {
    display: flex;
    flex-direction: column;
}

.skill-tag {
    color: #e0e0e0;
    margin: 0.5rem 0;
    font-size: 0.95rem;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.skill-tag::before {
    content: '▹ ';
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.6);
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.skill-tag:hover {
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.6);
    transform: translateX(5px);
}

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

.skill-card {
    background: #0d0d0d;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 0, 102, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.2);
    transition: all 0.3s;
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: #ff0066;
    box-shadow: 
        0 0 40px rgba(255, 0, 102, 0.5),
        0 0 80px rgba(255, 0, 102, 0.3);
}

.skill-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.skill-card h3 {
    color: #e0e0e0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.skill-card p {
    color: #a0a0b0;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.skill-tags span {
    background: rgba(255, 0, 102, 0.1);
    color: #ff0066;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 0, 102, 0.3);
}

.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #8892b0;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: #ff0066;
    border: 2px solid #ff0066;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

.btn-cta:hover {
    background: rgba(255, 0, 102, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.4);
}

.blog-hero {
    padding: 8rem 0 4rem;
}

.page-title {
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-subtitle {
    color: #8892b0;
    font-size: 1.1rem;
}

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

.blog-card {
    background: #0d0d0d;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid rgba(255, 0, 102, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 102, 0.2);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: #ff0066;
    box-shadow: 
        0 0 40px rgba(255, 0, 102, 0.5),
        0 0 80px rgba(255, 0, 102, 0.3);
}

.blog-date {
    color: #ff0066;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 15px rgba(255, 0, 102, 0.8),
        0 0 30px rgba(255, 0, 102, 0.4);
}

.blog-title {
    color: #e0e0e0;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.blog-excerpt {
    color: #8892b0;
    margin-bottom: 1rem;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(255, 0, 102, 0.1);
    color: #ff0066;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    border: 1px solid rgba(255, 0, 102, 0.3);
}

.blog-link {
    color: #ff0066;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

.footer {
    background: #0d0d0d;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 2px solid rgba(255, 0, 102, 0.5);
    box-shadow: 0 -2px 30px rgba(255, 0, 102, 0.3);
}

.footer p {
    color: #a0a0b0;
    font-size: 0.9rem;
}

.highlight {
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}



#matrix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .terminal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .terminal-body {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    
    .about-grid {
        grid-template-columns: 2fr auto 1.5fr;
        gap: 2rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .terminal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .terminal-body {
        padding: 1rem;
        font-size: 0.8rem;
    }
    
    .terminal-line {
        margin: 0.6rem 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vertical-divider {
        display: none;
    }
    
    .about-skills-list {
        padding-left: 0;
    }
    
    .skill-tag {
        font-size: 0.9rem;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
        font-size: 0.8rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .title-number {
        font-size: 1.2rem;
    }
    
    .hero {
        padding-top: 100px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .terminal-body {
        padding: 0.8rem;
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .title-line {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    .skill-card {
        padding: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .btn-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}





/* Subtle Scanline Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1),
        rgba(0, 0, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 5;
    opacity: 0.2;
}

.logo:hover .logo-text {
    color: #ff0066;
    text-shadow: 0 0 15px rgba(255, 0, 102, 0.8);
    transition: all 0.3s ease;
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 0, 102, 0.15);
    }
    50% {
        box-shadow: 0 0 25px rgba(255, 0, 102, 0.25);
    }
}

.skill-card,
.blog-card {
    animation: neonPulse 6s ease-in-out infinite;
}

.terminal-button {
    box-shadow: 0 0 10px currentColor;
}

.container {
    position: relative;
    z-index: 100;
}

main {
    position: relative;
    z-index: 10;
}


.prompt {
    color: #ff0066;
    font-weight: 700;
    text-shadow: 
        0 0 15px rgba(255, 0, 102, 0.8),
        0 0 30px rgba(255, 0, 102, 0.4);
}

.prompt-separator {
    color: #666;
}

.prompt-path {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.prompt-symbol {
    color: #ff0066;
    font-weight: 900;
}

.tor-status {
    color: #ff6600;
    text-shadow: 0 0 10px rgba(255, 102, 0, 0.6);
}

.tor-connected {
    color: #ff0066;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 0, 102, 0.8);
}

.access-header {
    color: #ff0066;
    font-weight: 900;
    font-size: 1.3rem;
    text-shadow: 
        0 0 20px rgba(255, 0, 102, 0.8),
        0 0 40px rgba(255, 0, 102, 0.4);
    margin-bottom: 2rem !important;
    letter-spacing: 2px;
}

.access-symbol {
    color: #ff0066;
    font-size: 1.5rem;
    margin-right: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.terminal-window {
    position: relative;
    overflow: hidden;
}

.terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 102, 0.1), transparent);
    animation: terminalScan 3s linear infinite;
}

@keyframes terminalScan {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.about-text {
    opacity: 1 !important;
    visibility: visible !important;
}

.about-text p {
    color: #e0e0e0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    opacity: 1 !important;
    visibility: visible !important;
}

.about-text p:first-child {
    margin-bottom: 2rem;
}





/* Coming Soon Overlay - Horror Version */
.coming-soon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: horrorPulse 3s ease-in-out infinite;
    overflow: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.coming-soon-overlay::-webkit-scrollbar {
    width: 8px;
}

.coming-soon-overlay::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.5);
}

.coming-soon-overlay::-webkit-scrollbar-thumb {
    background: rgba(139, 0, 0, 0.6);
    border-radius: 4px;
}

.coming-soon-overlay::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 0, 0, 0.8);
}

/* Smooth scrolling */
.coming-soon-overlay {
    scroll-behavior: smooth;
}

@keyframes horrorPulse {
    0%, 100% {
        background: rgba(0, 0, 0, 0.98);
    }
    50% {
        background: rgba(10, 0, 0, 0.98);
    }
}

.coming-soon-content {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.coming-soon-title {
    display: none;
}

@keyframes subtleGlow {
    0%, 100% {
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.5),
            0 0 20px rgba(220, 20, 60, 0.3);
    }
    50% {
        text-shadow: 
            0 2px 10px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(220, 20, 60, 0.5);
    }
}

.berserk-gif-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 2rem;
    margin-top: 120px;
}

.berserk-gif {
    width: 100%;
    max-width: 700px;
    height: auto;
    border: 3px solid #8b0000;
    border-radius: 8px;
    box-shadow: 
        0 0 40px rgba(139, 0, 0, 0.6),
        0 0 80px rgba(139, 0, 0, 0.4);
    animation: gentleGlow 3s ease-in-out infinite;
}

@keyframes gentleGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(139, 0, 0, 0.6),
            0 0 80px rgba(139, 0, 0, 0.4);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(139, 0, 0, 0.8),
            0 0 120px rgba(139, 0, 0, 0.6);
    }
}

.berserk-text {
    position: relative;
    text-align: center;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
    width: 100%;
}

.berserk-text p {
    margin: 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 8px;
}

.berserk-text .highlight {
    color: #dc143c;
    text-shadow: 
        0 0 20px rgba(220, 20, 60, 0.6),
        0 0 40px rgba(220, 20, 60, 0.4),
        0 2px 10px rgba(0, 0, 0, 0.8);
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(220, 20, 60, 0.6),
            0 0 40px rgba(220, 20, 60, 0.4),
            0 2px 10px rgba(0, 0, 0, 0.8);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(220, 20, 60, 0.8),
            0 0 60px rgba(220, 20, 60, 0.6),
            0 2px 10px rgba(0, 0, 0, 0.8);
    }
}

/* Mobile Responsive - Blog */
@media (max-width: 1024px) and (min-width: 769px) {
    .berserk-gif {
        max-width: 600px;
    }
    
    .berserk-text p {
        font-size: 2rem;
        letter-spacing: 6px;
    }
}

@media (max-width: 768px) {
    .coming-soon-content {
        padding: 1rem;
        margin: 1rem;
    }
    
    .coming-soon-title {
        font-size: 3rem;
        letter-spacing: 10px;
        margin-bottom: 2rem;
    }
    
    .berserk-gif-container {
        min-height: 400px;
        margin-top: 2rem;
    }
    
    .berserk-gif {
        max-width: 90%;
    }
    
    .berserk-text {
        min-height: 400px;
    }
    
    .berserk-text p {
        font-size: 1.5rem;
        letter-spacing: 4px;
        margin: 0.3rem 0;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 2rem;
        letter-spacing: 6px;
    }
    
    .berserk-gif-container {
        min-height: 300px;
        margin-top: 1rem;
    }
    
    .berserk-text {
        min-height: 300px;
    }
    
    .berserk-text p {
        font-size: 1.2rem;
        letter-spacing: 3px;
        margin: 0.2rem 0;
    }
    
    .coming-soon-overlay::-webkit-scrollbar {
        width: 4px;
    }
}


/* Hide blog content when overlay is active */
.coming-soon-overlay ~ .blog-entrance-gif,
.coming-soon-overlay ~ .blog-floating-gif,
.coming-soon-overlay ~ .blog-hero,
.coming-soon-overlay ~ .blog-section {
    display: none !important;
}


/* Skill Tooltip */
.skill-tag[data-skill] {
    cursor: pointer;
    position: relative;
}

.skill-tag[data-skill]:hover {
    background: rgba(255, 0, 102, 0.1);
    padding-left: 0.5rem;
    border-radius: 4px;
}

.skill-tooltip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.skill-tooltip.active {
    opacity: 1;
    visibility: visible;
}

.skill-tooltip-content {
    background: #0d0d0d;
    border: 2px solid rgba(255, 0, 102, 0.6);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    width: 90%;
    box-shadow: 
        0 0 60px rgba(255, 0, 102, 0.5),
        0 0 120px rgba(255, 0, 102, 0.3);
    position: relative;
    animation: tooltipSlideIn 0.3s ease-out;
}

@keyframes tooltipSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.skill-tooltip-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #ff0066;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.skill-tooltip-close:hover {
    background: rgba(255, 0, 102, 0.2);
    transform: rotate(90deg);
}

.skill-tooltip-title {
    color: #ff0066;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(255, 0, 102, 0.6);
}

.skill-tooltip-description {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
}

@media (max-width: 768px) {
    .skill-tooltip-content {
        padding: 2rem;
        max-width: 90%;
    }
    
    .skill-tooltip-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .skill-tooltip-description {
        font-size: 0.95rem;
    }
}
