.resume-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: rgba(26, 34, 43, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: left;
    animation: fadeIn 1s ease-out;
}

.resume-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.resume-header h1 {
    margin: 0;
    font-size: 2.8em;
    font-weight: 700;
    color: #FFFFFF;
     text-shadow: 
        -1px -1px 0 #00C7B1,  
         1px -1px 0 #007BFF,
        -1px  1px 0 #00C7B1,
         1px  1px 0 #007BFF;
}

.resume-tagline {
    font-size: 1.2em;
    margin-top: 10px;
    color: #00C7B1;
    font-weight: 500;
}

.download-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background-color: #00C7B1;
    color: #11151C;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.download-button:hover {
    background-color: #00a28f;
    transform: translateY(-3px);
}

.resume-section {
    margin-bottom: 40px;
    cursor: default;
}
.resume-section:last-child { margin-bottom: 0; }

.resume-section h2 {
    font-size: 1.8em;
    color: #fff;
    border-bottom: 1px solid #00C7B1;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 600;
}

.resume-section h2 i {
    margin-right: 12px;
    color: #00C7B1;
}

.item { margin-bottom: 20px; }
.item h3 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
    color: #EAEAEA;
    font-weight: 600;
}
.item p {
    margin: 0;
    color: #a0a0a0;
    line-height: 1.6;
}

.skills-category { margin-bottom: 25px; }
.skills-category:last-child { margin-bottom: 0; }
.skills-category h3 {
    font-size: 1.2em;
    color: #EAEAEA;
    margin-bottom: 15px;
    font-weight: 600;
}
.skills-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.skills-list li {
    background: #1a222b;
    color: #a0a0a0;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    border: 1px solid #00C7B1;
    transition: all 0.3s ease;
}

.skills-list li:hover {
    background-color: #00C7B1;
    color: #11151C;
    transform: translateY(-2px);
    border-color: #00C7B1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.print-mode .resume-container {
    background: #FFFFFF !important;
    color: #000000 !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 !important; padding: 0 !important;
    animation: none !important;
}
.print-mode .resume-container h1,
.print-mode .resume-container h2,
.print-mode .resume-container h3,
.print-mode .resume-container p,
.print-mode .resume-container li {
    color: #000000 !important; text-shadow: none !important;
}
.print-mode .resume-tagline, .print-mode .resume-section h2 i { color: #444444 !important; }
.print-mode .resume-section h2 { border-bottom-color: #dddddd !important; }
.print-mode .download-button { display: none !important; }
.print-mode .skills-list li { background: #f0f0f0 !important; color: #333333 !important; border-color: #dddddd !important; }