:root {
		--bg-dark: #12121c;
		--bg-light: #ffffff;
		--bg-dark-accent: #1a1a28;
		--text-primary-dark: #ffffff;
		--text-secondary-dark: #555568;
		--text-primary-light: #12121c;
		--text-secondary-light: #a8a8c2;
		--accent-pink: #f9598a;
		--accent-orange: #ff7d4b;
        --border-accent-blue: #45b7ec;
	}

	*,
	*::before,
	*::after {
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		margin: 0;
		padding: 0;
	}

    /* hide browser "x" icon in search fields */
    input[type="search"]::-webkit-search-cancel-button {
	display: none;
}

	/* body styles would be in the layout page */

	.container {
		width: 90%;
		max-width: 1200px;
		margin: 0 auto;
	}

	/* Header */
	.site-header {
		padding: 1.5rem 0;
		position: absolute;
		width: 100%;
		z-index: 10;
	}

	.main-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	/* UPDATED: Changed from space-between to center to horizontally center the single logo item. */
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

	.logo {
		text-decoration: none;
	}

	/* Responsive Logo Image */
	.logo-image {
		height: clamp(37px, 5vw, 40px);
		width: auto;
	}

	.cta-button {
		border: none;
		border-radius: 50px;
		padding: 0.3rem 1.4rem;
		font-weight: 600;
		cursor: pointer;
		background: -webkit-gradient(linear, left top, right top, from(var(--accent-pink)), to(var(--accent-orange)));
		background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange));
		color: white;
        margin-top: 1.5rem;
	}

    /* This rule specifically targets and repositions the hero's CTA button. */
    .hero > .cta-button {
        position: absolute;
        bottom: 3rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        z-index: 6;
        margin-top: 0;
    }

    /* RESPONSIVE BACKGROUND VIDEO STYLES */
	.bg-video {
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		        transform: translate(-50%, -50%);
		z-index: -2;
		/* Mobile-first: prioritize height */
		width: auto;
		height: 100%;
	}

	/* Hero Section */
.hero {
	height: 80vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	padding: 15vh 2rem 2rem;
	position: relative;
	overflow: hidden;
    -webkit-transition: padding-top 0.4s ease-in-out;
	transition: padding-top 0.4s ease-in-out;
}

    .hero-headline {
        font-family: 'Lato', sans-serif; /* Uses the lato-black font family */
        font-weight: 900;
        font-size: 1.3rem; /* Responsive font size */
        color: white;
        text-align: center;
        /* text-transform: uppercase; */
        line-height: 1.1;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        margin: 0;
        margin-bottom: 0.5rem;
        -webkit-transition: margin-bottom 0.4s ease-in-out;
	    transition: margin-bottom 0.4s ease-in-out;
    }
    
	.hero-background {
		position: absolute;
		inset: 0;
		z-index: -1;
		/* Sits on top of video, behind content */
	}

	.hero-background::after {
		content: '';
		position: absolute;
		inset: 0;
		/* background: linear-gradient(180deg, rgba(18, 18, 28, 0.5) 0%, rgba(18, 18, 28, 0.8) 95%); */
	}

    .hero.search-active {
        padding-top: 8vh;
    }

    /* Shrink hero text when the search is active */
    .hero.search-active .hero-headline {
	    margin-bottom: 0.5rem;
    }

    /* UPDATED: Styles for the pill-shaped form from Design 3 */
    .search-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.65);
        border: 2px solid var(--border-accent-blue);
        -webkit-backdrop-filter: blur(8px);
	    backdrop-filter: blur(8px);
        border-radius: 50px;
        padding: 0.5rem;
    }

	.search-form input {
		-webkit-box-flex: 1;
		    -ms-flex-positive: 1;
		        flex-grow: 1;
		border: none;
		background: none;
		padding: 0 1rem;
		font-size: 1rem;
		outline: none;
        color: #333;
	}

	.search-form button {
		border: none;
		background: -webkit-gradient(linear, left top, right top, from(var(--accent-pink)), to(var(--accent-orange)));
		background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange));
		color: white;
		border-radius: 50%;
		width: 40px;
		height: 40px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
		cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
	}

	/* "Middle ground" jagged SVG edge */
	.torn-section {
		position: relative;
	}

	.torn-section::before {
		content: '';
		position: absolute;
		top: -79px;
		left: 0;
		width: 100%;
		height: 80px;
		background-repeat: no-repeat;
		background-size: cover;
		pointer-events: none;
	}

	.torn-blue-gray-top::before {
		background-image: url("data:image/svg+xml,%3csvg width='100%25' height='80' viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 55 L120 40 L240 60 L360 45 L480 65 L600 50 L720 38 L840 62 L960 48 L1080 68 L1200 42 L1320 55 L1440 45 V 80 H 0 Z' fill='%231a1a28'%3e%3c/path%3e%3c/svg%3e");
	}

	.torn-white-top::before {
		background-image: url("data:image/svg+xml,%3csvg width='100%25' height='80' viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 55 L120 40 L240 60 L360 45 L480 65 L600 50 L720 38 L840 62 L960 48 L1080 68 L1200 42 L1320 55 L1440 45 V 80 H 0 Z' fill='%23ffffff'%3e%3c/path%3e%3c/svg%3e");
	}

	.torn-dark-top::before {
		background-image: url("data:image/svg+xml,%3csvg width='100%25' height='80' viewBox='0 0 1440 80' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M0 55 L120 40 L240 60 L360 45 L480 65 L600 50 L720 38 L840 62 L960 48 L1080 68 L1200 42 L1320 55 L1440 45 V 80 H 0 Z' fill='%2312121c'%3e%3c/path%3e%3c/svg%3e");
	}

	/* Corrected colors for sections */
	.dark-content-section {
		background-color: var(--bg-dark-accent);
		color: var(--text-primary-dark);
		padding: 8rem 0;
	}

	.light-content-section {
		background-color: var(--bg-light);
		color: var(--text-primary-light);
		padding: 8rem 0;
	}

	.two-col-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 4rem;
	}

	/* Font colors adjusted for dark background */
	.dark-content-section h2 {
		font-size: 2rem;
		margin-bottom: 1.5rem;
	}

	.dark-content-section p {
		color: var(--text-secondary-light);
		line-height: 1.8;
	}

	.dark-content-section .info-list h3 {
		font-size: 1.5rem;
		margin-bottom: 2rem;
	}

	.dark-content-section .info-item .info-icon-container {
	background-color: #444;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.info-icon-container .material-symbols-outlined {
    font-size: 28px;
    color: var(--border-accent-blue);
}

	.dark-content-section .info-item h4 {
		font-size: 1rem;
		margin-bottom: 0.25rem;
	}

	.dark-content-section .info-item p {
		font-size: 0.9rem;
		line-height: 1.5;
		color: var(--text-secondary-light);
	}

	.info-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 1.5rem;
		margin-bottom: 1.5rem;
	}

	.info-item .image-placeholder {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		-ms-flex-negative: 0;
		    flex-shrink: 0;
	}

	/* Video Carousel Sections (on light bg) */
	.section-header {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		    -ms-flex-pack: justify;
		        justify-content: space-between;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		margin-bottom: 2rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.tag {
		font-size: 0.8rem;
		padding: 0.4rem 1rem;
		border-radius: 20px;
		background: -webkit-gradient(linear, left top, right top, from(var(--accent-pink)), to(var(--accent-orange)));
		background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange));
		color: white;
	}

    .carousel-track {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; /* This is the only display property needed */
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; /* Ensures items stay in a single line */
        gap: 1.5rem;
        overflow-x: auto; /* Enables horizontal scrolling */
        padding-bottom: 1rem;
        scrollbar-width: none;
        /* Add horizontal padding to prevent cards from touching screen edges */
        padding-left: 5%;
        padding-right: 5%;
        /* Clip content to ensure clean padding behavior with scrollbars */
        -webkit-clip-path: inset(0 0 0 0);
                clip-path: inset(0 0 0 0);
    }

	.carousel-track::-webkit-scrollbar {
		display: none;
	}

	.video-card {
        -ms-flex-negative: 0;
            flex-shrink: 0; /* Prevents cards from shrinking */
        width: 80%;       /* Sets a mobile-friendly width */
        max-width: 320px; /* Sets a max width for larger screens */
    }

	.artist-thumbnail {
		width: 100%;
		aspect-ratio: 16 / 9;
		-o-object-fit: cover;
		   object-fit: cover;
		background-color: #ddd;
		border-radius: 12px;
		margin-bottom: 1rem;
	}

	.video-card h3 {
		font-size: 1.1rem;
		margin-bottom: 0.5rem;
	}


    /* Discover Section */
	.author-info {
		display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0.75rem;
	}

	.discover-fan-info {
        border: none;
		background: -webkit-gradient(linear, left top, right top, from(var(--accent-pink)), to(var(--accent-orange)));
		background: linear-gradient(90deg, var(--accent-pink), var(--accent-orange));
		color: white;
		border-radius: 50%;
		width: 30px;
		height: 30px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

	.author-info p {
		font-size: 0.9rem;
		color: var(--text-secondary-light);
	}

    .fan-event-info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        line-height: 1.2;
    }

    .fan-event-info .event-name {
        font-size: 0.8em;
        color: var(--text-secondary-dark);
    }

    .video-thumbnail video {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        border-radius: 12px;
    }

    /* End Discover Section */

	.large-carousel .video-card {
		-webkit-box-flex: 0;
		    -ms-flex: 0 0 90%;
		        flex: 0 0 90%;
		max-width: 450px;
	}

	.large-carousel p {
		color: var(--text-secondary-dark);
	}

	.carousel-nav {
		display: none;
	}

	/* CTA Section */
	.cta-section {
		padding: 6rem 0;
		text-align: center;
		background-color: var(--bg-dark-accent);
	}

	.cta-button-large {
		display: -webkit-inline-box;
		display: -ms-inline-flexbox;
		display: inline-flex;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 1rem;
		background-color: #312252;
		color: white;
		padding: 1.2rem 2.5rem;
		border: 1px solid #5a429b;
		border-radius: 12px;
		font-size: 1.2rem;
		font-weight: 600;
	}

	/* Footer */
	.site-footer {
		background-color: var(--bg-dark);
		padding: 8rem 0 2rem;
		font-size: 0.9rem;
	}

	.footer-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
		padding-bottom: 4rem;
	}

	.footer-col h4 {
		margin-bottom: 1.5rem;
		color: var(--accent-orange);
		font-size: 1rem;
	}

	.footer-col ul {
		list-style: none;
	}

	.footer-col li {
		margin-bottom: 1rem;
	}

	.footer-col a {
		color: var(--text-secondary-light);
		text-decoration: none;
	}

	.footer-col p {
		color: var(--text-secondary-light);
		line-height: 1.7;
	}

	.footer-col .image-placeholder {
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background-color: #444;
		margin-bottom: 1rem;
	}

	.footer-bottom {
		border-top: 1px solid rgba(255, 255, 255, 0.1);
		padding-top: 2rem;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		-webkit-box-align: center;
		    -ms-flex-align: center;
		        align-items: center;
		gap: 1.5rem;
		text-align: center;
	}

	.social-links {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 1rem;
	}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor; /* This makes the SVG inherit the 'color' of the parent <a> tag */
}

.social-links a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 40px;
	height: 40px;
	background-color: #333;
	border-radius: 50%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: var(--text-secondary-dark);
	text-decoration: none;
	/* NEW: Added transition for smooth hover effect */
	-webkit-transition: background-color 0.2s ease, color 0.2s ease;
	transition: background-color 0.2s ease, color 0.2s ease;
}

	@media (min-width: 370px) {

		/* Media query for wider screens */
		.bg-video {
			width: 100%;
			height: auto;
		}
	}

	@media (min-width: 768px) {

		/* NEW: Media query to make the search container wider on larger screens */
        #fan-search-container {
            max-width: 900px;
        }

        .two-col-grid {
            grid-template-columns: 1fr 1fr;
        }

		.video-card {
			-ms-flex-preferred-size: 45%;
			    flex-basis: 45%;
		}

		.large-carousel .video-card {
			-ms-flex-preferred-size: 45%;
			    flex-basis: 45%;
		}

		.footer-grid {
			grid-template-columns: repeat(5, 1fr);
		}

		.footer-bottom {
			-webkit-box-orient: horizontal;
			-webkit-box-direction: normal;
			    -ms-flex-direction: row;
			        flex-direction: row;
			-webkit-box-pack: justify;
			    -ms-flex-pack: justify;
			        justify-content: space-between;
		}

		.carousel-nav {
			display: block;
			position: absolute;
			top: 50%;
			-webkit-transform: translateY(-50%);
			        transform: translateY(-50%);
			background: rgba(0, 0, 0, 0.1);
			border: none;
			border-radius: 50%;
			width: 40px;
			height: 40px;
			cursor: pointer;
			color: #333;
		}

		.nav-prev {
			left: -20px;
		}

		.nav-next {
			right: -20px;
		}
	}


/*
==========================================================================
  FAN SEARCH STYLES
==========================================================================
*/

/* --- Main Search Container --- */
#fan-search-container {
    width: 100%;
    max-width: 500px; /* This remains for the mobile-first approach */
    position: relative;
    z-index: 6;
}

/* --- Search Content Wrapper (New) --- */
.search-content-wrapper {
    position: relative;
}

/* --- Search Results List --- */
/* UPDATED: Styles for a light background dropdown */
.search-results-list {
    position: absolute;
    z-index: 100; /* Ensure it's on top of all other content */
    /* max-height: 60vh;  Prevent the list from being too long on mobile */
    overflow-y: auto; 
    background-color: rgba(255, 255, 255, 0.65);
    -webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
    border: 2px solid var(--border-accent-blue);
    border-radius: 20px;
    margin-top: 0.5rem;
    -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    -webkit-transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

/* This class defines the collapsed state */
.search-results-list.collapsed {
    max-height: 50px;      /* Animate the height */
    overflow: hidden;   /* Hide the scrolling content */
    padding-top: 0;     /* Remove padding when collapsed */
    padding-bottom: 0;  /* Remove padding when collapsed */
    border-width: 0;    /* Optional: hide border when collapsed */
}

/* Styles for the collapse/expand button */
#collapse-search-button {
    position: absolute;
    top: 15px;
    right: 18px;
    z-index: 101; /* Ensure it's above the list content */
    background: none;
    border: none;
    color: var(--text-primary-light);
    cursor: pointer;
    opacity: 0.7;
}

.search-result-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10px 15px 10px 25px;
    color: var(--text-primary-light); /* Dark text color */
    text-decoration: none;
    border-bottom: 1px solid #eee; /* Light border */
}

.search-result-item:hover {
    background-color: #f5f5f5; /* Light gray hover */
}

/* A new style for non-clickable list items like "None" */
.inactive-item {
    color: #888; /* A dimmer gray color */
    font-style: italic;
    cursor: default; /* Show a normal cursor, not a pointer */
}

.prospect-item {
    cursor: pointer;
}

.result-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -o-object-fit: cover;
       object-fit: cover;
    margin-right: 15px;
}

.result-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.result-name {
    font-weight: bold;
}

.result-tag {
    font-size: 0.8em;
    opacity: 0.7;
}

.result-tag.customer {
    color: #007bff; /* Standard blue for links */
}

/* --- Static Search Sections Styling --- */
.static-search-section {
    padding: 10px 15px 10px 25px;
    border-bottom: 1px solid #eee;
}

.static-search-section.hidden {
    display: none;
}

.static-section-header {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #888;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.static-result-item {
    display: block;
    color: var(--text-primary-light);
    text-decoration: none;
    padding: 7px 0;
    font-weight: 500;
}

.static-result-item:hover {
    color: #007bff;
}

/*
==========================================================================
  SHARE MODAL STYLES
==========================================================================
*/

.share-modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px); /* Add a subtle blur to the background */
    -webkit-backdrop-filter: blur(5px);
    
    z-index: 300; /* Must be higher than any other content */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.share-modal-container.hidden {
    opacity: 0;
    pointer-events: none;
}

.share-modal-content {
    background-color: #1c1c1e;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    color: #fff;
    border: 1px solid #333;
}

.share-modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #333;
}

.share-modal-title {
    margin: 0;
    font-size: 1.1em;
}

/* Re-using the close button style from the search modal */
.close-button {
    background: none;
    border: none;
    color: #aaa;
    font-size: 28px;
    cursor: pointer;
    padding: 0 10px;
}

.share-modal-body {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 25px; /* Creates space between the sections */
}

.share-section label {
    font-weight: bold;
    font-size: 0.9em;
    color: #aaa;
    display: block;
    margin-bottom: 8px;
}

.copy-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #2c2c2e;
    border-radius: 8px;
    padding: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.copy-container p {
    margin: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    font-size: 0.9em;
    line-height: 1.4;
    padding-right: 10px;
    word-break: break-word; /* Prevents long text from overflowing */
}

.copy-button {
    background: #444;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 8px 10px;
    cursor: pointer;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
    -webkit-transition: background-color 0.2s ease;
    transition: background-color 0.2s ease;
}

.copy-button:hover {
    background: #555;
}

.share-modal-body small {
    display: block;
    margin-top: 8px;
    font-size: 0.8em;
    color: #888;
}

.share-buttons-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
}

.share-button {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}

.share-button:hover {
    opacity: 0.85;
}

.share-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-button.twitter {
    background-color: #1DA1F2;
}

.share-button.facebook {
    background-color: #1877F2;
}