/* Gossip Box Page Styles */

/* Hero Section */
.gossip-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top left, rgba(220, 20, 60, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(178, 34, 34, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 8rem 0 4rem;
}

.gossip-hero-red-accent {
    position: absolute;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.gossip-hero-red-accent-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-45deg);
    animation: accentPulse 3s ease-in-out infinite;
}

.gossip-hero-red-accent-2 {
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation: accentPulse 3s ease-in-out infinite 1.5s;
}

@keyframes accentPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

.gossip-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gossip-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.gossip-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    animation: floatShape 20s ease-in-out infinite;
}

.gossip-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.gossip-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: -7s;
}

.gossip-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
    }
}

.gossip-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.gossip-hero-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.1);
    line-height: 1;
    margin-bottom: -2rem;
    letter-spacing: -0.05em;
}

.gossip-hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gossip-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Submit Section */
.gossip-submit-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    overflow: hidden;
}

.gossip-submit-red-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.gossip-submit-red-circle-1 {
    width: 200px;
    height: 200px;
    top: 5%;
    left: 3%;
    animation: rotateCircle 25s linear infinite;
}

.gossip-submit-red-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 5%;
    animation: rotateCircle 20s linear infinite reverse;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.gossip-submit-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gossip-submit-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gossip-submit-label {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.gossip-submit-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gossip-submit-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.gossip-submit-form-wrapper {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
}

.gossip-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gossip-form-group {
    position: relative;
}

.gossip-textarea {
    width: 100%;
    padding: 1.5rem;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ffffff;
    resize: vertical;
    min-height: 150px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.gossip-textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.gossip-textarea::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.gossip-char-count {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
}

.gossip-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.9) 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 25px rgba(220, 20, 60, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gossip-submit-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(220, 20, 60, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.gossip-submit-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

.gossip-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.gossip-submit-btn svg {
    transition: transform 0.3s ease;
}

.gossip-submit-btn:hover:not(:disabled) svg {
    transform: translateX(5px);
}

.gossip-submit-message {
    display: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    animation: slideDown 0.3s ease;
}

.gossip-submit-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(56, 142, 60, 0.1) 100%);
    color: #2e7d32;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.gossip-submit-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(198, 40, 40, 0.1) 100%);
    color: #c62828;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Feed Section */
.gossip-feed-section {
    position: relative;
    padding: 7rem 0;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(220, 20, 60, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 20% 100%, rgba(178, 34, 34, 0.03) 0%, transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    overflow: hidden;
}

.gossip-feed-red-line {
    position: absolute;
    width: 2px;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    opacity: 0.2;
    z-index: 0;
}

.gossip-feed-red-line-1 {
    top: 10%;
    left: 15%;
    transform: rotate(45deg);
}

.gossip-feed-red-line-2 {
    bottom: 20%;
    right: 12%;
    transform: rotate(-45deg);
}

.gossip-feed-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gossip-feed-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.gossip-feed-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(178, 34, 34, 0.08) 100%);
    border: 1px solid rgba(220, 20, 60, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.1);
    position: relative;
    overflow: hidden;
}


.gossip-feed-label::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s infinite;
}

@keyframes whisper {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.1) rotate(-5deg); }
    75% { transform: scale(1.1) rotate(5deg); }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.gossip-feed-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(220, 20, 60, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    position: relative;
}

.gossip-feed-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    position: relative;
    margin-bottom: 2rem;
}

.gossip-feed-subtitle::after {
    content: '💬 👂';
    display: block;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.8rem;
    letter-spacing: 1rem;
    animation: emojiFloat 3s ease-in-out infinite;
}

/* Search Section */
.gossip-search-wrapper {
    max-width: 700px;
    margin: 3rem auto 2rem;
    position: relative;
}

.gossip-search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.gossip-search-container:focus-within {
    border-color: var(--primary-red);
    box-shadow: 
        0 12px 40px rgba(220, 20, 60, 0.15),
        0 0 0 4px rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.gossip-search-icon {
    color: var(--text-light);
    margin-right: 0.8rem;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.gossip-search-container:focus-within .gossip-search-icon {
    color: var(--primary-red);
}

.gossip-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    padding: 0.2rem 0;
}

.gossip-search-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.gossip-search-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 8px;
    cursor: pointer;
    color: var(--primary-red);
    transition: all 0.3s ease;
    margin-left: 0.5rem;
    flex-shrink: 0;
}

.gossip-search-clear:hover {
    background: rgba(220, 20, 60, 0.2);
    transform: scale(1.1);
}

.gossip-search-clear:active {
    transform: scale(0.95);
}

.gossip-search-results {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.08) 0%, rgba(178, 34, 34, 0.06) 100%);
    border: 1px solid rgba(220, 20, 60, 0.15);
    border-radius: 12px;
    display: inline-block;
}

.gossip-search-results span {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1.1rem;
}

@keyframes emojiFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes chatBubble {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

@keyframes listen {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.15) rotate(-5deg); }
}

.gossip-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.gossip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid rgba(220, 20, 60, 0.18);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease backwards;
    cursor: pointer;
}

.gossip-card::before {
    content: '🔒';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    opacity: 0.3;
    z-index: 3;
    animation: lockPulse 4s ease-in-out infinite;
}

@keyframes lockPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.gossip-card:nth-child(1) { animation-delay: 0.1s; }
.gossip-card:nth-child(2) { animation-delay: 0.2s; }
.gossip-card:nth-child(3) { animation-delay: 0.3s; }
.gossip-card:nth-child(4) { animation-delay: 0.4s; }
.gossip-card:nth-child(5) { animation-delay: 0.5s; }
.gossip-card:nth-child(6) { animation-delay: 0.6s; }

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

.gossip-card .top-line {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 20%, #FF1744 50%, var(--primary-red) 80%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 10px rgba(220, 20, 60, 0.3);
    z-index: 2;
}

.gossip-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.gossip-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 25px 70px rgba(220, 20, 60, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.9),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(220, 20, 60, 0.4);
}

.gossip-card:hover::after {
    opacity: 1;
}

.gossip-card:hover .top-line {
    transform: scaleX(1);
}

.gossip-card:hover::before {
    opacity: 0.6;
    transform: scale(1.2) rotate(10deg);
}

.gossip-card-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.gossip-card-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    white-space: pre-wrap;
    word-wrap: break-word;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
}

.gossip-card-text::before {
    content: '💭';
    position: absolute;
    top: -15px;
    left: -20px;
    font-size: 2.5rem;
    opacity: 0.4;
    animation: thoughtBubble 3s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(220, 20, 60, 0.2));
}

@keyframes thoughtBubble {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-3px) scale(1.1); }
}

.gossip-card-author {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    padding: 0.6rem 0.8rem;
    background: rgba(220, 20, 60, 0.05);
    border: 1px dashed rgba(220, 20, 60, 0.2);
    border-radius: 10px;
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light);
}

.gossip-author-text {
    color: var(--text-light);
    font-weight: 400;
}

.gossip-author-name {
    color: var(--primary-red);
    font-weight: 700;
    font-style: normal;
}

.gossip-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(220, 20, 60, 0.12);
    margin-top: 0.5rem;
    position: relative;
    z-index: 1;
}

.gossip-card-time {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(220, 20, 60, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(220, 20, 60, 0.1);
}

.gossip-card-time::before {
    content: '⏰';
    font-size: 0.9rem;
    animation: clockTick 2s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(10deg); }
}

.gossip-card-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 4px 8px rgba(220, 20, 60, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.gossip-card:hover .gossip-card-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(220, 20, 60, 0.4));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.gossip-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-light);
}

.gossip-loading-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(220, 20, 60, 0.1);
    border-top-color: var(--primary-red);
    border-right-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
}

.gossip-loading p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.gossip-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(250, 250, 250, 0.6) 100%);
    backdrop-filter: blur(20px);
    border: 2px dashed rgba(220, 20, 60, 0.2);
    border-radius: 24px;
    margin-top: 2rem;
}

.gossip-empty-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 8px 16px rgba(220, 20, 60, 0.2));
    animation: emptyFloat 4s ease-in-out infinite;
    display: inline-block;
    position: relative;
}

.gossip-empty-icon::before {
    content: '🤐';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: shush 3s ease-in-out infinite;
}

.gossip-empty-icon::after {
    content: '👀';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    animation: eyes 2.5s ease-in-out infinite;
}

@keyframes shush {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.2) rotate(-10deg); }
}

@keyframes eyes {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.15); }
}

@keyframes emptyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.gossip-empty h3 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, rgba(220, 20, 60, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.gossip-empty p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.gossip-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.05) 0%, rgba(198, 40, 40, 0.05) 100%);
    border: 2px solid rgba(244, 67, 54, 0.2);
    border-radius: 20px;
}

.gossip-error-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gossip-error h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #c62828;
    margin-bottom: 0.5rem;
}

.gossip-error p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gossip-hero {
        padding: 6rem 0 3rem;
        min-height: 80vh;
    }

    .gossip-submit-section,
    .gossip-feed-section {
        padding: 4rem 0;
    }

    .gossip-submit-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .gossip-feed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gossip-card {
        padding: 1.5rem;
    }

    .gossip-search-wrapper {
        margin: 2rem auto 1.5rem;
        padding: 0 1rem;
    }

    .gossip-search-container {
        padding: 0.7rem 1rem;
    }

    .gossip-search-input {
        font-size: 0.95rem;
    }

    .gossip-search-results {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
