:root {
    /* Cyberpunk color palette - dark theme by default */
    --bg-primary: #0a0a1b;
    --bg-secondary: #15152d;
    --text-primary: #ffffff;
    --text-secondary: #8a8aa3;
    --accent-primary: #00a8ff;
    --accent-secondary: #ff2e63;
    --accent-tertiary: #08d9d6;
    --shadow-color: rgba(0, 168, 255, 0.2);
    --card-bg: rgba(20, 20, 50, 0.7);
    --dock-bg: rgba(10, 10, 30, 0.7);
}

/* Light theme colors */
[data-theme="light"] {
    --bg-primary: #f2f2fd;
    --bg-secondary: #e6e6f5;
    --text-primary: #252a34;
    --text-secondary: #454555;
    --shadow-color: rgba(0, 0, 30, 0.1);
    --card-bg: rgba(255, 255, 255, 0.8);
    --dock-bg: rgba(240, 240, 250, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    transition: background-color 0.3s ease;
}

/* Custom cursor and mouse follower */
.mouse-follower {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
    backdrop-filter: blur(2px);
}

/* Parallax background layers */
.parallax-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
}

.layer-1 {
    background-image: url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3540&q=80');
    opacity: 0.2;
    transform: translateZ(-10px) scale(2);
}
.layer-2 {
    background-image: linear-gradient(to bottom, transparent, var(--bg-primary)), 
                      url('https://images.unsplash.com/photo-1537498425277-c283d32ef9db?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2978&q=80');
    opacity: 0.3;
    transform: translateZ(-5px) scale(1.5);
}

.layer-3 {
    background: radial-gradient(circle at center, transparent 70%, var(--bg-primary));
    background-size: 100% 100%;
    opacity: 0.8;
}

/* Theme toggle button */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 0 15px var(--shadow-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.theme-toggle i {
    color: var(--accent-primary);
    font-size: 1.2rem;
}

/* Header styles */
header {
    padding: 3rem 5% 2rem;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.logo img {
    height: 60px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-primary);
}

.tagline {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Main content sections */
main {
    padding: 0 5% 150px;
    max-width: 1400px;
    margin: 0 auto;
}

section {
    margin-bottom: 5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.accent {
    color: var(--accent-primary);
    position: relative;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 3px;
}

/* Hero section */
.hero {
    text-align: center;
    padding: 6rem 0;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 168, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 168, 255, 0.5);
}

/* Services cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow-color);
}

.card-icon {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Showcase section */
.showcase-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab {
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    background-color: var(--card-bg);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.tab:hover {
    background-color: rgba(0, 168, 255, 0.1);
}

.tab.active {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Gallery styling */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--shadow-color);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video section */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.video-placeholder {
    background-color: var(--card-bg);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 3rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Shows section */
.shows-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.show-item {
    display: flex;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.show-date {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    padding: 1.5rem;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    min-width: 100px;
    justify-content: center;
}

.show-info {
    padding: 1.5rem;
}

.show-info h3 {
    margin-bottom: 0.5rem;
}

.show-info p {
    color: var(--text-secondary);
}

/* News section */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-item {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.news-item h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.news-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Testimonials */
.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
}

.quote {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote i {
    color: white;
}

.testimonial p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    text-align: right;
    font-weight: 600;
}

/* macOS style dock */
.dock-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.dock {
    display: flex;
    background-color: var(--dock-bg);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dock-item {
    position: relative;
    margin: 0 5px;
    transition: transform 0.2s;
}

.dock-item a {
    display: block;
    position: relative;
}

.dock-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.dock-item:hover {
    transform: translateY(-10px);
}

.dock-item:hover img {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tooltip {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--card-bg);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dock-item:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Footer styles */
footer {
    background-color: var(--bg-secondary);
    padding: 4rem 5% 2rem;
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.footer-section i {
    margin-right: 10px;
    color: var(--accent-primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--card-bg);
    color: var(--accent-primary);
    font-size: 1.2rem;
    transition: transform 0.3s, background 0.3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .hero h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    main {
        padding: 0 5% 120px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .dock-item img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 2rem 5%;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .card-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .dock {
        padding: 8px;
    }
    
    .dock-item img {
        width: 40px;
        height: 40px;
    }
    
    .show-date {
        padding: 1rem;
        min-width: 80px;
    }
}

@media (max-width: 576px) {
    .logo h1 {
        font-size: 2rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
    }
    
    .showcase-tabs {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tab {
        margin: 5px;
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .dock-item {
        margin: 0 3px;
    }
    
    .dock-item img {
        width: 35px;
        height: 35px;
        border-radius: 8px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 168, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(0, 168, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 168, 255, 0); }
}

.card-icon {
    animation: pulse 2s infinite;
}

.dock-item:nth-child(odd) {
    animation: float 4s ease-in-out infinite;
}

.dock-item:nth-child(even) {
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
}

