        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #000000, #1a0000, #000000);
            color: white;
            min-height: 100vh;
            overflow-x: hidden;
            padding-bottom: 80px;
        }
        
        .cosmic-wave {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: radial-gradient(circle at center, rgba(255, 0, 0, 0.1) 0%, transparent 70%);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            padding-bottom: 100px;
        }
        
        .profile-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .avatar {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid rgba(255, 0, 0, 0.1);
            margin-bottom: 1rem;
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .tagline {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 1.5rem;
        }
        
        .about-text {
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
            text-align: center;
        }
        
        .about-text p {
            margin-bottom: 1rem;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .socials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-card {
            background: rgba(255, 0, 0, 0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 0, 0, 0.1);
            color: white;
            text-decoration: none;
        }
        
        .social-icon {
            color: #ff0000;
            transition: color 0.3s ease;
        }

        .social-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
            background: rgba(255, 0, 0, 0.2);
        }
        
        .social-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .social-username {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .skill-card {
            background: rgba(255, 0, 0, 0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 0, 0, 0.1);
        }
        
        .skill-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
            background: rgba(255, 0, 0, 0.15);
            border-color: rgba(255, 0, 0, 0.3);
        }

        .skill-card .fa-language {
            color: #ff0000; 
            transition: color 0.3s ease;
        }

        .skill-card:hover .fa-language {
            color: #ff3333;
        }
        
        .skill-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #ff0000;
        }
        
        .skill-name {
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .skill-level {
            font-size: 0.8rem;
            opacity: 0.8;
        }
        
        .nav-tabs {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            z-index: 10;
            height: 70px;
        }
        
        .tab-buttons-row {
            display: flex;
            justify-content: center;
            gap: 15px;
            height: 100%;
            align-items: center;
        }
        
        .tab-btn {
            background: transparent;
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active {
            background: rgba(255, 0, 0, 0.2);
            color: #ff0000;
        }
        
        .tab-btn:hover {
            background: rgba(255, 0, 0, 0.1);
        }
        
        .discord-widget {
            position: fixed;
            right: 20px;
            bottom: 90px;
            width: 300px;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #ff0000;
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        .discord-widget.minimized {
            width: 50px;
            height: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            bottom: 20px;
        }
        
        .discord-widget.minimized .widget-content {
            display: none;
        }
        
        .discord-widget.minimized .discord-icon {
            display: block;
            font-size: 24px;
            color: #ff0000;
        }
        
        .discord-icon {
            display: none;
        }
        
        .widget-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .discord-logo {
            width: 24px;
            height: 24px;
            margin-right: 10px;
        }
        
        .widget-title {
            font-weight: bold;
            color: white;
        }
        
        .user-status {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .status-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 8px;
        }
        
        .status-idle {
            background-color: #faa61a;
        }
        
        .status-online {
            background-color: #3ba55c;
        }
        
        .status-dnd {
            background-color: #ed4245;
        }
        
        .status-offline {
            background-color: #747f8d;
        }
        
        .user-info {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
        }
        
        .username {
            color: white;
            font-weight: bold;
        }
        
        .discriminator {
            color: #b9bbbe;
        }
        
        .activity {
            background: rgba(0, 0, 0, 0.7);
            border-radius: 4px;
            padding: 10px;
            margin-top: 10px;
        }
        
        .activity-title {
            color: #b9bbbe;
            font-size: 12px;
            margin-bottom: 5px;
        }
        
        .activity-content {
            display: flex;
            align-items: center;
        }
        
        .activity-icon {
            width: 50px;
            height: 50px;
            border-radius: 4px;
            margin-right: 10px;
            background-size: cover;
        }
        
        .activity-details {
            flex: 1;
        }
        
        .activity-name {
            color: white;
            font-weight: bold;
            font-size: 14px;
        }
        
        .activity-state {
            color: #b9bbbe;
            font-size: 12px;
            margin-top: 3px;
        }
        
        .activity-type {
            color: #b9bbbe;
            font-size: 12px;
            margin-top: 5px;
            display: flex;
            align-items: center;
        }
        
        .activity-type i {
            margin-right: 5px;
        }
        
        .close-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            color: #b9bbbe;
            cursor: pointer;
            font-size: 14px;
        }
        
        .music-player {
            position: fixed;
            right: 20px;
            bottom: 170px;
            width: 300px;
            background: rgba(0, 0, 0, 0.9);
            border-radius: 8px;
            padding: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border-left: 4px solid #ff0000;
            z-index: 100;
            transition: all 0.3s ease;
            color: white;
        }
        
        .music-player.minimized {
            width: 50px;
            height: 50px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            bottom: 20px;
        }
        
        .music-player.minimized .player-content {
            display: none;
        }
        
        .music-player.minimized .music-icon {
            display: block;
            font-size: 24px;
            color: #ff0000;
        }
        
        .music-icon {
            display: none;
        }
        
        .player-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            justify-content: space-between;
        }
        
        .player-title {
            font-weight: bold;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .player-title i {
            margin-right: 10px;
            color: #ff0000;
        }
        
        .song-info {
            margin-bottom: 15px;
        }
        
        .song-title {
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .song-artist {
            font-size: 14px;
            color: #b9bbbe;
        }
        
        .player-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .control-btn {
            background: rgba(255, 0, 0, 0.1);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .control-btn:hover {
            background: rgba(255, 0, 0, 0.2);
        }
        
        .control-btn.play-pause {
            width: 50px;
            height: 50px;
            background: #ff0000;
        }
        
        .control-btn.play-pause:hover {
            background: #ff3333;
            transform: scale(1.05);
        }
        
        .progress-container {
            margin-bottom: 15px;
        }
        
        .progress-bar {
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            cursor: pointer;
            margin-bottom: 5px;
        }
        
        .progress {
            height: 100%;
            background: #ff0000;
            border-radius: 5px;
            width: 0%;
        }
        
        .time-info {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: #b9bbbe;
        }
        
        .volume-control {
            display: flex;
            align-items: center;
            margin-top: 10px;
        }
        
        .volume-control i {
            margin-right: 10px;
            color: #b9bbbe;
            font-size: 14px;
        }
        
        .volume-slider {
            flex: 1;
            -webkit-appearance: none;
            height: 5px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 5px;
            outline: none;
        }
        
        .volume-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #ff0000;
            cursor: pointer;
        }
        
        .close-music-btn {
            color: #b9bbbe;
            cursor: pointer;
            font-size: 14px;
        }

        .cv-button {
            display: inline-block;
            margin-top: 2rem;
            padding: 12px 24px;
            background: rgba(255, 0, 0, 0.2);
            color: white;
            border: 1px solid rgba(255, 0, 0, 0.3);
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .cv-button:hover {
            background: rgba(255, 0, 0, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
        }

        .cv-button i {
            margin-right: 8px;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .project-card {
            background: rgba(255, 0, 0, 0.1);
            border-radius: 10px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            height: 500px;
        }

        .project-image {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .project-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .project-role {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
        }

        .project-description-container {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 15px;
            padding-right: 10px;
        }

        .project-description {
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .project-links {
            display: flex;
            gap: 10px;
        }

        .project-link {
            padding: 6px 12px;
            background: rgba(255, 0, 0, 0.2);
            color: white;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s ease;
        }

        .project-link:hover {
            background: rgba(255, 0, 0, 0.3);
        }

        .project-description-container::-webkit-scrollbar {
            width: 6px;
        }

        .project-description-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
        }

        .project-description-container::-webkit-scrollbar-thumb {
            background: rgba(255, 0, 0, 0.3);
            border-radius: 3px;
        }

        .project-description-container::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 0, 0, 0.5);
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 80px;
            }
            
            .container {
                padding: 1rem;
                padding-bottom: 100px;
            }
            
            .nav-tabs {
                height: 60px;
            }
            
            .tab-btn {
                width: 45px;
                height: 45px;
                font-size: 1.1rem;
            }
            
            .socials-grid, .skills-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
            
            .avatar {
                width: 120px;
                height: 120px;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .discord-widget, .music-player {
                width: calc(100% - 40px);
                right: 20px;
                left: 20px;
                bottom: 80px;
            }
            
            .discord-widget.minimized, .music-player.minimized {
                bottom: 20px;
                width: 50px;
                height: 50px;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .project-card {
                height: auto;
            }

            .project-description-container {
                overflow-y: visible;
            }
        }