/* inter-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/inter-v19-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* inter-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/inter-v19-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: #000000;
            color: #ffffff;
            font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
        }



        .ball {
            width: 125px;
            height: 125px;
            border-radius: 50%;
            box-sizing: border-box;
            will-change: transform;
            position: absolute;
            top: 0;
            left: 0;
          }
        .ball img {
            position: static;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            display: block;
            pointer-events: none;
        }
        /* Header */
        header {
            background-color: #171717;
            border-radius: 32px;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
            flex-wrap: wrap;
            gap: 15px;
        }

        .logo {
            font-size: 24px;
            font-weight: 300;
            letter-spacing: -0.5px;
        }

        nav {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        nav a {
            color: #808080;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #ffffff;
        }

        /* Hero Section */
        .hero {
            background-color: #171717;
            border-radius: 24px;
            display: flex;
            margin-bottom: 8px;
            overflow: hidden;
            position: relative;
            min-height: 280px;
        }

        .hero-image {
            padding: 8px 0 8px 8px;
            flex-shrink: 0;
        }

        .hero-image img {
            width: 200px;
            height: 264px;
            object-fit: cover;
            border-radius: 16px;
        }

        .hero-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .hero-text {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-text p {
            color: #b0b0b0;
            line-height: 1.6;
            font-size: 15px;
            margin-bottom: 20px;
        }

        .hero-social{
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .management {
            color: #808080;
            font-size: 13px;
            line-height: 1.4;
            margin-top: auto;
            margin-bottom: 20px;
        }

        /* Events Section */
        .events {
            background-color: #171717;
            border-radius: 32px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .event-toggle {
            display: flex;
            background-color: #323232;
            border-radius: 20px;
            padding: 4px;
            margin-bottom: 8px;
        }

        .toggle-btn {
            flex: 1;
            padding: 10px;
            background: transparent;
            border: none;
            color: #808080;
            cursor: pointer;
            border-radius: 16px;
            transition: all 0.3s;
            font-size: 14px;
        }

        .toggle-btn.active {
            background-color: #4a4a4a;
            color: #ffffff;
        }

        .event-list {
            display: none;
        }

        .event-list.active {
            display: block;
        }

        .event-item {
            display: flex;
            align-items: center;
            padding: 8px 8px;
            border: 1px solid #262626;
            gap: 16px;
            margin-bottom: 8px;
            border-radius: 16px;
        }

        .event-item:hover {
            background-color: #4a4a4a;
        
        }

        .event-item:last-child {
            border-bottom: none;
        }

        .event-date {
            background-color: #2a2a2a;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 400;
            min-width: 60px;
            text-align: center;
        }

        .event-details {
            flex: 1;
        }

        .event-name {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .event-location {
            color: #808080;
            font-size: 14px;
        }

        .event-link {
            color: #808080;
            text-decoration: none;
            font-size: 20px;
            padding: 5px;
        }

        /* Spotify Embed */
        .spotify-section {
            margin-bottom: 20px;
        }

        .spotify-embed {
            width: 100%;
            border-radius: 12px;
            overflow: hidden;
        }

        /* Social Icons */
        .social {
            background-color: #171717;
            border-radius: 24px;
            padding: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .social-label {
            color: #808080;
            font-size: 14px;
            margin-right: 10px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid #3a3a3a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #808080;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 18px;
        }

        .social-icon:hover {
            background-color: #2a2a2a;
            color: #ffffff;
            border-color: #4a4a4a;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            header {
                padding: 15px 20px;
                justify-content: center;
                text-align: center;
            }

            .logo {
                width: 100%;
                margin-bottom: 10px;
            }

            nav {
                justify-content: center;
                width: 100%;
            }

            .hero {
                flex-direction: column;
                min-height: auto;
            }

            .hero-image {
                padding: 8px;
                display: flex;
                justify-content: center;
            }

            .hero-image img {
                width: 100%;
                max-width: 300px;
                height: auto;
                aspect-ratio: 1;
                object-fit: cover;
            }

            .hero-content {
                padding: 20px;
            }

            .event-item {
                flex-wrap: wrap;
            }

            .event-date {
                min-width: 80px;
            }

            .event-details {
                flex: 1;
                min-width: 150px;
            }

            .event-link {
               
                text-align: right;
            }

            .social {
                padding: 15px;
                flex-wrap: wrap;
            }

            .social-label {
                width: 100%;
                text-align: center;
                margin-bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            header {
                border-radius: 24px;
            }
            .hero-image img {
                width: 100vw;
                height: atuo;
                object-fit: cover;
                border-radius: 16px;
            }

            .hero, .events, .social {
                border-radius: 24px;
            }

            .logo {
                font-size: 20px;
            }

            nav a {
                font-size: 13px;
            }

            .hero-text p {
                font-size: 14px;
            }

            .event-name {
                font-size: 16px;
            }

            .event-location {
                font-size: 13px;
            }

            .event-date {
                font-size: 16px;
                padding: 8px 12px;
            }

            .toggle-btn {
                font-size: 13px;
                padding: 8px;
            }
        }