:root {
            --navy: #0a0e27;
            --navy-light: #1a1f3a;
            --green: #5EDD8C;
            --green-dark: #4BC47A;
            --white: #ffffff;
            --gray-light: #f5f5f5;
            --gray: #666;
            --purple: #7F56D9;
            --gold: #FFD700;
            --silver: #C0C0C0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--navy);
            background: var(--white);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Countdown Timer */
        .countdown-wrapper {
            background: linear-gradient(135deg, rgba(94, 221, 140, 0.1) 0%, rgba(127, 86, 217, 0.1) 100%);
            border-radius: 20px;
            padding: 2rem;
            margin-top: 2rem;
            text-align: center;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }
        
        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .countdown-number {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1;
            background: rgba(94, 221, 140, 0.2);
            padding: 1rem 1.5rem;
            border-radius: 15px;
            min-width: 100px;
        }
        
        .countdown-unit {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        
        /* Sticky CTA Bar */
        .sticky-cta {
            position: fixed;
            bottom: -100px;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            padding: 1rem 2rem;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
            z-index: 998;
            transition: bottom 0.3s ease-out;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sticky-cta.visible {
            bottom: 0;
        }
        
        .sticky-cta-content {
            display: flex;
            align-items: center;
            gap: 2rem;
            color: var(--white);
        }
        
        .sticky-cta-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
        }
        
        .sticky-cta-price {
            font-size: 1rem;
            color: var(--green);
            font-weight: 600;
        }
        
        .sticky-cta-button {
            background: var(--green);
            color: var(--navy);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            animation: pulse 2s infinite;
        }
        
        .sticky-cta-button:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
        }
        
        .sticky-cta-close {
            background: transparent;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .sticky-cta-close:hover {
            color: var(--white);
        }
        
        @keyframes pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(94, 221, 140, 0.4); }
            50% { box-shadow: 0 0 0 10px rgba(94, 221, 140, 0); }
        }
        
        /* Early Bird Alert Banner */
        .alert-banner {
            background: linear-gradient(135deg, var(--green) 0%, #FFD700 100%);
            color: var(--navy);
            padding: 0.8rem 2rem;
            text-align: center;
            font-weight: 600;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1002;
            transition: transform 0.3s ease-out;
            transform: translateY(0);
        }
        
        .alert-banner.hidden {
            transform: translateY(-100%);
        }
        
        .alert-banner-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
        }
        
        .alert-banner-icon {
            font-size: 1.2rem;
            animation: bounce 1s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }
        
        .alert-banner-button {
            background: var(--navy);
            color: var(--white);
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s;
            font-size: 0.9rem;
        }
        
        .alert-banner-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Adjust navbar for alert banner */
        nav {
            top: 50px; /* Space for alert banner */
            transition: top 0.3s ease-out;
        }
        
        nav.banner-hidden {
            top: 0;
        }
        
        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 20px rgba(94, 221, 140, 0.4);
        }
        
        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-to-top:hover {
            background: var(--green-dark);
            transform: translateY(-5px);
        }
        
        .scroll-to-top::before {
            content: '↑';
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--navy);
        }
        
        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        nav.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 2rem;
        }
        
        .logo {
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--white);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo img {
            height: 50px;
            width: auto;
        }
        
        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: var(--green);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green);
            transition: width 0.3s;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .cta-button {
            background: var(--green);
            color: var(--navy);
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(94, 221, 140, 0.3);
        }
        
        /* Mobile menu toggle */
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--white);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        
        .cloud {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            animation: float 20s infinite ease-in-out;
        }
        
        .cloud-1 { width: 300px; height: 100px; top: 10%; left: -50px; animation-delay: 0s; }
        .cloud-2 { width: 200px; height: 80px; top: 30%; right: -30px; animation-delay: 3s; }
        .cloud-3 { width: 250px; height: 90px; bottom: 20%; left: 10%; animation-delay: 6s; opacity: 0.05; }
        .cloud-4 { width: 180px; height: 70px; top: 60%; right: 15%; animation-delay: 9s; opacity: 0.03; }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            50% { transform: translateY(-30px) translateX(20px); }
        }
        
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-content h1 {
            font-family: 'Outfit', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            animation: slideInLeft 0.8s ease-out;
        }
        
        .hero-content h1 .highlight {
            color: var(--green);
            display: block;
        }
        
        .hero-content p {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            animation: slideInLeft 0.8s ease-out 0.2s backwards;
        }
        
        .hero-meta {
            display: flex;
            gap: 3rem;
            margin-bottom: 3rem;
            animation: slideInLeft 0.8s ease-out 0.4s backwards;
        }
        
        .meta-item {
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }
        
        .meta-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .meta-value {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--white);
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            animation: slideInLeft 0.8s ease-out 0.6s backwards;
        }
        
        .btn-primary {
            background: var(--green);
            color: var(--navy);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            display: inline-block;
        }
        
        .btn-primary:hover {
            background: var(--green-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(94, 221, 140, 0.4);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 1rem 2.5rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.1rem;
            display: inline-block;
        }
        
        .btn-secondary:hover {
            border-color: var(--white);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .hero-visual {
            position: relative;
            animation: fadeIn 1s ease-out 0.4s backwards;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        
        .mascot-hero {
            width: 250px;
            height: auto;
            animation: floatMascot 6s infinite ease-in-out;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
        }
        
        @keyframes floatMascot {
            0%, 100% { transform: translateY(0px) rotate(-3deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            width: 100%;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }
        
        .stat-number {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--green);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Section Styles */
        section {
            padding: 6rem 2rem;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 4rem;
        }
        
        .section-label {
            font-size: 0.9rem;
            color: var(--green);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 1rem;
            display: block;
        }
        
        .section-title {
            font-family: 'Outfit', sans-serif;
            font-size: 3rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .section-description {
            font-size: 1.2rem;
            color: var(--gray);
            line-height: 1.8;
        }
        
        /* Logo section */
        .logo-section {
            background: var(--white);
            padding: 3rem 2rem;
            text-align: center;
        }
        
        .logo-section img {
            max-width: 800px;
            width: 100%;
            height: auto;
        }
        
        /* About Section */
        .about {
            background: var(--gray-light);
        }
        
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }
        
        .about-text h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }
        
        .about-text p {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        
        .feature-item {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: block;
        }
        
        .feature-title {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        
        .feature-description {
            font-size: 0.95rem;
            color: var(--gray);
            line-height: 1.6;
        }
        
        /* Videos Section */
        .videos {
            background: var(--white);
        }
        
        .videos-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 3rem;
        }
        
        .video-item {
            background: var(--gray-light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .video-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }
        
        .video-embed {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        
        .video-embed iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-info {
            padding: 1.5rem;
        }
        
        .video-info h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        
        .video-info p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .video-year {
            display: inline-block;
            background: var(--green);
            color: var(--navy);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-top: 0.8rem;
        }
        
        /* Speakers Section */
        .speakers {
            background: var(--gray-light);
        }
        
        .speakers-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }
        
        @media (max-width: 1200px) {
            .speakers-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 900px) {
            .speakers-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 600px) {
            .speakers-grid {
                grid-template-columns: 1fr;
            }
        }
        
        .speaker-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            position: relative;
        }
        
        .speaker-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .speaker-image {
            width: 100%;
            height: 350px;
            background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .speaker-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .salesforce-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: #009EDB;
            color: var(--navy);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
			color: #fff;
            text-transform: uppercase;
        }
		
        .speaker-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--green);
            color: var(--navy);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }		
        
        .speaker-info {
            padding: 2rem;
        }
        
        .speaker-linkedin {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #0077B5;
            color: var(--white);
            border-radius: 10px;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s;
            margin-top: 1rem;
        }
        
        .speaker-linkedin:hover {
            background: #005885;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
        }
        
        .speaker-name {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.3rem;
        }
        
        .speaker-title {
            color: var(--gray);
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }
        
        .speaker-company {
            color: var(--green);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }
        
        .speaker-bio {
            color: var(--gray);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        .speaker-topics {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        
        .topic-tag {
            background: var(--gray-light);
            color: var(--navy);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        /* Sessions Section - NEW */
        .sessions {
            background: var(--white);
        }
        
        .sessions-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        
        .session-card {
            background: var(--gray-light);
            border-radius: 20px;
            padding: 2.5rem;
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 2rem;
            align-items: start;
            transition: transform 0.3s, box-shadow 0.3s;
            border-left: 5px solid var(--green);
        }
        
        .session-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }
        
        .session-speakers {
            display: flex;
            gap: 1rem;
            flex-direction: column;
        }
        
        .session-speaker-thumb {
            width: 80px;
            height: 80px;
            border-radius: 15px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .session-speaker-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .session-details h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.8rem;
        }
        
        .session-meta {
            display: flex;
            gap: 2rem;
            margin-bottom: 1rem;
            flex-wrap: wrap;
        }
        
        .session-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .session-meta-item strong {
            color: var(--navy);
        }
        
        .session-description {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .expand-btn {
            background: transparent;
            border: none;
            color: var(--gray);
            padding: 0;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.9rem;
            text-decoration: underline;
            text-decoration-style: dotted;
            text-underline-offset: 3px;
            display: inline;
        }
        
        .expand-btn:hover {
            color: var(--green);
            text-decoration-style: solid;
        }
        
        .session-expanded {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
        }
        
        .session-expanded.open {
            max-height: 2000px;
            transition: max-height 0.6s ease-in;
        }
        
        .expanded-content {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid var(--gray-light);
        }
        
        .expanded-content h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.8rem;
            margin-top: 1.2rem;
        }
        
        .expanded-content h4:first-child {
            margin-top: 0;
        }
        
        .expanded-content p {
            color: var(--gray);
            line-height: 1.8;
        }
        
        .speaker-link {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .speaker-link:hover {
            color: var(--green-dark);
            text-decoration: underline;
        }
        
        .speaker-links {
            display: flex;
            gap: 0.8rem;
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        
        .speaker-social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .linkedin-link {
            background: #0077B5;
            color: var(--white);
        }
        
        .linkedin-link:hover {
            background: #005885;
            transform: translateY(-3px);
        }
        
        .website-link {
            background: var(--purple);
            color: var(--white);
        }
        
        .website-link:hover {
            background: #6941C6;
            transform: translateY(-3px);
        }
        
        .blog-link {
            background: var(--green);
            color: var(--navy);
        }
        
        .blog-link:hover {
            background: var(--green-dark);
            transform: translateY(-3px);
        }
        
        .session-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        
        .session-tag {
            background: var(--white);
            color: var(--navy);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .track-badge {
            background: var(--purple);
            color: var(--white);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        
        .workshop-badge {
            background: #FF8C42;
            color: var(--white);
        }
        
        .panel-badge {
            background: #0077BE;
            color: var(--white);
        }
        
        /* Panel discussion styles */
        .session-card.panel {
            border-left-color: var(--purple);
        }
        
        .session-card.panel .session-speakers {
            /*flex-direction: row;*/
            flex-wrap: wrap;
        }
        
        .session-card.panel .session-speaker-thumb {
            width: 60px;
            height: 60px;
        }
        
		
	    /* Workshop styles */
        .session-card.workshop {
            border-left-color: var(--gold);
        }
        
        .session-card.workshop .session-speaker-thumb {
            width: 60px;
            height: 60px;
        }
		
        /* Tickets Section */
        .tickets {
            background: var(--gray-light);
        }
        
        .tickets-grid {
			max-width: 1200px;
			margin: 0 auto;
			display: flex;
			justify-content: center;
			gap: 2rem;
		}
        
        .ticket-card {
            background: var(--white);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 3px solid transparent;
			max-width: 450px;
			width: 100%;
        }
        
        .ticket-card.featured {
            border-color: var(--green);
        /*    transform: scale(1.05);*/
        }
        
        .ticket-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .ticket-label {
            font-size: 0.9rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .ticket-price {
            font-family: 'Outfit', sans-serif;
            font-size: 4.5rem;
            font-weight: 900;
            color: var(--navy);
            margin-bottom: 0.5rem;
            line-height: 1;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            gap: 0.3rem;
        }
        
        .ticket-currency {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--gray);
            margin-top: 0.5rem;
        }
        
        .ticket-vat {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 2rem;
        }
        
        .ticket-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .ticket-features li {
            padding: 0.6rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }
        
        .ticket-features li::before {
            content: '✓';
            color: var(--green);
            font-weight: 900;
            font-size: 1.2rem;
        }
        
        .ticket-deadline {
            font-size: 0.85rem;
            color: var(--gray);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }
        
        .btn-ticket {
            width: 100%;
            background: var(--navy);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
        }
        
        .btn-ticket:hover {
            background: var(--navy-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(10, 14, 39, 0.3);
        }
        
        .ticket-card.featured .btn-ticket {
            background: var(--green);
            color: var(--navy);
        }
        
        .ticket-card.featured .btn-ticket:hover {
            background: var(--green-dark);
        }
        
        /* Sponsors Section - NEW */
        .sponsors {
            background: var(--white);
        }
        
        .sponsor-tier {
            margin-bottom: 4rem;
        }
        
        .sponsor-tier h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }
        
        .sponsor-tier.gold h3 {
            color: var(--gold);
        }
        
        .sponsor-tier.silver h3 {
            color: var(--silver);
        }
        
        .sponsor-tier.presence h3 {
            color: var(--navy);
        }
        
        .tier-icon {
            font-size: 2rem;
        }
        
        .sponsors-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            align-items: center;
        }
        
        .sponsor-tier.gold .sponsors-grid {
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        }
		
        .sponsor-tier.silver .sponsors-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }		
        
        .sponsor-logo {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 150px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;
            border: 2px solid var(--gray-light);
        }
        
        .sponsor-tier.gold .sponsor-logo {
            border-color: var(--gold);
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
        }
        
        .sponsor-tier.silver .sponsor-logo {
            border-color: var(--silver);
        }
        
        .sponsor-logo:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }
        
        .sponsor-logo img {
            max-width: 100%;
            max-height: 100px;
            object-fit: contain;
        }
        
        .sponsor-logo p {
            font-family: 'Outfit', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            color: var(--navy);
            text-align: center;
        }
        
        /* Partners Section */
        .partners {
            background: var(--gray-light);
        }
        
        .partners-category {
            margin-bottom: 4rem;
        }
        
        .partners-category h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--navy);
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .partners-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            align-items: center;
        }
        
        .partner-logo {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 120px;
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            text-decoration: none;
        }
        
        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .partner-logo img {
            max-width: 100%;
            max-height: 80px;
            object-fit: contain;
        }
        
        /* Gallery Section */
        .gallery {
            background: var(--white);
            padding: 5rem 2rem;
        }
        
        .gallery-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            aspect-ratio: 4/3;
            cursor: pointer;
            transition: transform 0.3s;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10, 14, 39, 0.8) 0%, transparent 100%);
            padding: 2rem 1.5rem 1.5rem;
            color: var(--white);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        
        .gallery-overlay p {
            font-size: 0.85rem;
            opacity: 0.9;
        }
        
        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
        }
        
        .lightbox-content img {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 10px;
        }
        
        .lightbox-close {
            position: absolute;
            top: -50px;
            right: 0;
            background: var(--green);
            color: var(--navy);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }
        
        .lightbox-close:hover {
            background: var(--green-dark);
            transform: rotate(90deg);
        }
        
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(94, 221, 140, 0.9);
            color: var(--navy);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: bold;
        }
        
        .lightbox-nav:hover {
            background: var(--green);
        }
        
        .lightbox-prev {
            left: -80px;
        }
        
        .lightbox-next {
            right: -80px;
        }
        
        /* Footer */
        footer {
            background: var(--navy);
            color: var(--white);
            padding: 4rem 2rem 2rem;
        }
        
        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        
        .footer-brand h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            margin-bottom: 1rem;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        
        .social-link:hover {
            background: var(--green);
            color: var(--navy);
            transform: translateY(-3px);
        }
        
        .footer-section h4 {
            font-family: 'Outfit', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--green);
        }
        
        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
        }
        
        .footer-legal {
            margin-top: 1rem;
            font-size: 0.85rem;
        }
        
        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .hero-content h1 {
                font-size: 3.5rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .session-card {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--navy);
                flex-direction: column;
                padding: 2rem;
                transition: left 0.3s;
                gap: 1.5rem;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-meta {
                flex-direction: column;
                gap: 1.5rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .countdown-timer {
                gap: 1rem;
            }
            
            .countdown-number {
                font-size: 2rem;
                padding: 0.8rem 1rem;
                min-width: 70px;
            }
            
            .sticky-cta {
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
            }
            
            .sticky-cta-content {
                flex-direction: column;
                gap: 0.5rem;
                text-align: center;
            }
            
            .alert-banner-content {
                flex-direction: column;
                gap: 0.5rem;
                font-size: 0.9rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .mascot-hero {
                width: 180px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .videos-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .lightbox-prev {
                left: 10px;
            }
            
            .lightbox-next {
                right: 10px;
            }
            
            .lightbox-close {
                top: 10px;
                right: 10px;
            }
        }
        
        /* Scroll reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Venue Section */
        .venue {
            background: var(--white);
            padding: 6rem 0;
        }
        
        .venue-content {
            max-width: 1400px;
            margin: 3rem auto 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }
        
        .venue-info h3 {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
        }
        
        .venue-description {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .venue-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        
        .venue-detail-item {
            display: flex;
            gap: 1rem;
            align-items: start;
        }
        
        .venue-detail-item i {
            font-size: 1.5rem;
            color: var(--green);
            margin-top: 0.2rem;
        }
        
        .venue-detail-item strong {
            color: var(--navy);
            display: block;
            margin-bottom: 0.3rem;
        }
        
        .venue-detail-item div {
            color: var(--gray);
            line-height: 1.6;
        }
        
        .venue-map {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
        }
        
        @media (max-width: 1024px) {
            .venue-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }
		
		/* ===== PROFESSIONAL AGENDA STYLES ===== */
.agenda-professional {
    background: #ffffff;
    padding: 4rem 0;
}

.agenda-pro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* View Switcher */
.view-switcher {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e5e7eb;
}

.view-btn {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.view-btn:hover {
    color: #111827;
}

.view-btn.active {
    color: #0a0e27;
}

.view-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: #5EDD8C;
}

/* Grid/List containers */
.agenda-grid, .agenda-list {
    display: none;
}

.agenda-grid.active, .agenda-list.active {
    display: block;
}

/* Grid View - Calendar Style */
.time-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.time-block:first-child {
    border-top: 1px solid #f3f4f6;
}

.time-block:hover {
    background: #fafafa;
}

.time-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #374151;
    padding-top: 0.25rem;
}

.sessions-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

/* Compact Session Card */
.session-compact {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #5EDD8C;
    border-radius: 4px;
    padding: 0.85rem;
    cursor: pointer;
    transition: all 0.15s;
}

.session-compact:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

/* Room colors */
.session-compact[data-room="Codey Arena"] { border-left-color: #3b82f6; }
.session-compact[data-room="Astro Arena"] { border-left-color: #ef4444; }
.session-compact[data-room="Cloud Strategy"] { border-left-color: #8b5cf6; }
.session-compact[data-room="Delivery Hub"] { border-left-color: #f59e0b; }
.session-compact[data-room="Trailblazer Lab"] { border-left-color: #10b981; }

.session-room-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 0.4rem;
    opacity: 0.65;
}

.session-compact[data-room="Codey Arena"] .session-room-label { color: #3b82f6; }
.session-compact[data-room="Astro Arena"] .session-room-label { color: #ef4444; }
.session-compact[data-room="Cloud Strategy"] .session-room-label { color: #8b5cf6; }
.session-compact[data-room="Delivery Hub"] .session-room-label { color: #f59e0b; }
.session-compact[data-room="Trailblazer Lab"] .session-room-label { color: #10b981; }

.session-title-compact {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Multi-speaker support - Overlapping Avatars in Compact Session */
.session-speakers-compact {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.session-avatars-group {
    display: flex;
    align-items: center;
    margin-right: 0.25rem;
}

.session-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    margin-left: -8px;
    transition: transform 0.2s ease, z-index 0.2s ease;
}

.session-avatar:first-child {
    margin-left: 0;
}

.session-avatar:hover {
    transform: translateY(-2px) scale(1.1);
    z-index: 10 !important;
}

.session-avatar-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.65rem;
}

.session-avatar-more {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #9ca3af;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    border: 2px solid white;
    margin-left: -8px;
}

.session-speakers-names {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

/* Keep old speaker compact for backward compatibility */
.session-speaker-compact {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.session-speaker-compact i {
    font-size: 0.7rem;
}

/* List View - Table Style */
.session-detailed {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    display: grid;
    grid-template-columns: 90px 100px 1fr auto;
    gap: 1.25rem;
    align-items: start;
    transition: all 0.15s;
}

.session-detailed:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-color: #d1d5db;
}

.session-time-col {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.session-room-col {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.65rem;
    border-radius: 3px;
    text-align: center;
    white-space: nowrap;
    width: fit-content;
}

.session-room-col[data-room="Codey Arena"] { background: #eff6ff; color: #3b82f6; }
.session-room-col[data-room="Astro Arena"] { background: #fef2f2; color: #ef4444; }
.session-room-col[data-room="Cloud Strategy"] { background: #f5f3ff; color: #8b5cf6; }
.session-room-col[data-room="Delivery Hub"] { background: #fffbeb; color: #f59e0b; }
.session-room-col[data-room="Trailblazer Lab"] { background: #f0fdf4; color: #10b981; }

.session-info-col h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.4rem;
}

.session-speaker-list {
    font-size: 0.8rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.session-expand-btn {
    background: #f9fafb;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.15s;
    color: #9ca3af;
    font-size: 0.75rem;
}

.session-expand-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    gap: 0.6rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
    margin-right: 0.25rem;
}

.filter-chip {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 0.45rem 0.9rem;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-chip:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.filter-chip.active {
    background: #0a0e27;
    color: #ffffff;
    border-color: #0a0e27;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

/* Search */
.agenda-search-pro {
    max-width: 380px;
    margin-bottom: 1.75rem;
}

.agenda-search-pro input {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.agenda-search-pro input:focus {
    outline: none;
    border-color: #5EDD8C;
    box-shadow: 0 0 0 3px rgba(94, 221, 140, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .time-block {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .time-label {
        font-size: 0.9rem;
        padding-bottom: 0.25rem;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .sessions-row {
        grid-template-columns: 1fr;
    }
    
    .session-detailed {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .session-time-col,
    .session-room-col {
        display: inline-block;
        margin-right: 0.5rem;
    }
}

@media (max-width: 640px) {
    .view-switcher {
        width: 100%;
    }
    
    .view-btn {
        flex: 1;
        text-align: center;
    }
    
    .filter-bar {
        gap: 0.4rem;
    }
    
    .filter-chip {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}
        
/* ===== MODAL POPUP FOR SESSION DETAILS ===== */
.session-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    padding: 2rem;
    overflow-y: auto;
    animation: fadeIn 0.2s;
}

.session-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: #ffffff;
    border-radius: 12px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 10;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f3f4f6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #6b7280;
    font-size: 1.2rem;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #111827;
    transform: rotate(90deg);
}

.modal-time-room {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.modal-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
}

.modal-time i {
    color: #6b7280;
}

.modal-room-badge {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 4px;
}

.modal-room-badge[data-room="Codey Arena"] { background: #eff6ff; color: #3b82f6; }
.modal-room-badge[data-room="Astro Arena"] { background: #fef2f2; color: #ef4444; }
.modal-room-badge[data-room="Cloud Strategy"] { background: #f5f3ff; color: #8b5cf6; }
.modal-room-badge[data-room="Delivery Hub"] { background: #fffbeb; color: #f59e0b; }
.modal-room-badge[data-room="Trailblazer Lab"] { background: #f0fdf4; color: #10b981; }

.modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    /*margin-bottom: 1.5rem;*/
}

.modal-speaker {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.modal-speaker-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.modal-speaker-info {
    flex: 1;
}

.modal-speaker-name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.modal-speaker-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #0077B5;
    text-decoration: none;
    transition: all 0.2s;
}

.modal-speaker-linkedin:hover {
    text-decoration: underline;
}

.modal-level {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* Multi-speaker support in modal */
.modal-speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Mobile - speakers jeden pod drugim */
@media (max-width: 768px) {
    .modal-speakers-grid {
        grid-template-columns: 1fr !important;
    }
}

.modal-speaker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.modal-speaker-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.modal-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
	margin-left: 2rem;
    margin-right: 2rem;
    background: #e0e7ff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 1rem;
}

.modal-level-badge i {
    font-size: 0.9rem;
}


.modal-body {
    padding: 2rem;
}

.modal-section {
    margin-bottom: 2rem;
}

.modal-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.modal-section p {
    color: #374151;
    line-height: 1.7;
}

/* EXPANDABLE PANELS FOR LIST VIEW */
.session-detailed {
    cursor: pointer;
    transition: all 0.2s;
}

.session-detailed.expanded {
    background: #f9fafb;
    border-color: #5EDD8C;
}

.session-expand-btn {
    transition: transform 0.3s;
}

.session-detailed.expanded .session-expand-btn {
    transform: rotate(90deg);
    background: #5EDD8C;
    color: #ffffff;
}

.session-details-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    grid-column: 1 / -1;
}

.session-details-panel.open {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}

.session-details-content {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

.details-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
}

.details-speaker-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

/* Multi-speaker support in Details Panel */
.details-speakers-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.details-speaker-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.details-speaker-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
}

.details-speaker-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.details-speaker-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
}

.details-speaker-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #0077B5;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background: #eff6ff;
    transition: all 0.2s;
}

.details-speaker-link:hover {
    background: #dbeafe;
}

.details-main {
    flex: 1;
}

.details-description {
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.details-expanded h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.details-expanded p {
    color: #374151;
    line-height: 1.7;
}

.details-level {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .session-modal {
        padding: 1rem;
    }
    
    .modal-content {
        max-height: 95vh;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-title {
        font-size: 1.4rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .details-speaker-section {
        flex-direction: row;
        justify-content: flex-start;
    }
}

/* Click indicator for grid cards */
.session-compact {
    position: relative;
}

.session-compact::after {
    content: '›';
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    width: 24px;
    height: 24px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0;
    transition: all 0.2s;
}

.session-compact:hover::after {
    opacity: 1;
    background: #5EDD8C;
    color: #ffffff;
}	

.filter-section {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-divider {
    width: 100%;
    height: 1px;
    background: #e5e7eb;
    margin: 0.75rem 0;
}

/* Badge dla audience w modal */
.modal-audience-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    background: #f3f4f6;
    color: #6b7280;
    margin-top: 0.5rem;
}	
/* ========================================
   Video Previews Styling
   ======================================== */

/* Video Preview Button in Modal */
.video-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #6366f1;
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s;
    margin-top: 1rem;
}

.video-preview-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
    text-decoration: none;
    color: #ffffff;
}

.video-preview-btn i {
    font-size: 1.1rem;
}

/* Video Preview Badge in Details Panel */
.video-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #6366f1;
    color: #ffffff;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.2s;
}

.video-preview-badge:hover {
    background: #4f46e5;
    text-decoration: none;
    color: #ffffff;
}

.video-preview-badge i {
    font-size: 0.9rem;
}

/* YouTube Indicator on Session Cards */
.session-video-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #6366f1;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.4);
    z-index: 5;
}

/* Video Teaser Button - Redesigned for Modal */
.video-teaser-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    text-decoration: none;
	margin-left: 2rem;
    margin-right: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.video-teaser-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-teaser-btn:hover::before {
    opacity: 1;
}

.video-teaser-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.video-teaser-icon {
    font-size: 2.5rem;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

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

.video-teaser-content {
    flex: 1;
}

.video-teaser-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.video-teaser-text {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.video-teaser-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.video-teaser-btn:hover .video-teaser-arrow {
    transform: translateX(5px);
}

/* Video Preview Badge for Details Panel */
.video-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.video-preview-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

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


/* Make sure session cards are positioned relative for absolute positioning of indicator */
.session-compact {
    position: relative;
}

/* ========================================
   Social Media Links in Navbar
   ======================================== */

.nav-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1rem;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

.nav-social-link:hover {
    background: var(--green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(94, 221, 140, 0.3);
}

.nav-social-link i {
    transition: transform 0.3s;
}

.nav-social-link:hover i {
    transform: scale(1.1);
}

/* Mobile adjustments for social links */
@media (max-width: 968px) {
    .nav-social-links {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        margin-left: 0;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* ========================================
   Afterparty Section
   ======================================== */

.afterparty-section {
    padding: 8rem 0;
    margin: 6rem 0 0 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.afterparty-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.afterparty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.afterparty-text {
    color: white;
}

.afterparty-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.afterparty-text .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.afterparty-text .highlight {
    background: linear-gradient(to right, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.afterparty-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.afterparty-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.afterparty-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    line-height: 1;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

.feature-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.afterparty-cta {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.afterparty-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.afterparty-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.afterparty-cta .cta-button i {
    transition: transform 0.3s ease;
}

.afterparty-cta .cta-button:hover i {
    transform: translateX(5px);
}

.afterparty-visual {
    perspective: 1000px;
}

.party-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.party-card:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.party-card-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.party-time {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.party-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.party-card-body {
    padding: 2rem;
}

.party-card-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
}

.party-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.party-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
    line-height: 1.6;
}

.party-highlights i {
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.party-quote {
    background: #f3f4f6;
    border-left: 4px solid #667eea;
    padding: 1rem 1.5rem;
    font-style: italic;
    color: #4b5563;
    border-radius: 0 8px 8px 0;
}

.party-decoration {
    text-align: center;
    font-size: 2rem;
    padding: 1rem;
    background: linear-gradient(to right, #fef3c7, #fde68a);
}

/* Responsive */
@media (max-width: 968px) {
    .afterparty-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .afterparty-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .party-card {
        transform: none;
    }
}

/* ========================================
   Social Media Wall Section
   ======================================== */

.social-wall-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

.social-wall-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.social-wall-section .section-description {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
}

.social-wall-section .section-description strong {
    color: #667eea;
    font-weight: 700;
}

.social-platforms {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.social-platform {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 16px;
    text-decoration: none;
    color: #374151;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid transparent;
}

.social-platform:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.social-platform i {
    font-size: 2rem;
    color: #667eea;
}

.social-platform span {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
}

.hashtag-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.hashtag-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.hashtag-icon {
    font-size: 3rem;
    font-weight: 900;
    color: #fbbf24;
    font-family: 'Outfit', sans-serif;
}

.hashtag-text {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

.hashtag-cta {
    color: white;
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

.social-feed-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    min-height: 800px;
}

.social-engagement-cta {
    text-align: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
}

.social-engagement-cta h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

.social-engagement-cta > p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.engagement-ideas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.idea-item {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.idea-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .hashtag-icon,
    .hashtag-text {
        font-size: 2rem;
    }

    .social-platforms {
        gap: 1rem;
    }

    .social-platform {
        padding: 1rem 1.5rem;
    }

    .social-feed-container {
        padding: 1rem;
    }

    .engagement-ideas {
        grid-template-columns: 1fr;
    }
}