:root {
    --primary-color: #1a237e;
    --secondary-color: #0a0a0a;
    --accent-color: #7c4dff;
    --text-color: #ffffff;
    --background-color: #1a237e;
    --gradient-1: linear-gradient(135deg, #1a237e 0%, #0a0a0a 100%);
    --gradient-2: linear-gradient(45deg, #7c4dff, #4a148c);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--gradient-1);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 35, 126, 0.85);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(124, 77, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(124, 77, 255, 0.1);
}

.navbar:hover {
    background: rgba(26, 35, 126, 0.95);
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(10, 10, 10, 0.9)),
                url('https://images.unsplash.com/photo-1542751371-adc38448a05e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 0 1rem;
    position: relative;
    overflow: hidden;
}

.logo-large {
    margin-bottom: 2rem;
    position: relative;
}

.logo-large img {
    width: 200px;
    height: auto;
    animation: floatLogo 3s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(159, 122, 234, 0.5));
}


@keyframes floatLogo {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

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

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.btn.primary {
    background: var(--gradient-2);
    color: var(--text-color);
    border: none;
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

/* Team and Management Section Base Styles */
.team-section, .management-section {
    padding: 80px 2rem;
    background: var(--gradient-1);
    position: relative;
}

.team-section::before, .management-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.team-grid, .management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 1rem;
}

.team-grid .team-member, .management-grid .team-member {
    width: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(26, 35, 126, 0.4);
    border-radius: 15px;
    padding: 1.2rem 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(124, 77, 255, 0.2);
    box-shadow: 0 8px 32px rgba(26, 35, 126, 0.3);
}

.team-grid .member-image, .management-grid .member-image {
    width: 130px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border: 2px solid var(--accent-color);
}

.team-grid .member-image img, .management-grid .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-grid h3, .management-grid h3 {
    font-size: 1.3rem;
    margin: 0.4rem 0;
    text-align: center;
}

.team-grid .role, .management-grid .role {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-grid .player-stats, .management-grid .manager-info {
    padding: 1rem;
    font-size: 0.95rem;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 10px;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

@media (max-width: 768px) {
    .team-grid, .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-grid .team-member, .management-grid .team-member {
        min-height: 360px;
    }

    .team-grid .member-image, .management-grid .member-image {
        width: 110px;
        height: 160px;
    }

    .team-grid h3, .management-grid h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .team-grid, .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .team-grid .team-member, .management-grid .team-member {
        min-height: 340px;
        padding: 1rem;
    }

    .team-grid .member-image, .management-grid .member-image {
        width: 100px;
        height: 140px;
    }

    .team-grid h3, .management-grid h3 {
        font-size: 1.1rem;
    }

    .team-grid .role, .management-grid .role {
        font-size: 0.9rem;
    }

    .team-grid .player-stats, .management-grid .manager-info {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

.member-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--accent-color);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3, .management-member h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.role {
    font-size: 1rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: var(--text-color);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 77, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

/* Desktop Hover Effects */
@media (min-width: 769px) {
    .team-member:hover, .management-member:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 20px rgba(124, 77, 255, 0.15);
    }

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

    .team-member:hover .player-stats, 
    .management-member:hover .manager-info {
        background: rgba(124, 77, 255, 0.2);
    }

    .social-links a:hover {
        transform: translateY(-3px);
        background: var(--accent-color);
        color: white;
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .team-section, .management-section {
        padding: 60px 1rem;
    }

    .team-grid, .management-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .team-member, .management-member {
        padding: 1.2rem;
    }

    .member-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
    }

    .team-member h3, .management-member h3 {
        font-size: 1.2rem;
    }

    .role {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .player-stats, .manager-info {
        padding: 0.8rem;
        font-size: 0.85rem;
        margin: 0.8rem 0;
    }

    .social-links {
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .social-links a {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .team-section, .management-section {
        padding: 40px 1rem;
    }

    .team-grid, .management-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .team-member, .management-member {
        max-width: 300px;
        margin: 0 auto;
        padding: 1rem;
    }

    .member-image {
        width: 140px;
        height: 140px;
    }

    .team-member:active, .management-member:active {
        transform: scale(0.98);
    }

    .social-links a:active {
        transform: scale(0.95);
        background: var(--accent-color);
        color: white;
    }
}

/* About Section */
.about-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1a237e, #0a0a0a);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(159, 122, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(107, 70, 193, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    text-align: left;
}

/* About Stats Section */
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.9;
    color: var(--text-color);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0.5rem;
        margin-top: 1rem;
    }

    .stat-item {
        padding: 0.8rem;
        min-height: 90px;
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }

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

@media (max-width: 480px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
        padding: 0.3rem;
    }

    .stat-item {
        padding: 0.6rem;
        min-height: 80px;
        border-radius: 8px;
    }

    .stat-number {
        font-size: 1.3rem;
        margin-bottom: 0.2rem;
    }

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

/* Store Section */
.store-section {
    padding: 2rem 1rem;
    background: linear-gradient(135deg, #1a237e 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.store-grid {
    display: flex;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.5rem;
}

.store-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.store-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.store-item:hover .store-image img {
    transform: scale(1.05);
}

.store-content {
    padding: 1rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.store-content h3 {
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.store-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.store-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.8rem;
    width: 100%;
}

.price {
    color: var(--accent-color);
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(124, 77, 255, 0.3);
}

.order-info {
    text-align: center;
    margin: 0.3rem 0;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-info p {
    margin: 0.2rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.store-item .btn {
    width: 100%;
    padding: 0.6rem;
    font-size: 0.9rem;
    border-radius: 20px;
    background: var(--accent-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.store-item .btn:hover {
    background: var(--text-color);
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.store-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

@media (max-width: 768px) {
    .store-section {
        padding: 1.5rem 1rem;
    }

    .store-grid {
        max-width: 250px;
    }

    .store-image {
        height: 200px;
    }

    .store-content {
        padding: 0.8rem;
    }

    .store-content h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .order-info {
        padding: 0.5rem;
    }

    .order-info p {
        font-size: 0.8rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a237e, #0a0a0a);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(26, 35, 126, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 77, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.contact-option:hover {
    background: rgba(159, 122, 234, 0.2);
    transform: translateY(-3px);
    border-color: var(--accent-color);
}

.contact-option i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.contact-option span {
    font-size: 0.9rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(159, 122, 234, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(159, 122, 234, 0.3);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-btn {
    background: var(--gradient-2);
    color: var(--text-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .contact-info,
    .contact-form-container {
        padding: 1.5rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-option {
        padding: 1.2rem;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .contact-option i {
        margin-bottom: 0;
        font-size: 1.2rem;
    }

    .contact-option span {
        font-size: 1rem;
    }

    .contact-item {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-option {
        padding: 1rem;
    }

    .contact-item {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .contact-item i {
        font-size: 1rem;
    }
}

@media (hover: none) {
    .contact-option:hover,
    .contact-item:hover {
        transform: none;
    }
}

/* Remove Google form container styles */
.google-form-container {
    display: none;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    z-index: 1001;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
}

.mobile-menu-btn.active {
    background: var(--accent-color);
}

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

.mobile-menu-btn.active i {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 1rem;
        background-color: rgba(0, 0, 0, 0.9);
        justify-content: space-between;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: rgba(124, 77, 255, 0.2);
        border: none;
        border-radius: 12px;
        cursor: pointer;
        padding: 8px;
        backdrop-filter: blur(8px);
        transition: all 0.3s ease;
        border: 1px solid rgba(124, 77, 255, 0.1);
    }

    .mobile-menu-btn:hover {
        background: rgba(124, 77, 255, 0.3);
        transform: scale(1.05);
    }

    .mobile-menu-btn span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--accent-color);
        margin: 2px 0;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

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

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

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

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: auto;
        background: rgba(26, 35, 126, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-radius: 0 0 0 20px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.2);
        border-left: 1px solid rgba(124, 77, 255, 0.2);
        border-bottom: 1px solid rgba(124, 77, 255, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
        width: 100%;
        text-align: left;
        border-radius: 12px;
        background: rgba(124, 77, 255, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .nav-links a::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--accent-color);
        border-radius: 50%;
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(124, 77, 255, 0.2);
        padding-left: 1.5rem;
    }

    .nav-links a:hover::before {
        opacity: 1;
        transform: scale(1);
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
}

@media (max-width: 480px) {
    .mobile-menu-btn {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .mobile-menu-btn span {
        width: 20px;
    }

    .nav-links {
        width: 90%;
        padding: 1.5rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
}

/* Enhanced Animations */
@keyframes glow {
    0% { box-shadow: 0 0 5px var(--accent-color); }
    50% { box-shadow: 0 0 20px var(--accent-color); }
    100% { box-shadow: 0 0 5px var(--accent-color); }
}

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

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Apply animations to elements */
.hero-content h1 {
    animation: float 3s ease-in-out infinite;
}

.team-member {
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    transition: transform 0.3s ease;
}

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

.team-member .social-links a {
    transition: all 0.3s ease;
}

.team-member .social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    color: var(--accent-color);
}

.store-item {
    transition: all 0.3s ease;
}

.store-item:hover {
    transform: translateY(-10px);
}

.store-item img {
    transition: transform 0.3s ease;
}

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

.contact-form input,
.contact-form textarea {
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.2);
}

.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 77, 255, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100%;
}

/* Enhanced scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced hover effects */
.team-member .role {
    transition: all 0.3s ease;
}

.team-member:hover .role {
    color: var(--accent-color);
    transform: translateX(5px);
}

.store-item .price {
    transition: all 0.3s ease;
}

.store-item:hover .price {
    color: var(--accent-color);
    transform: scale(1.1);
}

/* Add loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 77, 255, 0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

/* Enhanced social media icons */
.social-links a {
    transition: all 0.3s ease;
    position: relative;
}

.social-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.social-links a:hover::before {
    width: 100%;
}

/* Player and Management Section Animations */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(124, 77, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(124, 77, 255, 0.4);
    }
}

.team-member, .management-member {
    transition: all 0.4s ease;
}

.team-member:hover, .management-member:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px rgba(124, 77, 255, 0.2);
}

.member-image {
    transition: all 0.5s ease;
}

.team-member:hover .member-image, .management-member:hover .member-image {
    transform: scale(1.05);
    animation: glowPulse 2s infinite;
}

.player-stats, .manager-info {
    transition: all 0.3s ease;
}

.team-member:hover .player-stats, .management-member:hover .manager-info {
    background: rgba(124, 77, 255, 0.15);
    transform: translateY(-5px);
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(8deg);
    color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Add staggered animation for team members */
.team-grid > *, .management-grid > * {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.team-grid > *:nth-child(1), .management-grid > *:nth-child(1) { animation-delay: 0.1s; }
.team-grid > *:nth-child(2), .management-grid > *:nth-child(2) { animation-delay: 0.2s; }
.team-grid > *:nth-child(3), .management-grid > *:nth-child(3) { animation-delay: 0.3s; }
.team-grid > *:nth-child(4), .management-grid > *:nth-child(4) { animation-delay: 0.4s; }
.team-grid > *:nth-child(5), .management-grid > *:nth-child(5) { animation-delay: 0.5s; }
.team-grid > *:nth-child(6), .management-grid > *:nth-child(6) { animation-delay: 0.6s; }

/* Role badge animation */
.role {
    position: relative;
    overflow: hidden;
}

.role::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* News Section */
.news-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85), rgba(10, 10, 26, 0.95));
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(26, 35, 126, 0.1) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite;
    z-index: 0;
}

.news-section h2 {
    text-align: center;
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.news-card {
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(124, 77, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.news-card:hover {
    transform: translateY(-10px);
    background: rgba(10, 10, 26, 0.8);
    border-color: rgba(124, 77, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.news-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.news-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(124, 77, 255, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.news-badge i {
    font-size: 1rem;
}

.news-content {
    padding: 1.5rem;
}

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

.news-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.news-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.news-link i {
    transition: transform 0.3s ease;
}

.news-link:hover i {
    transform: translateX(5px);
}

/* Add animation delay for each card */
.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 4rem 1.5rem;
    }

    .news-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 1.2rem;
    }

    .news-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 3rem 1rem;
    }

    .news-section h2 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

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

    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 1.5rem;
    }

    .news-header h3 {
        font-size: 1.4rem;
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

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

/* Logo Size Updates for Mobile Devices */
@media (max-width: 768px) {
    .logo img {
        height: 90px;
        width: auto;
        transition: all 0.3s ease;
    }

    .logo-large img {
        width: 350px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 80px;
        width: auto;
    }

    .logo-large img {
        width: 300px;
        height: auto;
    }
}