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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 40px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.profile-info {
    flex: 1;
}

.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.title {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 5px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.contact-item i {
    width: 20px;
    color: #3498db;
}

.contact-item i.fa-telegram {
    color: #0088cc;
}

/* Main Content Styles */
.main-content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #e74c3c;
}

.profile-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c3e50;
    text-align: justify;
    font-weight: 500;
}

/* Skills Styles */
.skills-grid {
    display: grid;
    gap: 25px;
}

.skill-category h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skill-tag {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

/* Experience Styles */
.experience-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.experience-header h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.company {
    color: #7f8c8d;
    font-weight: 500;
}

.date {
    background: #e74c3c;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.experience-details {
    list-style: none;
    padding-left: 0;
}

.experience-details li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.experience-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #3498db;
    font-size: 0.8rem;
}

/* Projects Styles */
.project-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
    cursor: pointer;
    border: 1px solid #e9ecef;
}

.project-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-item h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-item p {
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.6;
    font-weight: 500;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Education Styles */
.education-item {
    background: #f1f2f6;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #9b59b6;
}

.education-item h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.institution {
    color: #7f8c8d;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.education-item .date {
    background: #9b59b6;
}

.education-description {
    margin-top: 10px;
    color: #2c3e50;
    font-style: italic;
    line-height: 1.6;
    font-weight: 500;
}

/* Certifications Styles */
.certifications-list {
    list-style: none;
    padding: 0;
}

.certifications-list li {
    background: #fff3cd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
    position: relative;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 500;
}

.certifications-list li:hover {
    background: #ffeaa7;
    transform: translateX(5px);
}



/* Additional Information Styles */
.additional-info {
    display: grid;
    gap: 20px;
}

.info-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #17a2b8;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.15);
    border-left-width: 6px;
}

.info-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item h4 i {
    color: #17a2b8;
    font-size: 1.2rem;
}

.info-item p {
    color: #2c3e50;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 10px;
    }

    .header {
        padding: 30px 20px;
    }

    .profile-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .name {
        font-size: 2rem;
    }

    .main-content {
        padding: 30px 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .skills-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .name {
        font-size: 1.8rem;
    }

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

    .profile-image img {
        width: 120px;
        height: 120px;
    }
}

/* Print styles */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        box-shadow: none !important;
    }

    @page {
        margin: 0.5in;
        size: A4;
    }

    body {
        background: white !important;
        font-size: 12px !important;
        line-height: 1.3 !important;
        color: #000 !important;
        margin: 0 !important;
        padding: 0 !important;
        font-family: Arial, sans-serif !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .container {
        box-shadow: none !important;
        border-radius: 0 !important;
        max-width: none !important;
        margin: 0 !important;
        background: white !important;
    }

    .header {
        background: #2c3e50 !important;
        color: white !important;
        padding: 20px !important;
        page-break-inside: avoid;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .name {
        color: white !important;
        font-size: 1.8rem !important;
    }

    .title {
        color: #ecf0f1 !important;
        font-size: 1.1rem !important;
    }

    .contact-item {
        color: white !important;
    }

    .contact-item i {
        color: #3498db !important;
    }

    .main-content {
        padding: 20px !important;
    }

    .section {
        page-break-inside: avoid;
        margin-bottom: 20px !important;
        display: block !important;
        opacity: 1 !important;
        transform: none !important;
        visibility: visible !important;
    }

    .section-title {
        color: #000 !important;
        font-size: 16px !important;
        border-bottom: 2px solid #000 !important;
        page-break-after: avoid;
        margin-bottom: 15px !important;
        font-weight: bold !important;
    }

    .section-title::after {
        background: #000 !important;
    }

    .profile-text,
    .experience-details li,
    .project-item p,
    .info-item p,
    .education-description {
        color: #000 !important;
        font-size: 11px !important;
        line-height: 1.4 !important;
        font-weight: normal !important;
        visibility: visible !important;
        display: block !important;
    }

    .skill-tag {
        background: #3498db !important;
        color: white !important;
        font-size: 8px !important;
        padding: 4px 8px !important;
        margin: 2px !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .tech-tag {
        background: #e74c3c !important;
        color: white !important;
        font-size: 8px !important;
        padding: 3px 6px !important;
        margin: 2px !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .experience-item {
        background: #f8f9fa !important;
        border-left: 3px solid #3498db !important;
        padding: 15px !important;
        margin-bottom: 10px !important;
        page-break-inside: avoid;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .project-item {
        background: #f8f9fa !important;
        border-left: 3px solid #e74c3c !important;
        padding: 15px !important;
        margin-bottom: 10px !important;
        page-break-inside: avoid;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .education-item {
        background: #f1f2f6 !important;
        border-left: 3px solid #9b59b6 !important;
        padding: 15px !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .info-item {
        background: #f8f9fa !important;
        border-left: 3px solid #17a2b8 !important;
        padding: 15px !important;
        margin-bottom: 10px !important;
        page-break-inside: avoid;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .certifications-list li {
        background: #fff3cd !important;
        border-left: 3px solid #f39c12 !important;
        color: #2c3e50 !important;
        padding: 10px !important;
        margin-bottom: 8px !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .experience-header h4,
    .project-item h4,
    .education-item h4,
    .info-item h4 {
        color: #2c3e50 !important;
        font-size: 11px !important;
    }

    .company,
    .institution {
        color: #7f8c8d !important;
        font-size: 9px !important;
    }

    .date {
        background: #e74c3c !important;
        color: white !important;
        font-size: 8px !important;
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .education-item .date {
        background: #9b59b6 !important;
    }

    .profile-image img {
        width: 100px !important;
        height: 100px !important;
    }

    /* Hide interactive elements */
    .print-btn,
    .back-to-top,
    .language-selector,
    #loading-screen {
        display: none !important;
    }

    /* Ensure all content is visible */
    .skills-grid,
    .skill-category,
    .skill-tags,
    .additional-info {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .skill-category {
        margin-bottom: 15px !important;
        page-break-inside: avoid;
    }

    .skill-category h4 {
        color: #000 !important;
        font-size: 12px !important;
        font-weight: bold !important;
        margin-bottom: 8px !important;
    }

    .skill-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
        margin-bottom: 10px !important;
    }

    /* Ensure page breaks */
    .section:nth-child(n+4) {
        page-break-before: auto;
    }

    /* Force visibility for all text elements */
    h1, h2, h3, h4, h5, h6, p, li, span, div {
        visibility: visible !important;
        display: block !important;
        opacity: 1 !important;
    }

    /* Specific fixes for skill tags and tech tags */
    .skill-tag,
    .tech-tag {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loader {
    text-align: center;
    color: white;
}

.cyber-loader {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(52, 152, 219, 0.3);
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin: 0;
    animation: pulse 1.5s ease-in-out infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* Hide loading screen when loaded */
.loaded #loading-screen {
    opacity: 0;
    pointer-events: none;
}

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

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* Enhanced animations */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Name without typing effect */
.name {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #3498db;
    }
}

/* Skill tags enhanced animation */
.skill-tag {
    position: relative;
    overflow: hidden;
}

.skill-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.skill-tag:hover::before {
    left: 100%;
}

/* Progress bars for skills */
.skill-progress {
    width: 100%;
    height: 4px;
    background: rgba(52, 152, 219, 0.2);
    border-radius: 2px;
    margin-top: 5px;
    overflow: hidden;
}

.skill-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
    width: 0;
    transition: width 2s ease-out;
    animation: progressFill 2s ease-out forwards;
}

@keyframes progressFill {
    0% {
        width: 0;
    }

    100% {
        width: var(--progress, 90%);
    }
}

/* Enhanced hover effects */
.experience-item,
.project-item,
.info-item {
    position: relative;
    overflow: hidden;
}

.experience-item::before,
.project-item::before,
.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.6s;
}

.experience-item:hover::before,
.project-item:hover::before,
.info-item:hover::before {
    left: 100%;
}

/* Contact items enhanced */
.contact-item {
    position: relative;
}

.contact-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.contact-item:hover::after {
    width: 100%;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .cyber-loader {
        width: 40px;
        height: 40px;
    }

    .loader p {
        font-size: 1rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .name {
        animation: none;
        border-right: none;
    }
}

/* Print button styles */
.print-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.print-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.print-btn:active {
    transform: translateY(-1px);
}

/* Hide print button when printing */
@media print {
    .print-btn {
        display: none !important;
    }
}/* Co
ntact links styling */
.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 3px;
    padding: 2px 4px;
}

.contact-item a:hover {
    color: #3498db;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: underline;
}

.contact-item a:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Print styles for links */
@media print {
    .contact-item a {
        color: white !important;
        text-decoration: none !important;
    }
    
    .contact-item a::after {
        content: " (" attr(href) ")";
        font-size: 8px;
        color: #666 !important;
    }
    
    .contact-item a[href^="tel:"]::after {
        content: "";
    }
    
    .contact-item a[href^="mailto:"]::after {
        content: "";
    }
}/* La
nguage Selector Styles */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    background: rgba(44, 62, 80, 0.9);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.language-btn:hover {
    background: rgba(52, 152, 219, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.language-btn i.fa-chevron-down {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.language-btn.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
    overflow: hidden;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 500;
}

.language-option:hover {
    background: #f8f9fa;
    color: #3498db;
}

.language-option.active {
    background: #3498db;
    color: white;
}

.language-option .flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
}

.language-option span {
    font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .language-selector {
        top: 15px;
        right: 15px;
    }
    
    .language-btn {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .language-menu {
        min-width: 160px;
    }
    
    .language-option {
        padding: 10px 12px;
    }
}

/* Print styles - hide language selector */
@media print {
    .language-selector {
        display: none !important;
    }
}

/* Visit Counter Styles */
#visit-counter {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

#visit-counter.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.visit-counter-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.visit-counter-content i {
    font-size: 16px;
    color: #fff;
    animation: blink 2s infinite;
}

.visit-count {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.visit-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Mobile responsive for visit counter */
@media (max-width: 768px) {
    #visit-counter {
        bottom: 15px;
        left: 15px;
        padding: 10px 16px;
    }
    
    .visit-counter-content {
        font-size: 13px;
        gap: 6px;
    }
    
    .visit-count {
        font-size: 14px;
    }
    
    .visit-text {
        font-size: 12px;
    }
}

/* Hide visit counter when printing */
@media print {
    #visit-counter {
        display: none !important;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 30px 40px;
    margin-top: 40px;
    border-top: 4px solid #3498db;
}

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

.last-updated {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.last-updated i {
    color: #3498db;
    font-size: 1rem;
}

.visit-counter-footer {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

.visit-counter-footer i {
    color: #e74c3c;
    font-size: 1rem;
    animation: blink 2s infinite;
}

.visit-count-footer {
    color: #3498db;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.visit-text-footer {
    color: #bdc3c7;
}

.footer-note {
    font-size: 0.85rem;
    color: #bdc3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-style: italic;
}

.footer-note i {
    color: #e74c3c;
    font-size: 0.9rem;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Mobile responsive for footer */
@media (max-width: 768px) {
    .footer {
        padding: 25px 20px;
    }
    
    .last-updated,
    .footer-note {
        flex-direction: column;
        gap: 5px;
    }
    
    .last-updated {
        font-size: 0.85rem;
    }
    
    .footer-note {
        font-size: 0.8rem;
    }
}

/* Print styles for footer */
@media print {
    .footer {
        background: #2c3e50 !important;
        color: white !important;
        padding: 15px !important;
        margin-top: 20px !important;
        border-top: 2px solid #000 !important;
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    .last-updated,
    .footer-note {
        color: white !important;
        font-size: 10px !important;
    }
    
    .last-updated i,
    .footer-note i {
        color: white !important;
    }
}