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

body {
    background: #0a0a0a;
    color: #eee;
    font-family: 'Jersey 10', monospace;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Navbar */
header.navbar {

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    backdrop-filter: blur(5px);
}

/* Hamburger menu button for mobile */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
    position: relative;
}

.nav-toggle .bar {
    display: block;
    width: 28px;
    height: 4px;
    margin: 5px 0;
    background: #ff2b2b;
    border-radius: 2px;
    transition: 0.3s;
}

header .logo {
    font-size: 2.5rem;
    text-decoration: none;
    color: #ff2b2b;
    font-weight: bold;
}

/* Nav-links container for hamburger menu */
header .nav-links {
    display: flex;
    align-items: center;
}

header .nav-links a {
    color: #eee;
    font-size: 1.5rem;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

header .nav-links a:hover,
header .nav-links a.active {
    color: #ff2b2b;
}

/* Profile link - giriş yapılmazsa gizli */
#profileLink {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        overflow-y: auto;
    }

    header.navbar {
        padding: 10px 20px;
    }

    header .nav-links a {
        font-size: 1rem;
        padding: 6px 10px;
    }
}

@media (max-width: 600px) {
    .nav-toggle {
        display: block;
    }

    header .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        background: rgba(0, 0, 0, 0.95);
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px 10px 10px 20px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 12px 12px;
        z-index: 99;
        animation: fadeInMenu 0.3s;
    }

    header .nav-links.open {
        display: flex;
    }

    header .nav-links a {
        margin: 12px 0;
        margin-left: 0 !important;
        font-size: 1.2rem;
    }

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

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

/* Filter Section */
.filterSection {
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 43, 43, 0.2);
}

.filterSection>div {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.filterSection>div:last-child {
    display: flex;
    align-items: flex-end;
    max-width: 150px;
}

.filterSection label {
    display: block;
    color: #ff2b2b;
    font-size: 0.9rem;
    margin-bottom: 5px;
    font-weight: bold;
}

.filterSection input,
.filterSection select {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 43, 43, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Jersey 10', monospace;
    font-size: 1rem;
    transition: all 0.3s;
}

.filterSection input:focus,
.filterSection select:focus {
    outline: none;
    border-color: #ff2b2b;
    background: rgba(255, 43, 43, 0.1);
}

.filterSection select option {
    background: #111;
    color: #fff;
}

.filterSection button {
    padding: 10px 15px;
    background: linear-gradient(135deg, #ff2b2b, #cc0000);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Jersey 10', monospace;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 43, 43, 0.3);
    width: 100%;
    white-space: nowrap;
}

.filterSection button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 43, 43, 0.5);
}

#portfolioContainer {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 300px));
    gap: 20px;
    justify-content: center;
}

.noResults {
    text-align: center;
    color: #999;
    font-size: 1.2rem;
    padding: 40px;
    grid-column: 1 / -1;
}

.pfCard {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s;
    position: relative;
    /* For badge positioning */
}

.pfCard:hover {
    transform: scale(1.03);
}

/* New Version Badge for Portfolio Cards */
.new-version-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-weight: bold;
    font-size: 0.7rem;
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* Card Image Wrapper */
.card-image-wrapper {
    position: relative;
    width: 100%;
}

/* Image Count Badge */
.image-count-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 6px 10px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: bold;
    border-radius: 8px;
    border: 1px solid rgba(255, 43, 43, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.pfCard img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.pfCard h4 {
    margin: 10px;
    color: #ff2b2b;
}

.pfCard p {
    margin: 0 10px 10px;
    color: #ccc;
    font-size: 0.9rem;
}

/* Popup */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Changed from center */
    z-index: 10;
    padding: 0;
    overflow-y: auto;
    /* Allow scrolling in overlay */
}

.popup {
    background: #0a0a0a;
    border: none;
    padding: 0;
    border-radius: 0;
    max-width: 900px;
    width: 100%;
    position: relative;
    animation: fadeIn 0.4s ease;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
    margin: 0 auto;
    /* Center horizontally */
    display: flex;
    flex-direction: column;
    min-height: min-content;
    /* Allow natural height */
}

.popup-header {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
    flex-shrink: 0;
}

/* Image Gallery Container */
.image-gallery {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    transition: opacity 0.3s ease;
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 43, 43, 0.5);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.gallery-nav:hover {
    background: #ff2b2b;
    border-color: #ff2b2b;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 10px;
}

.gallery-next {
    right: 10px;
}

/* Gallery Indicators */
.gallery-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: #ff2b2b;
    width: 30px;
    border-radius: 5px;
}

/* Title Section with Buttons */
.popup-title-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(255, 43, 43, 0.2);
    gap: 20px;
}

.popup-title {
    color: #ff2b2b;
    font-size: 1.8rem;
    margin: 0;
    text-align: center;
    flex: 1;
    font-weight: bold;
}

.popup button.close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 43, 43, 0.5);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 11;
}

.popup button.close:hover {
    background: #ff2b2b;
    transform: rotate(90deg) scale(1.1);
    border-color: #ff2b2b;
}

.popup-content {
    padding: 30px;
    background: #0a0a0a;
}

/* Overlay scrollbar styling */
.overlay::-webkit-scrollbar {
    width: 10px;
}

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

.overlay::-webkit-scrollbar-thumb {
    background: rgba(255, 43, 43, 0.6);
    border-radius: 5px;
}

.overlay::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 43, 43, 0.8);
}

.popup-meta {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 43, 43, 0.2);
}

.meta-left {
    display: flex;
    justify-content: flex-start;
}

.meta-center {
    display: flex;
    justify-content: center;
}

.meta-right {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.popup-meta-item {
    background: rgba(255, 43, 43, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #ff2b2b;
    border: 1px solid rgba(255, 43, 43, 0.3);
}

.github-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #6e40c9, #482b7b);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(110, 64, 201, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.github-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(110, 64, 201, 0.6);
    background: linear-gradient(135deg, #815aca, #5e3ea0);
}

.popup-description {
    color: #ddd;
    line-height: 1.8;
    text-align: left;
    margin-bottom: 25px;
    font-size: 1.05em;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.popup-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 43, 43, 0.05);
    border-radius: 12px;
}

.popup-tech-badge {
    background: linear-gradient(135deg, rgba(255, 43, 43, 0.3), rgba(255, 43, 43, 0.2));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #fff;
    border: 1px solid rgba(255, 43, 43, 0.4);
    transition: all 0.3s;
}

.popup-tech-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 43, 43, 0.3);
}

.popup-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.popup-link {
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff2b2b, #cc0000);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 43, 43, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.popup-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 43, 43, 0.5);
}

/* Google Drive Download Button */
/* Google Drive and VirusTotal Buttons - Next to title */
.google-drive-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #4285f4, #1967d2);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.google-drive-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.6);
    background: linear-gradient(135deg, #5a95f5, #2878e3);
}

.google-drive-btn svg {
    flex-shrink: 0;
}

/* VirusTotal Scan Button */
.virus-total-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #394eff, #1f2a8c);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(57, 74, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.virus-total-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(57, 74, 255, 0.6);
    background: linear-gradient(135deg, #4f63ff, #2838a0);
}

.virus-total-btn svg {
    flex-shrink: 0;
}

/* New Version Label - On image */
.new-version-label {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.6);
    z-index: 11;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    animation: pulse 2s infinite;
    text-align: center;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 3px 10px rgba(255, 107, 53, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.6);
        transform: scale(1.05);
    }
}

footer {
    position: relative;
    margin-top: 40px;
    text-align: center;
    font-size: 1rem;
    color: #555;
    z-index: 2;
}

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

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

/* Mobile Responsive */
@media (max-width: 768px) {

    main {
        padding: 150px 20px 20px 20px;
    }

    h1 {
        font-size: 2rem !important;
    }

    .filterSection {
        flex-direction: column;
        gap: 10px;
    }

    .filterSection>div {
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }

    .filterSection>div:last-child {
        max-width: 100%;
    }

    .filterSection button {
        max-width: 100%;
    }

    #portfolioContainer {
        grid-template-columns: 1fr;
    }

    .popup {
        width: 100%;
        margin: 0;
    }

    .popup-header {
        height: 300px;
    }

    .popup-title-section {
        flex-direction: column;
        padding: 15px 20px;
        gap: 10px;
    }

    .popup-title {
        font-size: 1.3rem;
        order: 1;
    }

    .google-drive-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
        order: 0;
    }

    .virus-total-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
        order: 2;
    }

    .google-drive-btn span,
    .virus-total-btn span {
        display: none;
        /* Hide text on mobile */
    }

    .new-version-label {
        font-size: 0.75rem;
        padding: 6px 12px;
        top: 15px;
        left: 15px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-prev {
        left: 5px;
    }

    .gallery-next {
        right: 5px;
    }

    .gallery-indicators {
        bottom: 10px;
        gap: 6px;
    }

    .indicator {
        width: 8px;
        height: 8px;
    }

    .indicator.active {
        width: 24px;
    }

    .popup-content {
        padding: 20px;
    }

    .popup-meta {
        flex-direction: column;
        gap: 8px;
    }

    .popup button.close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
    }

    .popup-links {
        flex-direction: column;
    }

    .popup-link {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== RATING SYSTEM STYLES ==================== */

/* Portfolio Card Rating Display */
.rating-display {
    padding: 8px 12px;
    margin: 8px 10px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.rating-display .star {
    color: #FFD700;
    font-size: 1rem;
}

.rating-display .star.filled {
    color: #FFD700;
}

.rating-display .star.half {
    color: #FFD700;
    opacity: 0.7;
}

.rating-display .star.empty {
    color: #666;
}

.rating-text {
    color: #ccc;
    font-weight: 500;
}

/* Popup Rating Section */
.rating-section {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.rating-section h3 {
    color: #ff2b2b;
    margin-bottom: 15px;
    font-size: 1.3em;
}

.rating-section h4 {
    color: #fff;
    margin: 20px 0 10px 0;
    font-size: 1.1em;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rating-summary .star {
    color: #FFD700;
    font-size: 1.5rem;
    margin-right: 2px;
}

.rating-summary .rating-text {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Add Rating Form */
.add-rating-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.star-rating-input {
    display: flex;
    gap: 5px;
    margin: 15px 0;
}

.star-input {
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star-input:hover,
.star-input.hover {
    color: #FFD700;
    transform: scale(1.1);
}

.star-input.selected {
    color: #FFD700;
}

.add-rating-form input,
.add-rating-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.add-rating-form input::placeholder,
.add-rating-form textarea::placeholder {
    color: #999;
}

.add-rating-form input:focus,
.add-rating-form textarea:focus {
    outline: none;
    border-color: #ff2b2b;
    box-shadow: 0 0 0 2px rgba(255, 43, 43, 0.2);
}

.add-rating-form textarea {
    resize: vertical;
    min-height: 80px;
    max-height: 150px;
}

.add-rating-form button {
    background: linear-gradient(135deg, #ff2b2b, #d50000);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.add-rating-form button:hover:not(:disabled) {
    background: linear-gradient(135deg, #ff4444, #ff0000);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 43, 43, 0.3);
}

.add-rating-form button:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Comments List */
.comments-list {
    max-height: 400px;
    overflow-y: auto;
}

.comment-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin-bottom: 12px;
    border-radius: 8px;
    border-left: 3px solid #ff2b2b;
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-author {
    font-weight: bold;
    color: #ff2b2b;
}

.comment-rating {
    display: flex;
    gap: 2px;
}

.comment-rating .star {
    color: #FFD700;
    font-size: 0.9rem;
}

.comment-date {
    color: #999;
    font-size: 0.85rem;
    margin-left: auto;
}

.comment-text {
    color: #ddd;
    line-height: 1.4;
    margin-top: 8px;
    font-style: italic;
}

.no-comments,
.error {
    text-align: center;
    color: #999;
    padding: 20px;
    font-style: italic;
}

.error {
    color: #ff6b6b;
}

/* Mobile Responsive for Rating System */
@media (max-width: 768px) {
    .rating-section {
        padding: 15px;
        margin-top: 20px;
    }

    .star-rating-input {
        justify-content: center;
    }

    .star-input {
        font-size: 1.8rem;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .comment-date {
        margin-left: 0;
    }

    .rating-display {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        gap: 5px;
        padding: 6px 10px;
    }

    .rating-display .star {
        font-size: 0.95rem;
    }
}
/* YouTube Button */
.youtube-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.youtube-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
    background: linear-gradient(135deg, #ff3333, #e60000);
}

.youtube-btn svg {
    flex-shrink: 0;
}

