/* MAIN STYLING & RESPONSIVE DESIGN */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Purple Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #533483 0%, #8b5cf6 25%, #7c3aed 50%, #6d28d9 75%, #533483 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    position: relative;
    overflow: hidden;
}

.loading-screen::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    animation: rotate 15s linear infinite;
}

.loading-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(109, 40, 217, 0.3) 0%, transparent 50%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.loading-logo {
    font-size: 5rem;
    margin-bottom: 40px;
    animation: float 3s ease-in-out infinite, fade-in-up 1s ease-out 0.5s both;
    filter: drop-shadow(0 8px 16px rgba(139, 92, 246, 0.4));
    opacity: 0;
    transform: translateY(30px);
}

.progress-bar {
    width: 350px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    opacity: 1;
    transform: translateY(0);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #f0f0f0, #ffffff);
    border-radius: 10px;
    animation: progress 2s ease-in-out 1.5s both, shimmer 2s infinite 1.5s;
    background-size: 200% 100%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    width: 0%;
}

.loading-text {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(139, 92, 246, 0.3);
    font-weight: 500;
    letter-spacing: 1px;
    animation: fade-in-up 1s ease-out 2s both;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Enhanced Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(233, 69, 96, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(233, 69, 96, 0.3);
}

.logo-icon {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(233, 69, 96, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.nav-link[href*="gitlab"] {
    color: #FC6D26;
    font-weight: 600;
    border: 1px solid #FC6D26;
    background: rgba(252, 109, 38, 0.1);
}

.nav-link[href*="gitlab"]:hover {
    background: #FC6D26;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(252, 109, 38, 0.4);
}

/* Main Content */
.main-content {
    margin-top: 70px;
    min-height: calc(100vh - 70px);
}

/* Sections */
.section {
    display: none;
    padding: 40px 0;
}

.section.active {
    display: block;
}

/* Staggered Content Animation */
.section.active .section-header {
    animation: fade-in-up 1s ease-out 0.3s both;
}

.section.active .hero {
    animation: fade-in-up 1s ease-out 0.5s both;
}

.section.active .hero-logo {
    animation: float 3s ease-in-out infinite, fade-in-up 1s ease-out 0.7s both;
}

.section.active .hero-title {
    animation: fade-in-up 1s ease-out 0.9s both;
}

.section.active .hero-subtitle {
    animation: fade-in-up 1s ease-out 1.1s both;
}

.section.active .hero-description {
    animation: fade-in-up 1s ease-out 1.3s both;
}

.section.active .hero-stats {
    animation: fade-in-up 1s ease-out 1.5s both;
}

.section.active .hero-actions {
    animation: fade-in-up 1s ease-out 1.7s both;
}

.section.active .features-grid {
    animation: fade-in-up 1s ease-out 0.5s both;
}

.section.active .feature-card:nth-child(1) {
    animation: fade-in-up 1s ease-out 0.7s both;
}

.section.active .feature-card:nth-child(2) {
    animation: fade-in-up 1s ease-out 0.9s both;
}

.section.active .feature-card:nth-child(3) {
    animation: fade-in-up 1s ease-out 1.1s both;
}

.section.active .feature-card:nth-child(4) {
    animation: fade-in-up 1s ease-out 1.3s both;
}

.section.active .search-container {
    animation: fade-in-up 1s ease-out 0.5s both;
}

.section.active .categories-grid {
    animation: fade-in-up 1s ease-out 0.7s both;
}

.section.active .category-card:nth-child(1) {
    animation: fade-in-up 1s ease-out 0.9s both;
}

.section.active .category-card:nth-child(2) {
    animation: fade-in-up 1s ease-out 1.1s both;
}

.section.active .category-card:nth-child(3) {
    animation: fade-in-up 1s ease-out 1.3s both;
}

.section.active .category-card:nth-child(4) {
    animation: fade-in-up 1s ease-out 1.5s both;
}

.section.active .links-container {
    animation: fade-in-up 1s ease-out 0.7s both;
}

.section.active .link-card {
    animation: fade-in-up 1s ease-out 0.9s both;
}

.section.active .comments-container {
    animation: fade-in-up 1s ease-out 0.5s both;
}

.section.active .form-card {
    animation: fade-in-up 1s ease-out 0.7s both;
}

.section.active .comments-list {
    animation: fade-in-up 1s ease-out 0.9s both;
}

.section.active .about-content {
    animation: fade-in-up 1s ease-out 0.5s both;
}

/* Fresh Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e94560 0%, #533483 50%, #FC6D26 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(233, 69, 96, 0.3);
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero Section */
.hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1), rgba(83, 52, 131, 0.1));
    border-radius: 20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-logo {
    font-size: 6rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #e94560 0%, #533483 50%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(233, 69, 96, 0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 50px;
    opacity: 0.85;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(233, 69, 96, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: bold;
    color: #e94560;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(233, 69, 96, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Clean Professional Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e94560, #533483);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.2);
    letter-spacing: 0.5px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.35);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #e94560, #533483);
    color: #ffffff;
    border: 2px solid transparent;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-icon {
    font-size: 1.2rem;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: scale(1.1);
}

/* Enhanced Animations */
@keyframes bounce-in {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    80% {
        transform: scale(0.9);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes slide-up {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(233, 69, 96, 0.8);
    }
    50% {
        box-shadow: 0 0 30px rgba(233, 69, 96, 0.6);
    }
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Enhanced Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.05), rgba(83, 52, 131, 0.05));
    border-radius: 20px;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.25);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(233, 69, 96, 0.3);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #e94560;
    position: relative;
    z-index: 2;
}

/* Enhanced Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(233, 69, 96, 0.05));
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.15), transparent);
    transition: left 0.6s ease;
    transform: skewX(-15deg);
}

.category-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(83, 52, 131, 0.15), transparent);
    transition: right 0.6s ease;
    transform: skewX(15deg);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(233, 69, 96, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(233, 69, 96, 0.1));
    border-color: rgba(233, 69, 96, 0.4);
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover::after {
    right: 100%;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(233, 69, 96, 0.3));
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(2deg); }
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #e94560;
    position: relative;
    z-index: 2;
    text-shadow: 0 3px 6px rgba(233, 69, 96, 0.4);
    font-weight: 700;
}

.category-count {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ffffff;
    background: rgba(233, 69, 96, 0.2);
    padding: 5px 12px;
    border-radius: 15px;
    display: inline-block;
}

/* Enhanced Links Container */
.links-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px 0;
}

/* Premium Link Cards */
.link-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(233, 69, 96, 0.04));
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.2), transparent);
    transition: left 0.5s ease;
}

.link-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(233, 69, 96, 0.08));
    border-color: rgba(233, 69, 96, 0.3);
}

.link-card:hover::before {
    left: 100%;
}

.link-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #e94560;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(233, 69, 96, 0.3);
    font-weight: 600;
}

.link-card p {
    margin-bottom: 20px;
    opacity: 0.85;
    color: #ffffff;
    font-size: 1.1rem;
    line-height: 1.6;
}

.link-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(255, 152, 0, 0.1));
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    font-size: 1rem;
    color: #ffc107;
    text-align: center;
    backdrop-filter: blur(5px);
    animation: warning-pulse 2s ease-in-out infinite;
}

@keyframes warning-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Enhanced View Controls */
.view-controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.view-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn.active {
    background: linear-gradient(135deg, #e94560, #533483);
    border-color: #e94560;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.view-btn:hover {
    background: rgba(233, 69, 96, 0.15);
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-2px);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #e94560;
}

.category-count {
    opacity: 0.7;
    margin-bottom: 15px;
}

/* Comments Section */
.comments-container {
    max-width: 800px;
    margin: 0 auto;
}

.warning-section {
    margin-bottom: 40px;
}

.warning-card {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-title {
    color: #ffc107;
    margin-bottom: 10px;
}

.warning-text {
    opacity: 0.9;
    line-height: 1.6;
}

.form-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #e94560;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.comments-list {
    margin-top: 40px;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #e94560;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Enhanced Logo Images */
.loading-logo-img {
    width: 120px;
    height: 120px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(233, 69, 96, 0.3));
}

.nav-logo-img {
    width: 60px;
    height: 60px;
    margin-right: 15px;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(233, 69, 96, 0.3));
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    margin-right: 20px;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(233, 69, 96, 0.3));
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(233, 69, 96, 0.3));
}

/* Fresh Modern Footer */
.footer {
    background: linear-gradient(135deg, rgba(15, 15, 30, 0.95), rgba(26, 26, 46, 0.95));
    border-top: 1px solid rgba(233, 69, 96, 0.2);
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer:hover::before {
    left: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #e94560;
    text-shadow: 0 2px 4px rgba(233, 69, 96, 0.3);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-section a:hover {
    color: #e94560;
    opacity: 1;
    background: rgba(233, 69, 96, 0.1);
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-btn:hover {
    background: rgba(233, 69, 96, 0.2);
    border-color: #e94560;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    color: #ffffff;
}

/* Enhanced Search */
.search-container {
    display: flex;
    max-width: 500px;
    margin: 0 auto 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-input {
    flex: 1;
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1rem;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-input:focus {
    outline: none;
}

.search-btn {
    padding: 15px 25px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: rgba(233, 69, 96, 0.2);
    transform: scale(1.05);
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

/* Category Detail Header */
.category-detail-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-detail-header .section-title {
    margin-bottom: 15px;
}

.category-detail-header .section-subtitle {
    margin-bottom: 30px;
}

/* View Controls */
.view-controls {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.view-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: #e94560;
    border-color: #e94560;
}

.view-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.view-btn.active:hover {
    background: #e94560;
}

/* Links Container */
.links-container {
    display: grid;
    gap: 20px;
}

/* Link Cards */
.link-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.link-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #e94560;
}

.link-card p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.link-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 10px;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #ffc107;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-logo {
        font-size: 4rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .warning-card {
        flex-direction: column;
        text-align: center;
    }

    .form-actions {
        flex-direction: column;
    }
}
