/* Global Styles & Variables */
:root {
    --font-comfortaa: 'Comfortaa', cursive;
    --font-roboto: 'Roboto', sans-serif;

    --color-primary: #007bff; /* Placeholder Blue */
    --color-secondary: #6c757d; /* Placeholder Grey */
    --color-background: #f8f9fa; /* Light Grey Background */
    --color-surface: #ffffff; /* White Surface */
    --color-text: #333333; /* Dark Grey Text */
    --color-text-light: #555555;
    --color-border: #dddddd;

    /* Palette from technical overview */
    --color-accent: #E2B171;
    --color-black: #000000;
    --color-black-alt: #171717;
    --color-white: #FFFFFF;
    --color-off-white: #F2F2F2;

    --spacing-xsmall: 4px;
    --spacing-small: 8px;
    --spacing-medium: 16px;
    --spacing-large: 24px;
    --spacing-xlarge: 32px;

    --border-radius-soft: 4px;
    --border-radius-medium: 8px;
    --border-radius-blob: 30% 70% 70% 30% / 30% 30% 70% 70%; /* Example blob shape */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-roboto);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    font-size: 16px; /* Body Medium */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-large) 0;
}

h1, h2, h3 {
    margin-bottom: var(--spacing-medium);
    line-height: 1.3;
}

h1 { /* Heading 1 */
    font-family: var(--font-comfortaa);
    font-size: 3rem; /* 48px as per spec */
    font-weight: 700;
    color: var(--color-primary);
}

h2 { /* Heading 2 */
    font-family: var(--font-roboto);
    font-size: 1.5rem; /* 24px as per spec */
    font-weight: 700;
    color: var(--color-text);
}

h3 { /* Modal Titles, etc. - also Heading 2 style */
    font-family: var(--font-roboto);
    font-size: 1.8rem;
    font-weight: 500; /* Slightly less than main H2 */
    color: var(--color-text);
}

p {
    margin-bottom: var(--spacing-medium);
    font-size: 1rem; /* Body Medium */
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global Button Styles */
.btn-primary,
.btn-secondary {
    padding: var(--spacing-small) var(--spacing-large);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: 120px;
    font-family: var(--font-roboto);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.15);
}

.btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 154, 95, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(196, 154, 95, 0.2);
}

.btn-secondary {
    background: #f3f4f6;
    color: var(--color-text);
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Button Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Button Disabled States */
.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled:hover,
.btn-secondary:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* Global Form Styles */
.form-section-header {
    font-family: var(--font-roboto);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-top: var(--spacing-large);
    margin-bottom: var(--spacing-medium);
    padding-bottom: var(--spacing-small);
    border-bottom: 1px solid var(--color-border);
}

.form-notice {
    background-color: rgba(226, 177, 113, 0.1); /* Lighter version of accent color */
    border-left: 3px solid var(--color-accent);
    padding: var(--spacing-medium);
    margin: var(--spacing-medium) 0;
    border-radius: var(--border-radius-soft);
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.form-notice strong {
    color: var(--color-accent);
    font-weight: 500;
}

/* Header Section */
.header-section {
    background-color: var(--color-surface);
    padding: var(--spacing-xlarge) 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.header-title {
    margin-bottom: var(--spacing-small);
    /* Match login button color */
    color: var(--color-accent);
    /* Match Project Omshana section frame styling */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.header-subtitle { /* Body Large */
    font-size: 1.5rem; /* 24px Body Large */
    color: var(--color-text-light);
    margin-bottom: var(--spacing-large);
}

.image-banners-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-large);
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    margin-top: var(--spacing-large);
}

.blob-frame {
    width: 200px; /* Adjust as needed */
    height: 200px; /* Adjust as needed */
    border-radius: var(--border-radius-blob);
    overflow: hidden;
    background-color: var(--color-secondary); /* Placeholder if image fails */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blob-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.blob-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Project Introduction Section */
.project-introduction-section {
    padding: var(--spacing-xlarge) 0;
    text-align: center;
}

.project-introduction-section .section-title {
    margin-bottom: var(--spacing-medium);
}

.project-introduction-section .section-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem; /* Body Medium - slightly larger for emphasis */
    color: var(--color-text-light);
    white-space: pre-line; /* Preserves new lines and respects multiple spaces */
}

/* Community Engagement Section */
.community-engagement-section {
    padding: var(--spacing-xlarge) 0;
    background-color: var(--color-surface);
}

.community-engagement-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

.interactive-banners-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: var(--spacing-large);
    flex-wrap: wrap;
}

.interactive-banner {
    background-color: var(--color-surface); /* If section bg is different */
    border-radius: var(--border-radius-medium);
    padding: var(--spacing-medium);
    text-align: center;
    width: calc(25% - var(--spacing-large) * 3 / 4); /* Adjust for 4 items with gap */
    min-width: 220px; /* Minimum width before wrapping */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.interactive-banner img {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: var(--border-radius-soft);
    margin-bottom: var(--spacing-medium);
}

.banner-link { /* Label */
    font-family: var(--font-roboto);
    font-size: 1rem; /* Label size */
    font-weight: 500;
    display: block;
    color: var(--color-primary);
}

/* Pop-up Modals */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex; /* Use flex for centering */
    align-items: flex-start; /* start so top of modal is visible */
    justify-content: center;
    padding: var(--spacing-large) var(--spacing-medium); /* space from viewport edges */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: var(--color-surface);
    padding: var(--spacing-xlarge);
    border-radius: var(--border-radius-medium);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;            /* prevent overflow off-screen */
    overflow-y: auto;            /* scroll if taller than viewport */
    margin-top: var(--spacing-large); /* spacing from very top */
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-button {
    color: var(--color-secondary);
    position: absolute;
    top: var(--spacing-medium);
    right: var(--spacing-medium);
    font-size: 1.8rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-button:hover,
.close-button:focus {
    color: var(--color-text);
}

.modal-title { /* Heading 2 style */
    margin-bottom: var(--spacing-medium);
    text-align: center;
    color: var(--color-accent);
}

.modal-description { /* Body Medium */
    margin-bottom: var(--spacing-large);
    font-size: 1rem;
    color: var(--color-text-light);
    text-align: center;
}

.application-form div {
    margin-bottom: var(--spacing-medium);
}

.application-form label { /* Label */
    display: block;
    margin-bottom: var(--spacing-small);
    font-family: var(--font-roboto);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form input[type="url"] { /* Body Medium for input text */
    width: 100%;
    padding: var(--spacing-medium);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-soft);
    font-family: var(--font-roboto);
    font-size: 1rem;
    color: var(--color-text);
}

.application-form input[type="text"]:focus,
.application-form input[type="email"]:focus,
.application-form input[type="tel"]:focus,
.application-form input[type="url"]:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.submit-button {
    display: block;
    width: 100%;
    background-color: var(--color-accent);
    color: white;
    padding: var(--spacing-medium);
    border: none;
    border-radius: var(--border-radius-soft);
    font-family: var(--font-roboto);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #c89a55; /* Darker shade of accent */
}

/* Disabled state for join buttons */
.join-button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
footer {
    background-color: var(--color-text);
    color: var(--color-background);
    text-align: center;
    padding: var(--spacing-large) 0;
    margin-top: var(--spacing-xlarge);
}

footer p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ------------------------------------------------------------------
   Contact Section
------------------------------------------------------------------*/
.contact-section {
    padding: var(--spacing-xlarge) 0;
    background-color: var(--color-surface);
}

.contact-content {
    display: flex;
    flex-direction: column;   /* align items vertically */
    align-items: center;      /* center horizontally */
    text-align: center;       /* center text */
    gap: var(--spacing-large);
}

.contact-image-rounded {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
}

.contact-details {
    flex: 1;
    min-width: 260px;
}

.contact-name {
    font-family: var(--font-comfortaa);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-small);
}

/* Center the contact section title */
.contact-section .section-title {
    text-align: center;
    margin-bottom: var(--spacing-large);
}

/* Contact description - match Project Omshana description styling */
.contact-section .contact-description {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--spacing-large);
    font-size: 1.1rem; /* Body Medium - slightly larger for emphasis */
    color: var(--color-text-light);
    text-align: center;
    white-space: pre-line; /* Preserves new lines and respects multiple spaces */
}

/* ------------------------------------------------------------------
   Contact Form
------------------------------------------------------------------*/
.contact-form {
    margin-top: var(--spacing-large);
    max-width: 600px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: var(--spacing-medium);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-soft);
    font-family: var(--font-roboto);
    font-size: 1rem;
    margin-bottom: var(--spacing-medium);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background-color: var(--color-accent);
    color: #fff;
    border: none;
    padding: var(--spacing-medium);
    font-family: var(--font-roboto);
    font-size: 1rem;
    border-radius: var(--border-radius-soft);
    cursor: pointer;
    width: 100%;
    transition: background-color .3s ease;
}

.contact-form button:hover {
    background-color: #c89a55;
}

/* Contact form checkbox styling */
.contact-form .consent-checkboxes {
    margin: var(--spacing-large) 0;
    text-align: left;
}

.contact-form .checkbox-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-medium);
    gap: var(--spacing-small);
}

.contact-form .checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 2px; /* Align with first line of text */
    flex-shrink: 0;
}

.contact-form .checkbox-item label {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
}

.contact-form .checkbox-item label a {
    color: var(--color-accent);
    text-decoration: underline;
}

.contact-form .checkbox-item label a:hover {
    color: #c89a55;
}

/* ------------------------------------------------------------------
   Form Enhancements
------------------------------------------------------------------*/
.application-form textarea {
    width: 100%;
    padding: var(--spacing-medium);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-soft);
    font-family: var(--font-roboto);
    font-size: 1rem;
    resize: vertical;
}

fieldset {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-soft);
    padding: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
}

legend {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    padding: 0 var(--spacing-small);
}

.skills-fieldset div,
.legal-consent-group div {
    display: flex;
    align-items: center;
    gap: var(--spacing-small);
    margin-bottom: var(--spacing-small);
}

.skills-fieldset label,
.legal-consent-group label {
    margin: 0;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ------------------------------------------------------------------
   Legal Modals
------------------------------------------------------------------*/
.legal-modal {
    z-index: 1100; /* Higher than regular modals to appear on top */
}

.legal-modal .modal-content {
    max-width: 600px;
}

/* ------------------------------------------------------------------
   Project Roadmap - Vertical List with Horizontal Cards
------------------------------------------------------------------*/
.roadmap-container {
    margin-top: var(--spacing-xlarge);
    padding: var(--spacing-xlarge) 0;
}

.roadmap-title {
    text-align: center;
    font-family: var(--font-comfortaa);
    font-size: 2.2rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-xlarge);
}

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-large);
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-stage {
    display: flex;
    flex-direction: row;
    align-items: flex-start; /* Align items to the top */
    gap: var(--spacing-large);
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: var(--spacing-large);
    transition: all 0.3s ease;
    border-left: 5px solid var(--color-border);
    opacity: 0.7;
}

.roadmap-stage.completed {
    background-color: #f9f9f9;
    border-left-color: var(--color-success);
}

.roadmap-stage.active {
    opacity: 1;
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-left-color: var(--color-accent);
}

.stage-marker-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-small);
    flex-shrink: 0;
    width: 60px;
    padding-top: 5px;
}

.stage-icon {
    font-size: 1.8rem;
    color: var(--color-text-light);
}

.roadmap-stage.completed .stage-icon {
    color: var(--color-success);
}

.roadmap-stage.active .stage-icon {
    color: var(--color-accent);
}

.stage-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-light);
    background-color: var(--color-background);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.stage-content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
}

.stage-title {
    font-family: var(--font-roboto);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
    margin-bottom: var(--spacing-small);
    text-align: center;
    width: 100%;
}

.roadmap-stage.completed .stage-title {
    text-decoration: line-through;
    color: var(--color-text-light);
}

.stage-description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: var(--spacing-medium);
}

.stage-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-roboto);
    background-color: var(--color-accent);
    color: white;
    align-self: flex-start;
}

/* Hide elements that are no longer needed in this layout */
.stage-header { display: none; }



/* Mobile responsiveness */
@media (max-width: 768px) {
    .roadmap-stage {
        margin-bottom: var(--spacing-large);
    }
    
    .stage-marker {
        margin-right: var(--spacing-medium);
    }
    
    .stage-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stage-connector {
        height: 60px;
    }
    
    .stage-title {
        font-size: 1.2rem;
    }
    
    .stage-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    h1 {font-size: 2.4rem;}
    h2 {font-size: 1.9rem;}
    h3 {font-size: 1.6rem;}

    .container {
        padding: var(--spacing-medium) 0;
    }
    .header-section, 
    .project-introduction-section,
    .community-engagement-section {
        padding: var(--spacing-large) var(--spacing-medium);
    }
    
    .image-banners-container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        grid-template-rows: 1fr 1fr; /* 2 rows */
        gap: var(--spacing-medium);
        justify-items: center;
        align-items: center;
        max-width: 350px; /* Limit the grid width for better mobile experience */
        margin: 0 auto; /* Center the grid */
    }
    .blob-frame {
        width: 150px;
        height: 150px;
        margin-bottom: 0; /* Remove bottom margin since we're using grid gap */
    }

    .interactive-banners-container {
        flex-direction: column;
        align-items: center;
    }
    .interactive-banner {
        width: 80%;
        max-width: 350px; /* Max width for single column items */
        margin-bottom: var(--spacing-large);
    }
    .interactive-banner:last-child {
        margin-bottom: 0;
    }

    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-image-rounded {
        width: 140px;
        height: 140px;
    }
}

@media (max-width: 576px) {
    body { font-size: 15px; }
    h1 {font-size: 2rem;}
    h2 {font-size: 1.7rem;}
    h3 {font-size: 1.4rem;}
    .header-subtitle { font-size: 1.1rem; }

    .image-banners-container {
        max-width: 300px; /* Smaller max width for very small screens */
        gap: var(--spacing-small); /* Smaller gap for very small screens */
    }
    .blob-frame {
        width: 120px;
        height: 120px;
    }
    .modal-content {
        padding: var(--spacing-large) var(--spacing-medium);
        width: 95%;
    }
    .application-form input[type="text"],
    .application-form input[type="email"] {
        padding: var(--spacing-small); /* Slightly smaller padding on small screens */
    }
    .submit-button {
        font-size: 1rem;
        padding: var(--spacing-small) var(--spacing-medium);
    }
}

/* Project Logo Styling */
.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.project-logo {
    max-width: 300px;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .project-logo {
        max-width: 180px;
    }
}

/* Social Media Icons for Contact Section */
.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: var(--color-primary);
}

.social-links i {
    font-size: 30px; /* 50% bigger than 20px */
}

.social-links a:hover i {
    color: var(--color-accent, #E2B171); /* brown-orange accent color */
}

@media (max-width: 768px) {
    .social-links {
        gap: 10px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .social-links i {
        font-size: 18px;
    }
}

/* Events Section Styles */
.events-section {
    background-color: var(--color-surface);
    padding: var(--spacing-xlarge) 0;
}

.events-section .section-title {
    text-align: center;
    color: var(--color-text);
    margin-bottom: var(--spacing-xlarge);
    font-family: var(--font-comfortaa);
    font-weight: 600;
    font-size: 2.5rem;
}

.events-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.events-container iframe {
    max-width: 100%;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.events-container iframe:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for the calendar embed */
@media (max-width: 768px) {
    .events-container iframe {
        width: 100% !important;
        height: 400px !important;
    }
}

@media (max-width: 480px) {
    .events-container iframe {
        height: 350px !important;
    }
}

/* Event Registration Button */
.event-registration-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--color-accent), #c49a5f);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-medium);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    white-space: nowrap;
    max-width: calc(100% - 30px);
    text-overflow: ellipsis;
    overflow: hidden;
}

.event-registration-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #c49a5f, var(--color-accent));
}

/* Ensure event banner has relative positioning for absolute button */
.event-banner {
    position: relative;
}

/* Empty state when no events */
.events-empty {
    text-align: center;
    padding: var(--spacing-xlarge);
    color: var(--color-text-light);
    font-style: italic;
}

/* Mobile Responsive Styles for Events Section */
@media (max-width: 768px) {
    .events-section {
        padding: var(--spacing-large) var(--spacing-medium);
    }
    
    .events-section .section-title {
        font-size: 2rem;
        margin-bottom: var(--spacing-large);
    }
    
    .events-container {
        gap: var(--spacing-medium);
    }
    
    .event-banner {
        flex-direction: column;
        background-color: var(--color-off-white);
    }
    
    .event-image {
        flex: none;
        width: 100%;
        height: 200px;
        order: 1;
    }
    
    .event-content {
        order: 2;
        padding: var(--spacing-medium);
        padding-right: calc(var(--spacing-medium) + 45px); /* Space for expand button */
    }
    
    .event-title {
        font-size: 1.3rem;
        margin-bottom: var(--spacing-small);
        margin-right: 0; /* Reset any right margin */
    }
    
    .event-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-small);
    }
    
    .event-expand-btn {
        top: var(--spacing-small);
        right: var(--spacing-small);
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .event-registration-btn {
        position: static;
        width: 100%;
        margin-top: var(--spacing-medium);
        padding: var(--spacing-medium);
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .events-section {
        padding: var(--spacing-medium) var(--spacing-small);
    }
    
    .events-section .section-title {
        font-size: 1.8rem;
        margin-bottom: var(--spacing-medium);
    }
    
    .event-banner {
        border-radius: var(--border-radius-small);
        margin-bottom: var(--spacing-small);
    }
    
    .event-image {
        height: 180px;
    }
    
    .event-content {
        padding: var(--spacing-small);
        padding-right: calc(var(--spacing-small) + 40px); /* Space for smaller expand button */
    }
    
    .event-title {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-right: 0; /* Ensure no right margin */
    }
    
    .event-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .event-expand-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
    
    .event-registration-btn {
        padding: var(--spacing-small) var(--spacing-medium);
        font-size: 0.95rem;
        border-radius: var(--border-radius-small);
    }
}

/* Notification Popup System */
.notification-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 100000; /* Above all other modals and backdrop */
    max-width: 400px;
    width: 90%;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.notification-popup.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.notification-popup.success {
    border-color: #22c55e;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.notification-popup.error {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.notification-popup .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.notification-popup.success .icon {
    color: #22c55e;
}

.notification-popup.error .icon {
    color: #ef4444;
}

.notification-popup .title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.notification-popup .message {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.notification-popup .close-btn {
    background: #6b7280;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.notification-popup .close-btn:hover {
    background: #4b5563;
}

.notification-popup.success .close-btn {
    background: #22c55e;
}

.notification-popup.success .close-btn:hover {
    background: #16a34a;
}

.notification-popup.error .close-btn {
    background: #ef4444;
}

.notification-popup.error .close-btn:hover {
    background: #dc2626;
}

/* Notification backdrop */
.notification-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999; /* Higher than everything else */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.notification-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Registration Modal Specific Styles */
.registration-modal {
    max-width: 600px;
}

.registration-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-large);
    padding-bottom: var(--spacing-medium);
    border-bottom: 1px solid #e5e7eb;
}

.registration-modal .modal-header h3 {
    margin: 0;
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 600;
}

.registration-modal .modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.registration-modal .modal-close:hover {
    background: #f3f4f6;
    color: var(--color-text);
}

.registration-modal .modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.registration-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
}

.registration-modal .form-group {
    margin-bottom: var(--spacing-medium);
}

.registration-modal .form-group label {
    display: block;
    margin-bottom: var(--spacing-small);
    font-weight: 500;
    color: var(--color-text);
}

.registration-modal .form-group input,
.registration-modal .form-group select {
    width: 100%;
    padding: var(--spacing-small);
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.registration-modal .form-group input:focus,
.registration-modal .form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(196, 154, 95, 0.1);
}

.registration-modal .social-media-fieldset {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: var(--spacing-medium);
    margin-bottom: var(--spacing-medium);
    background: #f9fafb;
}

.registration-modal .social-media-fieldset legend {
    font-weight: 600;
    color: var(--color-accent);
    padding: 0 var(--spacing-small);
}

.registration-modal .checkbox-group {
    margin-bottom: var(--spacing-large);
}

.registration-modal .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-small);
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

.registration-modal .checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    width: auto;
}

.registration-modal .legal-link {
    color: var(--color-accent);
    text-decoration: underline;
}

.registration-modal .legal-link:hover {
    color: var(--color-primary);
}

.registration-modal .form-actions {
    display: flex;
    gap: var(--spacing-medium);
    justify-content: flex-end;
    padding-top: var(--spacing-medium);
    border-top: 1px solid #e5e7eb;
}

.registration-modal .btn-primary,
.registration-modal .btn-secondary {
    padding: var(--spacing-small) var(--spacing-large);
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    min-width: 120px;
    font-family: var(--font-roboto);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.registration-modal .btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.15);
}

.registration-modal .btn-primary:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(196, 154, 95, 0.3);
}

.registration-modal .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(196, 154, 95, 0.2);
}

.registration-modal .btn-secondary {
    background: #f3f4f6;
    color: var(--color-text);
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.registration-modal .btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.registration-modal .btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* Responsive design for registration modal */
@media (max-width: 768px) {
    .registration-modal {
        max-width: 95%;
        margin: var(--spacing-medium);
    }
    
    .registration-modal .form-row {
        grid-template-columns: 1fr;
    }
    
    .registration-modal .form-actions {
        flex-direction: column;
    }
}

/* =================================
   NETWORK PAGE STYLES
   ================================= */

/* Network Header Actions */
.header-actions {
    margin: var(--spacing-large) 0;
    text-align: center;
}

.btn-home {
    background: var(--color-accent);
    color: var(--color-surface);
    padding: 12px 24px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-family: var(--font-roboto);
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-home:hover {
    background: #d4a762;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(226, 177, 113, 0.4);
    text-decoration: none;
    color: var(--color-surface);
}

.btn-home i {
    font-size: 1rem;
}

/* Network Stats in Header */
.network-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-comfortaa);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-roboto);
}

/* Network Controls */
.network-controls {
    background-color: var(--color-surface);
    padding: var(--spacing-large) 0;
    border-bottom: 1px solid var(--color-border);
}

.controls-wrapper {
    display: flex;
    align-items: center;
    gap: var(--spacing-large);
    flex-wrap: wrap;
    justify-content: center;
}

.search-container {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-medium);
    font-size: 1rem;
    font-family: var(--font-roboto);
    transition: all 0.3s ease;
    background: var(--color-surface);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(226, 177, 113, 0.1);
}

.search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-light);
    pointer-events: none;
}

.filter-container {
    min-width: 200px;
}

.filter-select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-medium);
    font-size: 1rem;
    font-family: var(--font-roboto);
    background: var(--color-surface);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.view-toggle {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
}

.view-btn {
    padding: 12px 16px;
    background: var(--color-surface);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    font-family: var(--font-roboto);
}

.view-btn:hover {
    background: var(--color-background);
    color: var(--color-accent);
}

.view-btn.active {
    background: var(--color-accent);
    color: var(--color-white);
}

.view-btn + .view-btn {
    border-left: 1px solid var(--color-border);
}

/* Network Profiles Section */
.network-profiles {
    padding: var(--spacing-xlarge) 0;
    min-height: 60vh;
    background-color: var(--color-background);
}

.profiles-grid {
    display: grid;
    gap: calc(var(--spacing-large) + 1rem); /* Extra space for avatar overflow */
    margin-top: var(--spacing-large);
    padding-bottom: 2rem; /* Ensure last row has space for avatars */
}

.profiles-grid.grid-view {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.profiles-grid.list-view {
    grid-template-columns: 1fr;
}

/* Profile Cards */
.profile-card {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: visible; /* Allow avatar to extend beyond card boundaries */
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--color-border);
    margin-bottom: 2rem; /* Add space for avatar overflow */
}

.profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.profile-card-header {
    position: relative;
    height: 180px;
    overflow: visible; /* Allow avatar to extend beyond header */
}

.profile-cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-background);
    border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0; /* Only round top corners */
}

.profile-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-surface);
    z-index: 15; /* Higher z-index to ensure it's always on top */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card-body {
    padding: 50px var(--spacing-large) var(--spacing-large);
    position: relative;
    z-index: 1; /* Keep body content below avatar */
    background: var(--color-surface); /* Ensure background doesn't interfere */
    margin-top: 0; /* Remove any top margin that might interfere */
}

.profile-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-family: var(--font-roboto);
}

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

/* New role tag styling */
.profile-role-container {
    margin-bottom: 0.5rem;
}

.profile-role-tag {
    display: inline-block;
    background: var(--color-border);
    color: var(--color-text-light);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    text-transform: capitalize;
    font-family: var(--font-roboto);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.profile-role-tag.clickable-role {
    cursor: pointer;
    user-select: none;
}

.profile-role-tag.clickable-role:hover {
    background: var(--color-accent);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-color: var(--color-accent);
}

.profile-role-tag.clickable-role:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.profile-title {
    color: var(--color-accent);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-family: var(--font-roboto);
}

.profile-location {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-roboto);
}

.profile-bio-preview {
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-family: var(--font-roboto);
}

/* Bio expansion styles */
.profile-bio-container {
    margin: 10px 0;
}

.profile-bio-preview.expanded {
    max-height: none;
}

.bio-read-more, .bio-read-less {
    color: #4a90e2;
    cursor: pointer;
    font-weight: 500;
    transition: color 0.2s ease;
}

.bio-read-more:hover, .bio-read-less:hover {
    color: #357abd;
    text-decoration: underline;
}

.bio-expand-text {
    color: var(--color-text-light);
}

.profile-social {
    display: flex;
    gap: 0.5rem;
}

/* Profile Action Buttons */
.profile-actions-bar {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.5rem;
    z-index: 20; /* Ensure action buttons are always on top */
}

.action-icon-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.action-icon-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.report-btn:hover {
    background: #dc3545;
    color: var(--color-surface);
    border-color: #dc3545;
}

.edit-btn:hover {
    background: var(--color-accent);
    color: var(--color-surface);
    border-color: var(--color-accent);
}

/* List View Styles */
.profiles-grid.list-view .profile-card {
    display: flex;
    align-items: stretch;
    padding: 0;
    position: relative;
    min-height: 160px;
}

.profiles-grid.list-view .profile-card-header {
    position: relative;
    width: 200px;
    height: auto;
    flex-shrink: 0;
    margin-right: 0;
    overflow: hidden; /* Ensure overlay stays within bounds */
}

.profiles-grid.list-view .profile-cover {
    border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
    width: 100%;
    height: 100%;
    min-height: 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.profiles-grid.list-view .profile-avatar {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 4px solid var(--color-surface);
    z-index: 15;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.profiles-grid.list-view .profile-card-body {
    flex: 1;
    padding: var(--spacing-large);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profiles-grid.list-view .profile-actions-bar {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 20;
}

/* List View Avatar Image Enhancement */
.profiles-grid.list-view .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Mobile List View Overlay */
@media (max-width: 768px) {
    .profiles-grid.list-view .profile-cover::before {
        border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
    }
}

/* List View Mobile Responsive */
@media (max-width: 768px) {
    .profiles-grid.list-view .profile-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .profiles-grid.list-view .profile-card-header {
        width: 100%;
        height: 140px;
        margin-right: 0;
    }
    
    .profiles-grid.list-view .profile-cover {
        border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
        min-height: 140px;
    }
    
    .profiles-grid.list-view .profile-avatar {
        top: auto;
        left: 50%;
        bottom: -25px;
        transform: translateX(-50%);
        width: 70px;
        height: 70px;
        border: 4px solid var(--color-surface);
    }
    
    .profiles-grid.list-view .profile-card-body {
        padding-top: calc(var(--spacing-large) + 25px);
    }
}

/* Profile Modal */
.profile-modal-content {
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
    border-radius: var(--border-radius-medium);
    background: var(--color-surface);
}

.profile-modal-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.profile-cover-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: var(--color-background);
}

.profile-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 60px 30px 30px;
    color: var(--color-surface);
    display: flex;
    align-items: end;
    gap: var(--spacing-large);
}

.profile-info .profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-surface);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.profile-info .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: var(--font-comfortaa);
    color: var(--color-surface);
}

.profile-details .profile-role {
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: var(--font-roboto);
}

.profile-details .profile-location {
    opacity: 0.9;
    font-size: 1rem;
    font-family: var(--font-roboto);
}

.profile-modal-body {
    padding: var(--spacing-xlarge);
}

.profile-bio h3,
.profile-contact h3 {
    color: var(--color-text);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.5rem;
    font-family: var(--font-roboto);
}

.profile-bio p {
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    font-family: var(--font-roboto);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 16px;
    background: var(--color-background);
    border-radius: var(--border-radius-medium);
    transition: background 0.3s ease;
}

.contact-item:hover {
    background: var(--color-border);
}

.contact-item i {
    color: var(--color-accent);
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-roboto);
}

.contact-item a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: var(--color-background);
    border-radius: 20px;
    text-decoration: none;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
    font-family: var(--font-roboto);
}

.social-link:hover {
    background: var(--color-accent);
    color: var(--color-surface);
    border-color: var(--color-accent);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

.profile-social .social-icon i {
    font-size: 22.5px; /* 25% smaller than 30px */
    transition: color 0.3s;
}

.profile-social .social-icon:hover i {
    color: var(--color-accent, #E2B171); /* brown-orange accent color */
}

.profile-actions {
    display: flex;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    justify-content: center;
}

/* Claims and Reports Styling */
.claim-item, .report-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.claim-header, .report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.claim-status, .report-status {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.status-approved {
    background-color: #d1edff;
    color: #0c5460;
    border: 1px solid #b3d9ff;
}

.status-rejected, .status-dismissed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-resolved {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.claim-details, .report-details {
    margin-bottom: 12px;
}

.claim-details p, .report-details p {
    margin: 4px 0;
    font-size: 14px;
}

.claim-actions, .report-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Network Header */
.network-header {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 100%);
    padding: var(--spacing-xlarge) 0;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.network-header-content {
    max-width: 1000px;
    margin: 0 auto;
}

.network-header .header-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-family: var(--font-comfortaa);
}

.network-header .header-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-family: var(--font-roboto);
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent);
    color: var(--color-surface);
    padding: 12px 24px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-weight: 500;
    font-family: var(--font-roboto);
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent);
    box-shadow: 0 4px 15px rgba(226, 177, 113, 0.3);
}

.btn-home:hover {
    background: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 177, 113, 0.4);
    text-decoration: none;
}

.btn-home i {
    font-size: 1.2rem;
}

/* Loading and No Results States */
.loading-container,
.no-results-container {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-text-light);
}

.loading-container .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-border);
    border-top: 4px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.no-results-container i {
    font-size: 3rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    display: block;
}

.no-results-container h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-family: var(--font-roboto);
}

.no-results-container p {
    font-size: 1rem;
    color: var(--color-text-light);
    font-family: var(--font-roboto);
}

/* Network Page Responsive Styles */
@media (max-width: 768px) {
    .network-header .header-title {
        font-size: 2.5rem;
    }
    
    .network-header .header-subtitle {
        font-size: 1.1rem;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .controls-wrapper {
        flex-direction: column;
        gap: var(--spacing-medium);
    }
    
    .search-container {
        min-width: auto;
        max-width: none;
    }
    
    .profiles-grid.grid-view {
        grid-template-columns: 1fr;
    }
    
    .profile-card {
        max-width: 400px;
        min-width: 280px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .network-header .header-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .network-header,
    .network-controls,
    .network-profiles {
        padding-left: var(--spacing-small);
        padding-right: var(--spacing-small);
    }
}

/* Network Carousel Section */
.network-carousel-section {
    padding: var(--spacing-xlarge) 0;
    background-color: var(--color-background);
}

.network-carousel-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    font-family: var(--font-comfortaa);
    text-align: center;
}

.network-carousel-section .section-description {
    font-size: 1.2rem;
    color: var(--color-text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 3rem;
    font-family: var(--font-roboto);
    text-align: center;
}

.network-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-medium);
    margin-bottom: 3rem;
}

.network-carousel-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: var(--border-radius-medium);
}

.network-carousel {
    display: flex;
    gap: var(--spacing-medium);
    transition: transform 0.3s ease;
    align-items: stretch;
}

.carousel-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    color: var(--color-text-light);
}

.carousel-loading .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-border);
    border-top: 4px solid var(--color-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.carousel-profile-card {
    flex: 0 0 300px;
    position: relative;
    background: var(--color-surface);
    border-radius: var(--border-radius-medium);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--color-border);
}

.carousel-profile-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.carousel-profile-card .profile-card-header {
    position: relative;
    height: 150px;
    overflow: hidden;
}

.carousel-profile-card .profile-cover {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.carousel-profile-card .profile-avatar {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-surface);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.carousel-profile-card .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-profile-card .profile-card-body {
    padding: 35px var(--spacing-medium) var(--spacing-medium);
}

.carousel-profile-card .profile-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.3rem;
    font-family: var(--font-roboto);
}

.carousel-profile-card .profile-role {
    color: var(--color-accent);
    font-weight: 500;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    font-family: var(--font-roboto);
}

.carousel-profile-card .profile-location {
    color: var(--color-text-light);
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.carousel-profile-card .profile-bio-preview {
    color: var(--color-text-light);
    font-size: 0.85rem;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.carousel-btn {
    background: var(--color-surface);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-accent);
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-surface, #fff);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(226, 177, 113, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: var(--color-surface);
    color: var(--color-accent);
}

.network-carousel-cta {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 32px 0;
}

.btn-network-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-accent, #E2B171);
    color: var(--color-surface, #fff);
    padding: 16px 32px;
    border-radius: var(--border-radius-medium, 8px);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: var(--font-roboto, Arial, sans-serif);
    transition: all 0.3s ease;
    border: 2px solid var(--color-accent, #E2B171);
    box-shadow: 0 4px 15px rgba(226, 177, 113, 0.3);
}

.btn-network-cta:hover {
    background: transparent;
    color: var(--color-accent, #E2B171);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 177, 113, 0.4);
    text-decoration: none;
}

.btn-network-cta i {
    font-size: 1.2rem;
}

/* Event Description HTML Content Styling */
.event-full-description {
    margin-bottom: 1rem;
}

.event-full-description h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 1rem 0 0.5rem 0;
    font-family: var(--font-roboto);
}

.event-full-description h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0.8rem 0 0.4rem 0;
    font-family: var(--font-roboto);
}

.event-full-description p {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.event-full-description ul {
    margin: 0.5rem 0 1rem 0;
    padding-left: 1.5rem;
}

.event-full-description li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.event-full-description strong {
    font-weight: 600;
    color: var(--color-accent);
}

.event-full-description .omshana-description {
    /* Container for custom formatted event descriptions */
    padding: 0.5rem 0;
}

/* List View Content Adjustments */
.profiles-grid.list-view .profile-bio-preview {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    max-height: 4.2rem;
}

.profiles-grid.list-view .profile-social {
    margin-top: auto;
    padding-top: var(--spacing-small);
}

/* List View Action Buttons Enhancement */
.profiles-grid.list-view .action-icon-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profiles-grid.list-view .action-icon-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* List View Cover Image Overlay for Better Avatar Contrast */
.profiles-grid.list-view .profile-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
    pointer-events: none;
}

/* Mobile List View Overlay */
@media (max-width: 768px) {
    .profiles-grid.list-view .profile-cover::before {
        border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
    }
}

/* Ultra-specific mobile override for profile modals */
@media (max-width: 768px) {
    #edit-profile-modal .image-upload-section,
    #add-profile-modal .image-upload-section {
        grid-template-columns: 1fr !important;
        display: grid !important;
        flex-direction: column !important;
    }
    
    #edit-profile-modal .image-upload-group,
    #add-profile-modal .image-upload-group {
        width: 100% !important;
        display: block !important;
    }
}

/* Mobile Override for Image Upload Section - Force Single Column */
@media (max-width: 768px) {
    .image-upload-section {
        grid-template-columns: 1fr !important;
        display: grid !important;
    }
}

/* Profile Form Styles (Edit and Add Profile) */
/* ============================================== */

/* Modal Specific Width for Profile Forms */
#edit-profile-modal .modal-content,
#add-profile-modal .modal-content,
#change-password-modal .modal-content,
#password-reset-modal .modal-content {
    max-width: 700px;
    width: 95%;
}

/* Form Grid Layout for Profile Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Form Section Headers */
.form-section-header {
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-accent);
}

.form-section-header:first-child {
    margin-top: 0;
}

.form-section-header h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.form-section-description {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
    font-style: italic;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    display: block;
    font-family: var(--font-roboto);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-medium);
    font-size: 1rem;
    font-family: var(--font-roboto);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: var(--color-surface);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px rgba(226, 177, 113, 0.1);
}

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

/* Image Upload Section */
.image-upload-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: var(--border-radius-medium);
    border: 1px solid var(--color-border);
}

.image-upload-group {
    text-align: center;
}

.image-upload-group label {
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: block;
    font-size: 1rem;
}

.image-upload-group input[type="file"] {
    position: relative;
    width: 100%;
    height: auto;
    opacity: 1;
    cursor: pointer;
    z-index: 2;
    margin: 8px 0;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-small);
    background: var(--color-surface);
}

.image-upload-group {
    text-align: center;
    position: relative; /* Ensure absolute positioning is relative to this container */
}

.file-input-wrapper {
    position: relative;
    width: 100%;
    min-height: 80px;
    margin-bottom: 1rem;
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius-medium);
    background: var(--color-surface);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.file-input-wrapper:hover {
    border-color: var(--color-accent);
    background: rgba(226, 177, 113, 0.05);
}

.file-input-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.9rem;
    pointer-events: none;
}

.file-input-text i {
    font-size: 1.5rem;
    color: var(--color-accent);
}

.image-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.profile-image-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
}

/* File selected state */
.file-input-wrapper.has-file {
    border-color: var(--color-accent);
    background: rgba(226, 177, 113, 0.1);
}

.file-input-wrapper.has-file .file-input-text span {
    color: var(--color-accent);
    font-weight: 500;
}

/* Drag and drop states */
.file-input-wrapper.drag-over {
    border-color: var(--color-accent);
    background: rgba(226, 177, 113, 0.15);
    transform: scale(1.02);
}

/* Form Notice */
.form-notice {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: var(--border-radius-medium);
    padding: 1rem;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #1976d2;
}

.form-notice i {
    color: #2196f3;
    font-size: 1.1rem;
}

.form-note {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    border-radius: var(--border-radius-medium);
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-border);
}

/* Profile Form Final Actions Override */
.profile-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .profile-form-actions {
        flex-direction: column-reverse !important;
        gap: 0.8rem !important;
        justify-content: stretch !important;
    }
    
    .profile-form-actions button {
        width: 100% !important;
        min-height: 44px !important;
    }
}

/* Override any inline styles on mobile */
@media (max-width: 768px) {
    [style*="display: flex"]:has(button.btn-primary),
    [style*="display: flex"]:has(button.btn-secondary) {
        flex-direction: column-reverse !important;
        gap: 0.8rem !important;
    }
    
    [style*="display: flex"] button.btn-primary,
    [style*="display: flex"] button.btn-secondary {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* Mobile-specific file input wrapper styles */
@media (max-width: 768px) {
    .file-input-wrapper {
        min-height: 70px;
        padding: 0.5rem;
    }
    
    .file-input-text {
        padding: 0.75rem;
        gap: 0.3rem;
    }
    
    .file-input-text i {
        font-size: 1.2rem;
    }
    
    .file-input-text span {
        font-size: 0.8rem;
    }
}

/* Ensure form grid is responsive for mobile */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
    }
}

/* Checkbox styling for Report and Claim Profile modals */
.checkbox-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0.75rem;
}

.checkbox-group .checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    width: auto;
    flex-shrink: 0;
}

.checkbox-group .checkbox-label span {
    flex: 1;
}

/* Specific styling for styled-checkbox-group (Report form) */
.styled-checkbox-group .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
}

.styled-checkbox-group .checkbox-label input[type="checkbox"] {
    margin: 0;
    margin-top: 2px;
    width: auto;
    flex-shrink: 0;
}

/* Mobile Responsive Styles for Network Carousel */
@media (max-width: 768px) {
    .network-carousel-container {
        gap: var(--spacing-small);
        margin-bottom: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .carousel-btn:hover {
        transform: scale(1.02);
    }
    
    .carousel-profile-card {
        flex: 0 0 280px;
    }
    
    .network-carousel {
        gap: var(--spacing-small);
    }
}

@media (max-width: 480px) {
    .network-carousel-container {
        gap: var(--spacing-xsmall);
        margin-bottom: 1.5rem;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-btn:hover {
        transform: scale(1.01);
    }
    
    .carousel-profile-card {
        flex: 0 0 250px;
    }
    
    .carousel-profile-card .profile-card-header {
        height: 120px;
    }
    
    .carousel-profile-card .profile-avatar {
        width: 50px;
        height: 50px;
        bottom: -20px;
    }
    
    .carousel-profile-card .profile-card-body {
        padding: 30px var(--spacing-small) var(--spacing-small);
    }
    
    .carousel-profile-card .profile-name {
        font-size: 1.1rem;
    }
    
    .carousel-profile-card .profile-role {
        font-size: 0.8rem;
    }
    
    .carousel-profile-card .profile-location {
        font-size: 0.75rem;
    }
    
    .carousel-profile-card .profile-bio-preview {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

/* Custom X (Twitter) Icon */
.fab.fa-x-custom::before {
    content: "𝕏";
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-weight: 700;
    font-style: normal;
}
