/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Cursor */
.pirate-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

.pirate-cursor::before {
    content: '☠️';
    position: absolute;
    top: -15px;
    left: -5px;
    font-size: 12px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
}

.nav-logo i {
    margin-right: 10px;
    animation: spin 3s linear infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ff6b6b;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b6b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-notes i {
    position: absolute;
    font-size: 2rem;
    color: white;
    animation: float 6s ease-in-out infinite;
}

.floating-notes i:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.floating-notes i:nth-child(2) { top: 60%; left: 80%; animation-delay: 1s; }
.floating-notes i:nth-child(3) { top: 30%; left: 70%; animation-delay: 2s; }
.floating-notes i:nth-child(4) { top: 80%; left: 20%; animation-delay: 3s; }
.floating-notes i:nth-child(5) { top: 50%; left: 50%; animation-delay: 4s; }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.pirate-text {
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInRight 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #feca57;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pirate-avatar {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

/* Removed glasses and text overlay from main avatar */

/* Avatar Image Styles */
.avatar-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.avatar-image:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: #feca57;
    animation: orbit 8s linear infinite;
    top: 40%;
    left: 40%;
    transform-origin: 0 0;
}

.floating-icons i:nth-child(1) { animation-delay: 0s; }
.floating-icons i:nth-child(2) { animation-delay: 2.67s; }
.floating-icons i:nth-child(3) { animation-delay: 5.33s; }

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b6b;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.about-features {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Music Section */
.music {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.music .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.music-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.music-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.music-cover {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    cursor: pointer;
    overflow: hidden;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 2rem;
}

.music-cover:hover .play-overlay {
    opacity: 1;
}

.music-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.music-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Memes Section */
.memes {
    padding: 100px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    position: relative;
    overflow: hidden;
}

.memes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="20" fill="rgba(255,255,255,0.1)">😂🔥💯⚡🎮</text></svg>') repeat;
    opacity: 0.1;
    animation: float 20s linear infinite;
}

.memes .section-title {
    color: white;
    -webkit-text-fill-color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.memes-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.memes-intro p {
    font-size: 1.3rem;
    color: white;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.meme-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.meme-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.meme-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

.meme-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.meme-image {
    margin-bottom: 1rem;
}

.meme-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 3rem;
    color: white;
    overflow: hidden;
}

.dota-meme {
    background: linear-gradient(135deg, #c41e3a, #8b0000);
}

.gaming-meme {
    background: linear-gradient(135deg, #4a90e2, #357abd);
}

.pirate-meme {
    background: linear-gradient(135deg, #2c3e50, #34495e);
}

.viral-meme {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.meme-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.meme-placeholder:hover .meme-text {
    opacity: 1;
}

.meme-top, .meme-bottom {
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.meme-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: bold;
}

.meme-card p {
    color: #666;
    font-size: 1rem;
}

/* Meme Quotes */
.meme-quotes {
    margin-bottom: 4rem;
}

.meme-quotes h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: transform 0.3s ease;
}

.quote-card:hover {
    transform: translateY(-5px);
}

.quote-card i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.quote-card p {
    font-size: 1.1rem;
    font-style: italic;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.quote-card span {
    color: #666;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Meme Generator */
.meme-generator {
    text-align: center;
}

.meme-generator h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-meme {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    margin-bottom: 2rem;
}

.btn-meme:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.6);
}

.generated-meme {
    max-width: 400px;
    margin: 0 auto;
}

.meme-template {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 2rem;
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.meme-template::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.meme-template:hover::before {
    transform: translateX(100%);
}

.meme-top-text, .meme-bottom-text {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0.5rem 0;
}

.meme-icon {
    font-size: 4rem;
    margin: 1rem 0;
    animation: bounce 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meme-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    animation: bounce 2s infinite;
}

/* Real Images Section */
.real-images-section {
    margin-bottom: 4rem;
}

.real-images-section h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.real-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.real-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.real-image-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.real-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.real-image-card:hover .real-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.real-image-card:hover .image-overlay {
    transform: translateY(0);
}

.image-overlay span {
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #ff6b6b;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalImageAppear 0.3s ease-out;
}

.modal-caption {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

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

/* Serega Pirate Meme Art */
.serega-meme-art {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.serega-face {
    width: 120px;
    height: 120px;
    background: #fdbcb4;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serega-face::before {
    content: '🕶️';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    z-index: 2;
}

.serega-face::after {
    content: '😏';
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Twitch Emote Style */
.twitch-emote {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #9146ff, #772ce8);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0.5rem;
    animation: emoteFloat 2s ease-in-out infinite;
    box-shadow: 0 5px 15px rgba(145, 70, 255, 0.3);
}

/* YouTube Play Button Style */
.youtube-play {
    width: 80px;
    height: 80px;
    background: #ff0000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube-play:hover {
    transform: scale(1.1);
}

.youtube-play::before {
    content: '▶️';
}

/* Dota 2 Hero Icons */
.dota-hero {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #c41e3a, #8b0000);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.25rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 3px 10px rgba(196, 30, 58, 0.4);
    animation: heroGlow 3s ease-in-out infinite;
}

/* Meme Text Bubbles */
.meme-bubble {
    background: white;
    border: 3px solid #333;
    border-radius: 20px;
    padding: 1rem;
    margin: 1rem;
    position: relative;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.meme-bubble::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid white;
}

.meme-bubble::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #333;
}

/* Serega Signature Styles */
.serega-signature {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2rem;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: rotate(-5deg);
    margin: 1rem;
    animation: signatureGlow 2s ease-in-out infinite;
}

/* Stream Overlay Style */
.stream-overlay {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin: 0.5rem;
    border: 2px solid #9146ff;
    animation: streamPulse 1.5s ease-in-out infinite;
}

/* Achievements Section */
.achievements {
    padding: 100px 0;
    background: #f8f9fa;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.achievement-card:hover::before {
    left: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.achievement-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.achievement-card p {
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.gallery .section-title {
    color: white;
    -webkit-text-fill-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.8), rgba(254, 202, 87, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    text-align: center;
}

.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;
}

/* Enhanced Gallery Styles */
.gallery-item {
    position: relative;
}

.gallery-item::before {
    content: attr(data-tooltip);
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-item:hover::before {
    opacity: 1;
}

.art-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-placeholder:hover .art-overlay {
    opacity: 1;
}

/* Studio Art */
.studio-art {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.sound-waves {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 40px;
}

.sound-waves span {
    width: 4px;
    background: white;
    border-radius: 2px;
    animation: soundWave 1s ease-in-out infinite;
}

.sound-waves span:nth-child(1) { height: 20px; animation-delay: 0s; }
.sound-waves span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.sound-waves span:nth-child(3) { height: 40px; animation-delay: 0.2s; }
.sound-waves span:nth-child(4) { height: 25px; animation-delay: 0.3s; }
.sound-waves span:nth-child(5) { height: 30px; animation-delay: 0.4s; }

/* Work Art */
.work-art {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
}

.music-notes {
    font-size: 2rem;
    color: white;
    animation: musicFloat 3s ease-in-out infinite;
}

/* Gaming Art */
.gaming-art {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.game-elements {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 80%;
}

.hp-bar, .mana-bar {
    height: 8px;
    border-radius: 4px;
    position: relative;
    background: rgba(255, 255, 255, 0.3);
}

.hp-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 85%;
    background: #e74c3c;
    border-radius: 4px;
    animation: barFill 2s ease-in-out infinite;
}

.mana-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    background: #3498db;
    border-radius: 4px;
    animation: barFill 2s ease-in-out infinite 0.5s;
}

.level {
    color: #f1c40f;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
}

/* Performance Art */
.performance-art {
    background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.stage-lights {
    display: flex;
    gap: 10px;
}

.stage-lights span {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    animation: stageLights 1.5s ease-in-out infinite;
}

.stage-lights span:nth-child(1) { animation-delay: 0s; }
.stage-lights span:nth-child(2) { animation-delay: 0.5s; }
.stage-lights span:nth-child(3) { animation-delay: 1s; }

/* Album Art */
.album-art {
    background: linear-gradient(135deg, #2c3e50, #4a6741);
}

.vinyl-record {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #1a1a1a;
    position: relative;
    animation: spin 3s linear infinite;
}

.record-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ff6b6b;
}

/* Fan Art */
.fanart-art {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

.paint-splashes {
    display: flex;
    gap: 5px;
}

.paint-splashes span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: paintSplash 2s ease-in-out infinite;
}

.paint-splashes span:nth-child(1) {
    background: #ff6b6b;
    animation-delay: 0s;
}
.paint-splashes span:nth-child(2) {
    background: #4ecdc4;
    animation-delay: 0.3s;
}
.paint-splashes span:nth-child(3) {
    background: #feca57;
    animation-delay: 0.6s;
}

/* Sticker Art */
.sticker-art {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 10px;
}

.sticker-image {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 10px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.sticker-image:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.5));
}

/* Gallery Images */
.real-photo-art {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 0;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.1);
}

.image-overlay-gallery {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.image-overlay-gallery span {
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* Stickers Section */
.stickers-section {
    margin-bottom: 4rem;
}

.stickers-section h3 {
    text-align: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stickers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.sticker-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sticker-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sticker-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.sticker-card:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

.sticker-display {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.sticker-card:hover .sticker-display {
    transform: scale(1.2) rotate(10deg);
}

.sticker-card span {
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
}

/* Gallery Stats */
.gallery-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-visual {
    text-align: center;
    color: white;
}

.stat-visual i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #feca57;
    animation: pulse 2s infinite;
}

.stat-visual .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-visual .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: white;
}

/* Meme Showcase */
.meme-showcase {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.meme-showcase h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.meme-elements {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meme-elements .meme-bubble {
    background: white;
    color: #333;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    border-radius: 15px;
    border: 2px solid #333;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    animation: bubbleBounce 2s ease-in-out infinite;
}

.meme-elements .meme-bubble:nth-child(even) {
    animation-delay: 0.5s;
}

.meme-elements .twitch-emote {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0.25rem;
}

/* Visual Memes */
.visual-memes {
    margin-top: 3rem;
    text-align: center;
}

.visual-memes h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.visual-meme {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.visual-meme:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.visual-meme::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.visual-meme:hover::before {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

/* Honest Reaction Meme */
.honest-reaction .meme-face {
    position: relative;
    width: 80px;
    height: 80px;
    background: #fdbcb4;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.honest-reaction .sunglasses {
    position: absolute;
    top: 20%;
    font-size: 2rem;
    z-index: 2;
}

.honest-reaction .mouth {
    position: absolute;
    bottom: 25%;
    font-size: 1.5rem;
}

/* Size Meme */
.size-meme .size-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.size-meme .ruler {
    font-size: 3rem;
    animation: measureBounce 2s ease-in-out infinite;
}

.size-meme .arrow {
    font-size: 2rem;
    animation: pointRight 1.5s ease-in-out infinite;
}

/* Leg Meme */
.leg-meme {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.leg-meme .question-mark {
    font-size: 3rem;
    animation: questionFloat 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.leg-meme .leg {
    font-size: 2.5rem;
    animation: legShake 1s ease-in-out infinite;
}

/* Team Spirit Meme */
.team-spirit {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
}

.team-spirit .trophy {
    font-size: 3rem;
    animation: trophyGlow 2s ease-in-out infinite;
    margin-bottom: 0.5rem;
}

.team-spirit .team-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.5rem;
}

.team-spirit .meme-caption {
    color: white;
}

/* Meme Captions */
.meme-caption {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ff6b6b;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b6b;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ff6b6b;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Floating Music Player */
.floating-player {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 1rem;
    color: white;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    min-width: 300px;
}

.floating-player.active {
    transform: translateY(0);
    opacity: 1;
}

.player-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.player-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.player-info i {
    color: #ff6b6b;
    animation: pulse 2s infinite;
}

.player-controls {
    display: flex;
    gap: 10px;
}

.player-controls button {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.player-controls button:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.player-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #feca57);
    width: 0%;
    animation: progress 30s linear infinite;
}

/* Animations */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

@keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes soundWave {
    0%, 100% { height: 20px; }
    50% { height: 40px; }
}

@keyframes musicFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes barFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 85%; }
}

@keyframes stageLights {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes paintSplash {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(180deg); }
}

@keyframes emoteFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes heroGlow {
    0%, 100% { box-shadow: 0 3px 10px rgba(196, 30, 58, 0.4); }
    50% { box-shadow: 0 5px 20px rgba(196, 30, 58, 0.8); }
}

@keyframes signatureGlow {
    0%, 100% { text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); }
    50% { text-shadow: 2px 2px 8px rgba(255, 107, 107, 0.6); }
}

@keyframes streamPulse {
    0%, 100% { border-color: #9146ff; }
    50% { border-color: #ff6b6b; }
}

@keyframes bubbleBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes measureBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes pointRight {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(10px); }
}

@keyframes questionFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

@keyframes legShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

@keyframes trophyGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .pirate-avatar {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }

    .floating-player {
        right: 10px;
        left: 10px;
        min-width: auto;
    }

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

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

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

    .gallery-stats {
        gap: 2rem;
    }

    .meme-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}
