/* Style principal pour Mr Diomandé */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    transition: background-color 0.3s ease;
}

body[data-theme="dark"] {
    background: linear-gradient(135deg, #0a0e27 0%, #1a0033 50%, #001a4d 100%);
    color: #e0e0e0;
}

body[data-theme="light"] {
    background: linear-gradient(135deg, #f5f7fa 0%, #e3f2fd 50%, #f8fbff 100%);
    color: #1a1a1a;
}

body[data-theme="gold"] {
    background: linear-gradient(135deg, #1a1410 0%, #2d2414 50%, #1a1410 100%);
    color: #ffd700;
}

body[data-theme="light"] h1, 
body[data-theme="light"] h2, 
body[data-theme="light"] h3 {
    color: #1a1a1a;
}

body[data-theme="light"] .subtitle {
    color: #333333;
}

body[data-theme="light"] .stat-label,
body[data-theme="light"] .project-info p,
body[data-theme="light"] .item-overlay p {
    color: #555555;
}

/* Fond animé */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    padding-top: 80px;
    position: relative;
    z-index: 10;
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    animation: fadeInDown 1s ease-out;
    position: relative;
    z-index: 11;
}

.glowing-title {
    font-size: 64px;
    font-weight: 700;
    color: #ff6b6b;
    margin: 0 0 15px 0;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.8), 0 0 60px rgba(255, 107, 107, 0.4);
    animation: glow 3s ease-in-out infinite;
    letter-spacing: 2px;
}

body[data-theme="light"] .glowing-title {
    color: #e63946;
}

body[data-theme="dark"] .glowing-title {
    text-shadow: 0 0 40px rgba(187, 134, 252, 0.8);
}

body[data-theme="gold"] .glowing-title {
    color: #ffd700;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
}

.subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

body[data-theme="light"] .subtitle {
    color: #333333;
}

/* Photo de profil */
.photo-profil {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px auto 40px;
    padding: 0;
    animation: fadeInUp 0.8s ease-out;
}

.profile-3d {
    position: relative;
    width: 250px;
    height: 250px;
    perspective: 1000px;
    animation: profileRotate 6s infinite ease-in-out;
}

.profile-3d img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ff6b6b;
    box-shadow: 0 0 50px rgba(255, 107, 107, 0.8), inset 0 0 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

body[data-theme="light"] .profile-3d img {
    border-color: #e63946;
}

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

.profile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none;
}

/* Réseaux sociaux */
.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 30px 0 50px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.social-links a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.3);
}

.social-links a:hover {
    transform: translateY(-10px) scale(1.1);
    background: rgba(255, 107, 107, 0.3);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.8);
}

body[data-theme="dark"] .social-links a {
    border-color: #bb86fc;
    background: rgba(187, 134, 252, 0.1);
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
}

body[data-theme="dark"] .social-links a:hover {
    background: rgba(187, 134, 252, 0.3);
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.8);
}

body[data-theme="light"] .social-links a {
    border-color: #e63946;
    background: rgba(230, 57, 70, 0.1);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

body[data-theme="light"] .social-links a:hover {
    background: rgba(230, 57, 70, 0.3);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.8);
}

body[data-theme="gold"] .social-links a {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

body[data-theme="gold"] .social-links a:hover {
    background: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.social-links a .tooltip {
    position: absolute;
    bottom: -35px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
}

.social-links a:hover .tooltip {
    opacity: 1;
}

.whatsapp { color: #25D366; }
.facebook { color: #1877F2; }
.twitter { color: #1DA1F2; }
.instagram { color: #E4405F; }
.tiktok { color: #000000; }
.bandlab { color: #0088CC; }
.snapchat { color: #FFFC00; }

.bandlab-icon {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

/* Section Statistiques */
.stats {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    padding: 20px;
    background: transparent;
    border-radius: 0;
    margin: 40px 0;
    animation: slideInUp 1s ease-out 0.4s both;
    flex-wrap: nowrap;
    align-items: center;
}

body[data-theme="light"] .stats {
    background: transparent;
}

.stat-item {
    text-align: center;
    padding: 10px 15px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    min-width: 90px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    animation: fadeInScale 0.6s ease-out forwards;
    flex-shrink: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.6s; }
.stat-item:nth-child(3) { animation-delay: 0.8s; }

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 107, 0.15);
    border-color: rgba(255, 107, 107, 0.6);
}

body[data-theme="dark"] .stat-item {
    border-color: rgba(187, 134, 252, 0.3);
    background: rgba(187, 134, 252, 0.05);
}

body[data-theme="dark"] .stat-item:hover {
    background: rgba(187, 134, 252, 0.15);
    border-color: rgba(187, 134, 252, 0.6);
}

body[data-theme="light"] .stat-item {
    border-color: rgba(230, 57, 70, 0.3);
    background: rgba(230, 57, 70, 0.05);
}

body[data-theme="light"] .stat-item:hover {
    background: rgba(230, 57, 70, 0.15);
    border-color: rgba(230, 57, 70, 0.6);
}

body[data-theme="gold"] .stat-item {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

body[data-theme="gold"] .stat-item:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.6);
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Courier New', monospace;
}

body[data-theme="dark"] .stat-number {
    background: linear-gradient(45deg, #bb86fc, #03dac6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="light"] .stat-number {
    background: linear-gradient(45deg, #e63946, #ff8c42);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="gold"] .stat-number {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    letter-spacing: 0.5px;
}

body[data-theme="light"] .stat-label {
    color: #555555;
}

/* Section Portfolio */
.portfolio {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    margin: 60px 0;
}

.portfolio h2,
.galerie h2 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #ff6b6b;
    text-shadow: 0 0 30px rgba(255, 107, 107, 0.6);
    animation: fadeInDown 0.8s ease-out;
}

body[data-theme="light"] .portfolio h2,
body[data-theme="light"] .galerie h2 {
    color: #e63946;
    text-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

body[data-theme="gold"] .portfolio h2,
body[data-theme="gold"] .galerie h2 {
    color: #ffd700;
}

.glowing-text {
    font-style: italic;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body[data-theme="dark"] .glowing-text {
    background: linear-gradient(45deg, #bb86fc, #03dac6, #bb86fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="light"] .glowing-text {
    background: linear-gradient(45deg, #e63946, #ff8c42, #e63946);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

body[data-theme="gold"] .glowing-text {
    background: linear-gradient(45deg, #ffd700, #ffed4e, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: fadeInScale 0.6s ease-out forwards;
}

.project-card:nth-child(1) { animation-delay: 0.2s; }
.project-card:nth-child(2) { animation-delay: 0.4s; }
.project-card:nth-child(3) { animation-delay: 0.6s; }

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    border-color: #ff6b6b;
}

body[data-theme="dark"] .project-card:hover {
    box-shadow: 0 20px 40px rgba(187, 134, 252, 0.3);
    border-color: #bb86fc;
}

body[data-theme="light"] .project-card:hover {
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.3);
    border-color: #e63946;
}

body[data-theme="gold"] .project-card:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.project-image {
    height: 200px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.15);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #ffffff;
}

.project-info p {
    margin: 0 0 15px;
    color: rgba(255,255,255,0.7);
}

.project-status {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.project-status:hover {
    transform: scale(1.05);
}

/* Galerie */
.galerie {
    padding: 80px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    margin: 60px 0;
}

.miniatures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 107, 0.5);
    animation: fadeInScale 0.6s ease-out forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.2s; }
.gallery-item:nth-child(2) { animation-delay: 0.4s; }
.gallery-item:nth-child(3) { animation-delay: 0.6s; }
.gallery-item:nth-child(4) { animation-delay: 0.8s; }

.gallery-item:hover {
    transform: scale(1.08);
    box-shadow: 0 0 50px rgba(255, 107, 107, 0.8);
}

body[data-theme="dark"] .gallery-item {
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.4);
    border-color: rgba(187, 134, 252, 0.5);
}

body[data-theme="dark"] .gallery-item:hover {
    box-shadow: 0 0 50px rgba(187, 134, 252, 0.8);
}

body[data-theme="light"] .gallery-item {
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.4);
    border-color: rgba(230, 57, 70, 0.5);
}

body[data-theme="light"] .gallery-item:hover {
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.8);
}

body[data-theme="gold"] .gallery-item {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.5);
}

body[data-theme="gold"] .gallery-item:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.95));
    color: white;
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .item-overlay {
    transform: translateY(0);
}

.item-overlay h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.item-overlay p {
    font-size: 14px;
    opacity: 0.8;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 18px;
    text-align: center;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox .close:hover {
    color: #ff6b6b;
}

.lightbox .prev, .lightbox .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    border-radius: 3px;
    user-select: none;
}

.lightbox .next {
    right: 0;
}

.lightbox .prev {
    left: 0;
}

.lightbox .prev:hover, .lightbox .next:hover {
    background-color: rgba(255, 107, 107, 0.7);
}

/* Footer */
.animated-footer {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    border-top: 3px solid #ff6b6b;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out;
}

body[data-theme="light"] .animated-footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.1));
    border-top-color: #e63946;
}

.typing-container {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typing-effect {
    font-size: 24px;
    font-weight: 700;
    color: #ff6b6b;
    margin: 0;
    animation: fadeIn 1s ease-out;
}

body[data-theme="light"] .typing-effect {
    color: #e63946;
}

body[data-theme="gold"] .typing-effect {
    color: #ffd700;
}

.cursor {
    display: inline-block;
    margin-left: 5px;
    animation: blink 1s infinite;
}

.social-float {
    margin: 40px 0;
}

.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 20px;
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    animation: slideUp 0.5s ease-out;
}

body[data-theme="dark"] .back-to-top {
    background: linear-gradient(135deg, #bb86fc, #03dac6);
    box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
}

body[data-theme="light"] .back-to-top {
    background: #e63946;
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.5);
}

body[data-theme="gold"] .back-to-top {
    background: #ffd700;
    color: #000;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.back-to-top:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

body[data-theme="light"] .footer-links a {
    color: #555555;
}

.footer-links a:hover {
    color: #ff6b6b;
    transform: translateY(-3px);
}

body[data-theme="light"] .footer-links a:hover {
    color: #e63946;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 30px;
}

body[data-theme="light"] .copyright {
    color: rgba(0, 0, 0, 0.5);
}

/* Bouton flottant retour en haut */
.floating-up-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 107, 107, 0.6);
    transition: all 0.3s ease;
    z-index: 999;
    animation: slideInRight 0.5s ease-out;
}

.floating-up-btn.show {
    display: flex;
}

.floating-up-btn:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 0 50px rgba(255, 107, 107, 0.8);
}

body[data-theme="dark"] .floating-up-btn {
    background: linear-gradient(135deg, #bb86fc, #03dac6);
    box-shadow: 0 0 40px rgba(187, 134, 252, 0.6);
}

body[data-theme="dark"] .floating-up-btn:hover {
    box-shadow: 0 0 50px rgba(187, 134, 252, 0.8);
}

body[data-theme="light"] .floating-up-btn {
    background: linear-gradient(135deg, #e63946, #ff8c42);
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.6);
}

body[data-theme="light"] .floating-up-btn:hover {
    box-shadow: 0 0 50px rgba(230, 57, 70, 0.8);
}

body[data-theme="gold"] .floating-up-btn {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
}

body[data-theme="gold"] .floating-up-btn:hover {
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.8);
}

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

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

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 107, 107, 0.6), 0 0 40px rgba(255, 107, 107, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 107, 107, 0.8), 0 0 80px rgba(255, 107, 107, 0.5);
    }
}

@keyframes profileRotate {
    0%, 100% {
        transform: rotateY(0deg) rotateX(0deg);
    }
    50% {
        transform: rotateY(10deg) rotateX(-5deg);
    }
}

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

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding-top: 20px;
    }

    .glowing-title {
        font-size: 42px;
    }

    .subtitle {
        font-size: 16px;
    }

    .profile-3d {
        width: 200px;
        height: 200px;
    }

    .social-links {
        gap: 20px;
    }

    .social-links a {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .stats {
        gap: 20px;
        padding: 40px 15px;
    }

    .miniatures {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .galerie h2,
    .portfolio h2 {
        font-size: 36px;
    }

    .typing-effect {
        font-size: 18px;
    }

    .floating-up-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 40px 20px;
    }

    .glowing-title {
        font-size: 32px;
    }

    .subtitle {
        font-size: 14px;
    }

    .profile-3d {
        width: 150px;
        height: 150px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .stats {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        padding: 12px 10px;
        overflow-x: auto;
    }

    .stat-item {
        min-width: 70px;
        padding: 6px 8px;
        flex-shrink: 0;
    }
    
    .stat-number {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 9px;
    }

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

    .galerie h2,
    .portfolio h2 {
        font-size: 28px;
    }

    .typing-effect {
        font-size: 16px;
    }

    .footer-links {
        gap: 15px;
    }

    .floating-up-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}
