/* Dark Mystery Design - Based on the Image */
:root {
    --primary-color: #ff0080;
    --secondary-color: #1a1a1a;
    --accent-color: #ff1493;
    --text-color: #ffffff;
    --text-light: #cccccc;
    --bg-color: #000000;
    --card-bg: #0a0a0a;
    --border-color: #ff0080;
    --shadow-light: rgba(255, 0, 128, 0.2);
    --shadow-medium: rgba(255, 0, 128, 0.4);
    --success-color: #10b981;
    --discord-color: #5865f2;
    --nav-bg: #000000;
    --nav-border: #ff0080;
    --gradient-primary: linear-gradient(135deg, #ff0080, #ff1493);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    --gradient-accent: linear-gradient(135deg, #ff1493, #ff69b4);
    --gradient-bg: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Dark Mystery Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Pattern Group Image Background */
        url('/assets/Pattern Group.png') center center / cover no-repeat,
        /* Blue Hue Overlay */
        linear-gradient(135deg, 
            rgba(59, 130, 246, 0.2) 0%, 
            rgba(37, 99, 235, 0.1) 25%, 
            rgba(29, 78, 216, 0.2) 50%, 
            rgba(30, 64, 175, 0.1) 75%, 
            rgba(30, 58, 138, 0.2) 100%),
        /* Dark Base */
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.9) 0%, 
            rgba(0, 0, 0, 0.85) 50%, 
            rgba(0, 0, 0, 0.9) 100%);
    z-index: -1;
    filter: brightness(0.2) contrast(1.2);
}

/* Main Container */
.main-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

/* Hero Section */
.hero-section {
    width: 90%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    background: transparent;
    overflow: hidden;
    border: 2px solid var(--border-color);
    margin: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    padding: 2rem;
    gap: 3rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: patternGlow 8s ease-in-out infinite;
}

@keyframes patternGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Image Frame */
.image-frame {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/g5.jpeg') center center / cover no-repeat;
    z-index: -1;
    animation: imageGlow 10s ease-in-out infinite;
}

@keyframes imageGlow {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

/* Hero Content */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
    padding: 2rem;
}

/* Main Text */
.main-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.english-name {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
    letter-spacing: -2px;
    line-height: 1;
    animation: textGlow 3s ease-in-out infinite;
    position: relative;
}

@keyframes textGlow {
    0%, 100% { 
        text-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 50px rgba(255, 0, 128, 1);
        transform: scale(1.02);
    }
}

.japanese-name {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 25px rgba(255, 0, 128, 0.6);
    letter-spacing: 2px;
    line-height: 1;
    animation: japaneseGlow 4s ease-in-out infinite;
    position: relative;
    -webkit-text-stroke: 1px var(--primary-color);
    -webkit-text-fill-color: transparent;
}

@keyframes japaneseGlow {
    0%, 100% { 
        text-shadow: 0 0 25px rgba(255, 0, 128, 0.6);
        transform: scale(1);
    }
    50% { 
        text-shadow: 0 0 40px rgba(255, 0, 128, 0.8);
        transform: scale(1.01);
    }
}

/* Subtitle */
.subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 2rem;
    opacity: 0.8;
    animation: subtitleFade 5s ease-in-out infinite;
}

@keyframes subtitleFade {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    color: var(--text-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
    backdrop-filter: blur(10px);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
    transition: left 0.6s ease;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.5);
    background: rgba(255, 0, 128, 0.1);
}

.action-btn:hover::before {
    left: 100%;
}

.action-btn i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.action-btn:hover i {
    transform: scale(1.2);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        width: 95%;
        height: auto;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
    }
    
    .image-frame {
        width: 100%;
        height: 300px;
    }
    
    .english-name {
        font-size: 3.5rem;
    }
    
    .japanese-name {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .image-frame {
        height: 250px;
    }
    
    .english-name {
        font-size: 3rem;
    }
    
    .japanese-name {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

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

.hero-content {
    animation: fadeInUp 1.5s ease-out;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 0, 128, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-accent);
} 

/* Navbar Styles for Dark Mystery Theme */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    gap: 0.2rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.8);
    transition: all 0.3s ease;
}

.brand-name:hover {
    text-shadow: 0 0 30px rgba(255, 0, 128, 1);
    transform: scale(1.05);
}

.dev-name {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--text-color);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
    transform: translateY(-2px);
}

.nav-links a:hover i {
    transform: scale(1.2);
    color: var(--primary-color);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a.active {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.8);
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
}

.nav-links a.active i {
    color: var(--primary-color);
}

.nav-links a.active::before {
    width: 80%;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
    background: rgba(255, 0, 128, 0.1);
}

.cta-button:hover i {
    transform: scale(1.1);
}

.cta-button:hover::before {
    left: 100%;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    border: none;
    background: transparent;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 2px solid var(--primary-color);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .cta-button {
        display: none;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.8rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .dev-name {
        font-size: 0.7rem;
    }
}

/* Projects Page Specific Layout */
.projects-main-container {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.projects-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.2);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.projects-title {
    margin-bottom: 0;
}

.projects-title .english-name {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-color);
    text-shadow: 0 0 30px rgba(255, 0, 128, 0.8);
    margin-bottom: 0.3rem;
    letter-spacing: 2px;
}

.projects-title .japanese-name {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.6);
    letter-spacing: 1px;
}

.projects-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: 1px;
}

/* Updated Project Grid for Better Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem;
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
}

/* RPG Project Card Styles - Wider and Slimmer */
.rpg-project {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

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

.rpg-project:hover::before {
    left: 100%;
}

.rpg-project:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.4);
}

/* Project Header - More Compact */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.project-title h2 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.project-level {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

.project-icon {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
}

/* Project Description - More Compact */
.project-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Project Footer - More Compact */
.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
}

.tech-badges {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.tech-badges i {
    color: var(--primary-color);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tech-badges i:hover {
    transform: scale(1.2);
    color: var(--accent-color);
}

.project-actions {
    display: flex;
    gap: 0.4rem;
}

.rpg-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    color: var(--text-color);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
    backdrop-filter: blur(10px);
}

.rpg-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
    transition: left 0.6s ease;
}

.rpg-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
    background: rgba(255, 0, 128, 0.1);
}

.rpg-btn:hover::before {
    left: 100%;
}

.rpg-btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.rpg-btn:hover i {
    transform: scale(1.1);
}

/* View Info Button Specific Styles */
.rpg-btn.view-info {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--primary-color);
}

.rpg-btn.view-info:hover {
    background: rgba(255, 0, 128, 0.2);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.6);
}

/* Contact Page Icon Styles */
.project-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
    transition: all 0.3s ease;
}

.project-icon i:hover {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.8);
}

/* Responsive Design for Projects */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 1.2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .projects-main-container {
        padding-top: 100px;
        padding-bottom: 1rem;
    }
    
    .projects-header {
        margin-bottom: 1.5rem;
        padding: 1.2rem;
        max-width: 90%;
    }
    
    .projects-title .english-name {
        font-size: 2rem;
    }
    
    .projects-title .japanese-name {
        font-size: 1.1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 1rem;
    }
    
    .rpg-project {
        padding: 1rem;
        min-height: 180px;
    }
    
    .project-header {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
    
    .project-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .project-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .projects-main-container {
        padding-top: 90px;
    }
    
    .projects-header {
        padding: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .projects-title .english-name {
        font-size: 1.8rem;
    }
    
    .projects-title .japanese-name {
        font-size: 1rem;
    }
    
    .rpg-project {
        padding: 0.8rem;
        min-height: 160px;
    }
    
    .project-title h2 {
        font-size: 1.2rem;
    }
    
    .project-description {
        font-size: 0.85rem;
    }
    
    .rpg-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
} 

/* Review Page Specific Styles */
.reviews-carousel {
    position: relative;
    width: 100%;
    margin: 1rem 0;
}

.reviews-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews-list::-webkit-scrollbar {
    display: none;
}

.review-item {
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 8px;
    padding: 1rem;
    min-width: 250px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

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

.reviewer-name {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star, .star-empty {
    font-size: 0.8rem;
    color: var(--primary-color);
}

.star-empty {
    opacity: 0.3;
}

.review-text {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.review-date {
    color: var(--text-light);
    font-size: 0.75rem;
    opacity: 0.7;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 128, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 0, 128, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -16px;
}

.carousel-btn.next {
    right: -16px;
}

.carousel-btn i {
    font-size: 0.8rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 0, 128, 0.2);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.1);
    position: relative;
    overflow: hidden;
}

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

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.form-control:focus::before {
    left: 100%;
}

.form-control::placeholder {
    color: var(--text-light);
    opacity: 0.5;
    font-style: italic;
}

.form-control:focus::placeholder {
    opacity: 0.3;
    transform: translateX(5px);
}

.form-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Star Rating Enhanced */
.star-rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.3rem;
    justify-content: center;
    padding: 1rem;
    background: rgba(255, 0, 128, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 128, 0.2);
    margin-top: 0.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 1.8rem;
    color: rgba(255, 0, 128, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(255, 0, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.star-rating label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
    transition: left 0.4s ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.8);
    transform: scale(1.1);
}

.star-rating label:hover::before,
.star-rating label:hover ~ label::before,
.star-rating input:checked ~ label::before {
    left: 100%;
}

/* Form Container Enhancement */
.review-form {
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.1);
    position: relative;
    overflow: hidden;
}

.review-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 20, 147, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: formGlow 8s ease-in-out infinite;
}

@keyframes formGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Submit Button Enhancement */
.review-form .rpg-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
    background: rgba(255, 0, 128, 0.15);
    border-width: 2px;
    position: relative;
    overflow: hidden;
}

.review-form .rpg-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.3), transparent);
    transition: left 0.6s ease;
}

.review-form .rpg-btn:hover {
    background: rgba(255, 0, 128, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 0, 128, 0.6);
}

.review-form .rpg-btn:hover::before {
    left: 100%;
}

.review-form .rpg-btn i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* Textarea Specific Styling */
.form-control[rows] {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-control[rows]:focus {
    min-height: 140px;
}

/* Input Focus Animation */
.form-control:focus {
    animation: inputFocus 0.3s ease-out;
}

@keyframes inputFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Form Group Hover Effect */
.form-group:hover .form-label {
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
}

/* Responsive Form Enhancements */
@media (max-width: 768px) {
    .review-form {
        padding: 1.2rem;
    }
    
    .form-control {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .star-rating label {
        font-size: 1.5rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .review-form {
        padding: 1rem;
    }
    
    .form-control {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .star-rating {
        padding: 0.8rem;
        gap: 0.2rem;
    }
    
    .star-rating label {
        font-size: 1.3rem;
    }
} 

/* Review Log Styles */
.review-log-list {
    max-height: 500px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(0, 0, 0, 0.3);
}

.review-log-list::-webkit-scrollbar {
    width: 6px;
}

.review-log-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.review-log-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.review-log-item {
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 6px;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
}

.log-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.reviewer-tag {
    background: rgba(255, 0, 128, 0.2);
    color: var(--text-color);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.log-rating {
    display: flex;
    gap: 0.1rem;
}

.log-star {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.log-date {
    color: var(--text-light);
    font-size: 0.75rem;
    opacity: 0.7;
}

.log-text {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

.empty-log {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    opacity: 0.6;
}

.empty-log i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.no-reviews {
    text-align: center;
    color: var(--text-light);
    opacity: 0.6;
    font-style: italic;
}

.disclaimer {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    color: var(--text-light);
    font-size: 0.8rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 0, 128, 0.2);
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .review-item {
        min-width: 200px;
        padding: 0.8rem;
    }
    
    .carousel-btn {
        width: 28px;
        height: 28px;
    }
    
    .carousel-btn.prev {
        left: -14px;
    }
    
    .carousel-btn.next {
        right: -14px;
    }
    
    .star-rating label {
        font-size: 1.3rem;
    }
    
    .review-log-list {
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .review-item {
        min-width: 180px;
        padding: 0.6rem;
    }
    
    .reviewer-name {
        font-size: 0.8rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .carousel-btn {
        width: 24px;
        height: 24px;
    }
    
    .carousel-btn.prev {
        left: -12px;
    }
    
    .carousel-btn.next {
        right: -12px;
    }
} 

/* About Page Specific Styles */
.role-title {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
}

/* Profile Icon Fix for About Page */
.project-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.project-icon img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
}

/* Character Stats Styles */
.character-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.stat-row:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.4);
    transform: translateX(5px);
}

.stat-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 80px;
}

.stat-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.stat-value {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    flex-grow: 1;
}

.stat-bar {
    width: 60px;
    height: 8px;
    background: rgba(255, 0, 128, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    animation: statFill 2s ease-out;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

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

/* Achievement Styles */
.achievement-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.achievement-card {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
}

.achievement-card.evil {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.3);
}

.achievement-card.evil:hover {
    background: rgba(255, 0, 128, 0.15);
    border-color: rgba(255, 0, 128, 0.5);
}

.achievement-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 0, 128, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.achievement-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

.achievement-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.achievement-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    font-style: italic;
}

.achievement-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.achievement-source {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.achievement-points {
    color: var(--accent-color);
    font-weight: 600;
    background: rgba(255, 20, 147, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

/* Tech Stack Styles */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.tech-item:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
    transition: all 0.3s ease;
}

.tech-item:hover i {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.8);
}

.tech-item span {
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for About */
@media (max-width: 768px) {
    .stat-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .stat-label {
        min-width: auto;
    }
    
    .stat-bar {
        width: 100%;
        height: 6px;
    }
    
    .tech-stack {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .tech-item {
        padding: 0.8rem;
    }
    
    .tech-item i {
        font-size: 1.5rem;
    }
    
    .achievement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .achievement-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .role-title {
        font-size: 1.1rem;
    }
    
    .stat-row {
        padding: 0.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-value {
        font-size: 0.85rem;
    }
    
    .tech-stack {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .tech-item {
        padding: 0.6rem;
    }
    
    .tech-item i {
        font-size: 1.3rem;
    }
    
    .tech-item span {
        font-size: 0.8rem;
    }
    
    .achievement-text {
        font-size: 0.85rem;
    }
    
    .achievement-footer {
        flex-direction: column;
        gap: 0.3rem;
    }
} 

/* Scorcher6 Page Specific Styles */

/* Enhanced Swiper Carousel Styles */
.characterSwiper {
    width: 100%;
    height: 600px; /* Increased height for more content */
    margin: 1rem 0;
    padding: 0 2rem;
    position: relative;
    overflow: visible;
}

.characterSwiper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(255, 0, 128, 0.05));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.characterSwiper:hover::before {
    opacity: 1;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Removed .swiper-slide-active transform scale */

.character-card {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), rgba(255, 0, 128, 0.03));
    border: 2px solid rgba(255, 0, 128, 0.25);
    border-radius: 16px;
    padding: 1.8rem;
    width: 100%;
    max-width: 450px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    height: 550px; /* Increased height for more content */
    position: relative;
    overflow: hidden;
}

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

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

.character-card:hover {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.15), rgba(255, 0, 128, 0.08));
    border-color: rgba(255, 0, 128, 0.5);
    transform: translateY(-8px); /* Removed scale effect */
    box-shadow: 
        0 0 30px rgba(255, 0, 128, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2);
}

.character-image {
    width: 100%;
    height: 300px; /* Increased height for better proportion */
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 128, 0.4);
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.1), rgba(255, 0, 128, 0.05));
}

.character-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.character-card:hover .character-image::before {
    opacity: 1;
}

.character-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.character-card:hover .character-image img {
    transform: scale(1.05); /* Reduced scale effect */
    filter: brightness(1.05) contrast(1.1);
}

.character-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    flex-grow: 1;
}

.character-info h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 0, 128, 0.6);
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.character-card:hover .character-info h3 {
    text-shadow: 0 0 25px rgba(255, 0, 128, 0.8);
    /* Removed transform scale */
}

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

.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.08), rgba(255, 0, 128, 0.03));
    border-radius: 8px;
    border: 1px solid rgba(255, 0, 128, 0.25);
    min-height: 55px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.stat:hover::before {
    left: 100%;
}

.stat:hover {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.15), rgba(255, 0, 128, 0.08));
    border-color: rgba(255, 0, 128, 0.4);
    transform: translateX(3px);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.2);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat:hover .stat-label {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
}

.stat-value {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
    flex-grow: 1;
    margin-left: 1rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.stat:hover .stat-value {
    color: var(--text-color);
    font-weight: 700;
}

/* Enhanced Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.15), rgba(255, 0, 128, 0.08));
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 128, 0.4);
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.swiper-button-next::before,
.swiper-button-prev::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.2), rgba(255, 0, 128, 0.1));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.25), rgba(255, 0, 128, 0.15));
    transform: scale(1.15) translateY(-2px);
    box-shadow: 
        0 0 25px rgba(255, 0, 128, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 128, 0.6);
}

.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
    opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    transform: scale(1.1);
}

/* Enhanced Pagination */
.swiper-pagination {
    bottom: -30px !important;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    position: relative;
    overflow: hidden;
}

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

.swiper-pagination-bullet:hover::before {
    left: 100%;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 
        0 0 15px rgba(255, 0, 128, 0.6),
        0 0 8px rgba(255, 0, 128, 0.4);
    background: linear-gradient(45deg, var(--primary-color), rgba(255, 0, 128, 0.8));
}

.swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Team Grid Styles - Changed to Horizontal Scroll */
.team-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 128, 0.5) rgba(255, 0, 128, 0.1);
}

.team-grid::-webkit-scrollbar {
    height: 8px;
}

.team-grid::-webkit-scrollbar-track {
    background: rgba(255, 0, 128, 0.1);
    border-radius: 4px;
}

.team-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(255, 0, 128, 0.5), rgba(255, 0, 128, 0.3));
    border-radius: 4px;
    transition: all 0.3s ease;
}

.team-grid::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(90deg, rgba(255, 0, 128, 0.7), rgba(255, 0, 128, 0.5));
}

.team-member {
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 12px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 250px; /* Fixed width for consistent cards */
    max-width: 250px;
    height: 350px; /* Fixed height */
    flex-shrink: 0; /* Prevent shrinking */
    position: relative;
    overflow: hidden;
}

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

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: rgba(255, 0, 128, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 0, 128, 0.4);
}

.member-image {
    width: 100%;
    height: 60%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 128, 0.3);
    flex-shrink: 0;
    position: relative;
}

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

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

.member-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
}

.member-info h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 0 8px rgba(255, 0, 128, 0.5);
    text-align: center;
}

.member-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    font-style: italic;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design for Scorcher6 */
@media (max-width: 1024px) {
    .team-member {
        min-width: 220px;
        max-width: 220px;
        height: 320px;
        padding: 1rem;
    }
    
    .member-info h4 {
        font-size: 1rem;
    }
    
    .member-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .characterSwiper {
        height: 550px;
        padding: 0 1rem;
    }
    
    .character-card {
        padding: 1.4rem;
        max-width: 400px;
        height: 500px;
        gap: 1.2rem;
    }
    
    .character-image {
        height: 250px;
        border-radius: 10px;
    }
    
    .character-info h3 {
        font-size: 1.3rem;
    }
    
    .stat {
        padding: 0.8rem;
        min-height: 50px;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-value {
        font-size: 0.9rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1.1rem;
    }
    
    .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px !important;
    }
    
    .team-member {
        min-width: 200px;
        max-width: 200px;
        height: 300px;
        padding: 0.8rem;
    }
    
    .member-image {
        height: 55%;
    }
    
    .member-info h4 {
        font-size: 0.95rem;
    }
    
    .member-info p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .characterSwiper {
        height: 500px;
        padding: 0 0.5rem;
    }
    
    .character-card {
        padding: 1.2rem;
        max-width: 350px;
        height: 450px;
        gap: 1rem;
    }
    
    .character-image {
        height: 200px;
        border-radius: 8px;
    }
    
    .character-info h3 {
        font-size: 1.2rem;
    }
    
    .stat {
        padding: 0.7rem;
        min-height: 45px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-value {
        font-size: 0.85rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 3px !important;
    }
    
    .team-member {
        min-width: 180px;
        max-width: 180px;
        height: 280px;
        padding: 0.6rem;
    }
    
    .member-image {
        height: 50%;
    }
    
    .member-info h4 {
        font-size: 0.9rem;
    }
    
    .member-info p {
        font-size: 0.7rem;
    }
} 

/* Project Modal Styles */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    overflow: hidden;
    position: relative;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.3);
}

.project-modal.active .modal-content {
    transform: scale(1);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1) 0%, 
        rgba(255, 20, 147, 0.05) 50%, 
        rgba(255, 0, 128, 0.1) 100%);
    border-radius: 18px;
    z-index: -1;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(255, 0, 128, 0.3);
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1) 0%, 
        rgba(255, 20, 147, 0.05) 100%);
}

.modal-header h2 {
    color: var(--text-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-color);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--primary-color);
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

.modal-close i {
    transition: transform 0.3s ease;
}

.modal-close:hover i {
    transform: rotate(90deg);
}

.modal-body {
    padding: 2rem;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 0, 128, 0.1);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

.modal-project-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.modal-project-image {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    position: relative;
}

.modal-project-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.2) 0%, 
        rgba(255, 20, 147, 0.1) 100%);
    z-index: 1;
}

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

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

.modal-project-details {
    flex: 1;
}

.modal-project-level {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-project-details p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-tech-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.modal-tech-stack i {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
    transition: all 0.3s ease;
}

.modal-tech-stack i:hover {
    color: var(--accent-color);
    transform: scale(1.2);
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.7);
}

.modal-stats {
    margin-bottom: 2rem;
}

.modal-stats h3 {
    color: var(--text-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.stat-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.2);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 0, 128, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.2);
}

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

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

.stat-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 0, 128, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 4px;
    transition: width 1s ease;
    position: relative;
}

.stat-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: shimmer 2s infinite;
}

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

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 0, 128, 0.3);
}

.modal-actions .rpg-btn {
    min-width: 120px;
    justify-content: center;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 95%;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 1.5rem;
        max-height: 75vh;
    }

    .modal-project-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .modal-project-image {
        width: 100%;
        height: 120px;
    }

    .modal-tech-stack {
        gap: 0.8rem;
    }

    .modal-tech-stack i {
        font-size: 1.3rem;
    }

    .modal-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .modal-actions .rpg-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        max-height: 98%;
    }

    .modal-header {
        padding: 1rem 1rem 0.8rem;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body {
        padding: 1rem;
        max-height: 80vh;
    }

    .modal-project-image {
        height: 100px;
    }

    .modal-project-details p {
        font-size: 0.9rem;
    }

    .modal-stats h3 {
        font-size: 1.1rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .stat-value {
        font-size: 0.8rem;
    }
} 