.about-club {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.459);
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.club-info {
    flex: 1;
    color: white;
}

.club-info h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #8c70dc;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.club-info p {
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #ccc;
}

.view-more-btn {
    background: linear-gradient(135deg, #8c70dc, #000000);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(140, 112, 220, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 112, 220, 0.4);
    background: linear-gradient(135deg, #a594e9, #000000);
}

.view-more-btn i {
    transition: transform 0.3s ease;
}

.view-more-btn:hover i {
    transform: translateX(5px);
}

.club-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-logo-img {
    width: 260px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    background: none;
    border: none;
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s cubic-bezier(0.4,0,0.2,1);
}

.about-logo-img:hover {
    transform: scale(1.05) rotateZ(-2deg);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}

/* Remove .logo-3d and its faces */
.logo-3d, .logo-front, .logo-back, .logo-left, .logo-right, .logo-top, .logo-bottom {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .club-info {
        order: 2;
    }

    .club-logo {
        order: 1;
        margin-bottom: 50px;
    }

    .logo-3d {
        width: 250px;
        height: 250px;
    }

    .logo-front {
        transform: translateZ(125px);
    }

    .logo-back {
        transform: translateZ(-125px) rotateY(180deg);
    }

    .logo-left {
        transform: translateX(-125px) rotateY(-90deg);
    }

    .logo-right {
        transform: translateX(125px) rotateY(90deg);
    }

    .logo-top {
        transform: translateY(-125px) rotateX(90deg);
    }

    .logo-bottom {
        transform: translateY(125px) rotateX(-90deg);
    }
}

@media (max-width: 768px) {
    .about-club {
        padding: 50px 0;
    }

    .club-info h2 {
        font-size: 2.5rem;
    }

    .club-info p {
        font-size: 1.1rem;
    }

    .logo-3d {
        width: 200px;
        height: 200px;
    }

    .logo-front {
        transform: translateZ(100px);
    }

    .logo-back {
        transform: translateZ(-100px) rotateY(180deg);
    }

    .logo-left {
        transform: translateX(-100px) rotateY(-90deg);
    }

    .logo-right {
        transform: translateX(100px) rotateY(90deg);
    }

    .logo-top {
        transform: translateY(-100px) rotateX(90deg);
    }

    .logo-bottom {
        transform: translateY(100px) rotateX(-90deg);
    }
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    gap: 20px;
}

.club-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(140, 112, 220, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
    color: #8c70dc;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #8c70dc, #a594e9);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1.1rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

.memories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(140, 112, 220, 0.1), rgba(0, 0, 0, 0.2));
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memories-container {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    text-align: center;
}

.memories-section h2 {
    color: #8c70dc;
    font-size: 2.7rem;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.memories-carousel {
    width: 100vw;
    max-width: 100vw;
    height: 600px;
    position: relative;
    perspective: 1500px;
    margin: 0 auto 35px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.memories-carousel canvas {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

.memories-btn {
    margin-top: 20px;
    font-size: 1.1rem;
    padding: 13px 28px;
    background: linear-gradient(135deg, #8c70dc, #000000);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(140, 112, 220, 0.3);
}

.memories-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140, 112, 220, 0.4);
    background: linear-gradient(135deg, #a594e9, #000000);
}

.memories-btn i {
    transition: transform 0.3s ease;
}

.memories-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .memories-section {
        padding: 50px 0 30px 0;
        min-height: 600px;
    }
    
    .memories-section h2 {
        font-size: 2rem;
    }
    
    .memories-carousel {
        height: 300px;
    }
}

.memories-gallery-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 35px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.memories-gallery-horizontal {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 0;
    width: 100%;
    max-width: 700px;
    min-height: 220px;
    justify-content: center;
    align-items: center;
}

.memory-carousel-img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
    opacity: 0.7;
    cursor: pointer;
    background: #181818;
    flex-shrink: 0;
    z-index: 1;
}

.memory-carousel-img.center {
    width: 180px;
    height: 240px;
    opacity: 1;
    z-index: 2;
    box-shadow: 0 12px 36px rgba(140, 112, 220, 0.18), 0 0 0 4px rgba(140, 112, 220, 0.2);
    transform: scale(1.15);
}

.memory-carousel-img:hover {
    opacity: 1;
    box-shadow: 0 16px 48px rgba(140, 112, 220, 0.22);
    transform: scale(1.08);
}

.memories-arrow {
    background: #8c70dc;
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}

.memories-arrow:hover {
    background: #a594e9;
    transform: scale(1.1);
}

.memories-btn {
    margin-top: 10px;
    font-size: 1.1rem;
    padding: 13px 28px;
}

@media (max-width: 900px) {
    .memories-gallery-horizontal {
        max-width: 98vw;
    }
    .memories-gallery-wrapper {
        max-width: 98vw;
    }
}

@media (max-width: 600px) {
    .memory-carousel-img {
        width: 70px;
        height: 90px;
    }
    .memory-carousel-img.center {
        width: 110px;
        height: 150px;
    }
}

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

.memory-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(140, 112, 220, 0.2);
    transition: all 0.3s ease;
}

.memory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(140, 112, 220, 0.3);
}

.memory-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.memory-item:hover img {
    transform: scale(1.1);
}

.memory-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(140, 112, 220, 0.9), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.memory-item:hover .memory-overlay {
    transform: translateY(0);
}

/* Our Partners Section - Modern & Animated */
.partners-section {
    padding: 5rem 0 3rem 0;
    background: linear-gradient(135deg, rgba(140, 112, 220, 0.08), rgba(0,0,0,0.7));
    position: relative;
    overflow: hidden;
}

/* Animated background particles */
.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(140, 112, 220, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(140, 112, 220, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(140, 112, 220, 0.05) 0%, transparent 60%);
    animation: particleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.partners-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
}

/* Text section with modern styling */
.partners-text {
    max-width: 700px;
}

.partners-text h2 {
    color: #8c70dc;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(140, 112, 220, 0.3);
    position: relative;
    display: inline-block;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(140, 112, 220, 0.3); }
    50% { text-shadow: 0 0 30px rgba(140, 112, 220, 0.6), 0 0 40px rgba(140, 112, 220, 0.3); }
}

.partners-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #8c70dc, transparent);
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 120px; opacity: 0.7; }
}

.partners-text p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 0;
    animation: fadeInText 1s ease-out 0.3s both;
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 0.9; transform: translateY(0); }
}

.partners-grid-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Slider container - transparent background */
.partners-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    background: transparent;
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Partner items - Clean vertical card layout */
.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    flex: 0 0 auto;
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0;
    text-decoration: none;
    color: inherit;
    min-height: 220px;
}

/* Partner logo container */
.partner-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Partner logo styling - Clear B&W by default */
.partner-item img {
    width: auto;
    height: 90px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.5) contrast(1.2);
    transition: all 0.4s ease;
    transform: scale(1);
}

/* Partner info section */
.partner-info {
    width: 100%;
    text-align: center;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Partner name */
.partner-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    transition: color 0.3s ease;
}

/* Partner description */
.partner-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Staggered entrance animation */
.partner-item:nth-child(1) { animation-delay: 0.1s; }
.partner-item:nth-child(2) { animation-delay: 0.2s; }
.partner-item:nth-child(3) { animation-delay: 0.3s; }
.partner-item:nth-child(4) { animation-delay: 0.4s; }
.partner-item:nth-child(5) { animation-delay: 0.5s; }
.partner-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover effects - Simple and clean */
.partner-item:hover {
    transform: translateY(-8px);
    background: rgba(140, 112, 220, 0.1);
    border-color: rgba(140, 112, 220, 0.3);
    box-shadow: 0 8px 25px rgba(140, 112, 220, 0.2);
}

/* Color on hover */
.partner-item:hover img {
    filter: grayscale(0%) brightness(1) contrast(1);
    transform: scale(1.05);
}

.partner-item:hover .partner-name {
    color: #8c70dc;
}

.partner-item:hover .partner-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Remove empty slot styling */
.partner-item.empty { display: none !important; }

/* Hide pagination dots */
.partners-pagination {
    display: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .partners-text h2 {
        font-size: 2.2rem;
    }
    
    .partners-text p {
        font-size: 0.95rem;
    }
    
    .partners-grid {
        gap: 1.5rem;
        padding: 2.5rem 3rem;
    }
    
    .partner-logo {
        height: 80px;
    }
    
    .partner-item img {
        height: 75px;
        max-width: 200px;
    }
    
    .partner-name {
        font-size: 1rem;
    }
    
    .partner-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3.5rem 0 2.5rem 0;
    }
    
    .partners-container {
        padding: 0 1.5rem;
    }
    
    .partners-grid {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2rem 2rem;
        justify-content: center;
    }
    
    .partners-text h2 {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        letter-spacing: 2px;
    }
    
    .partner-logo {
        height: 70px;
    }
    
    .partner-item img {
        height: 65px;
        max-width: 170px;
    }
    
    .partner-item {
        min-height: 200px;
        padding: 1.2rem;
    }
    
    .partner-name {
        font-size: 0.95rem;
    }
    
    .partner-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 3rem 0 2rem 0;
    }
    
    .partners-grid {
        gap: 1.2rem;
        padding: 1.5rem 1.5rem;
    }
    
    .partners-text h2 {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
    
    .partners-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .partner-logo {
        height: 60px;
    }
    
    .partner-item img {
        height: 55px;
        max-width: 140px;
    }
    
    .partner-item {
        padding: 0.8rem;
        min-height: 180px;
    }
    
    .partner-name {
        font-size: 0.9rem;
    }
    
    .partner-description {
        font-size: 0.7rem;
    }
    
    .partners-text h2 {
        font-size: 1.6rem;
    }
    
    .partners-text p {
        font-size: 0.95rem;
    }
}
