/* Global Styles */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --accent-color: #ffe66d;
    --text-color: #2f3542;
    --light-text: #f7f7f7;
    --background: #fff;
    --dark-background: #292f36;
    --font-primary: 'Prompt', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

ul {
    list-style: none;
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
}

/* Heart Background Animation */
.heart-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.03;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50"><path fill="%23ff6b6b" d="M25 39.7l-.6-.5C11.5 28.7 8 25 8 19c0-5 4-9 9-9 4.1 0 6.4 2.3 8 4.1 1.6-1.8 3.9-4.1 8-4.1 5 0 9 4 9 9 0 6-3.5 9.7-16.4 20.2l-.6.5z"/></svg>');
    background-size: 60px;
    animation: floating-bg 120s linear infinite;
}

@keyframes floating-bg {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

/* Header and Navigation */
header {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('../images/icon-with-text--respectmyvps---waifu-big-breast-si (1).png');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: transparent;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: transparent;
    padding: 1rem 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo .highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Huge and Shiny Dating Stories Button */
.nav-links a[href="stories.html"] {
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e, #ff6b6b, #ff4757, #ff6b6b);
    background-size: 300% 300%;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 
        0 0 20px rgba(255, 107, 107, 0.5),
        0 0 40px rgba(255, 107, 107, 0.3),
        0 0 60px rgba(255, 107, 107, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    animation: 
        gradientShift 3s ease-in-out infinite,
        glowPulse 2s ease-in-out infinite,
        floatButton 4s ease-in-out infinite;
    transform: scale(1.1) !important;
    transition: all 0.3s ease !important;
}

.nav-links a[href="stories.html"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 2s ease-in-out infinite;
    pointer-events: none;
}

/* Sparkle effects for extra shine */
.nav-links a[href="stories.html"]::after {
    content: '✨';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 1.2rem;
    animation: sparkle 1.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 10;
}

.nav-links a[href="stories.html"]:hover::after {
    content: '💫';
    animation: sparkle 0.8s ease-in-out infinite;
}

/* Remove the old underline effect for the shiny button */
.nav-links a[href="stories.html"] .underline {
    display: none !important;
}

.nav-links a[href="stories.html"]:hover {
    transform: scale(1.2) translateY(-5px) !important;
    box-shadow: 
        0 0 30px rgba(255, 107, 107, 0.8),
        0 0 60px rgba(255, 107, 107, 0.5),
        0 0 90px rgba(255, 107, 107, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
}

.nav-links a[href="stories.html"]:active {
    transform: scale(1.15) translateY(-2px) !important;
    box-shadow: 
        0 0 20px rgba(255, 107, 107, 0.6),
        0 0 40px rgba(255, 107, 107, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animations for the shiny button */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 107, 107, 0.5),
            0 0 40px rgba(255, 107, 107, 0.3),
            0 0 60px rgba(255, 107, 107, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 107, 107, 0.7),
            0 0 60px rgba(255, 107, 107, 0.5),
            0 0 90px rgba(255, 107, 107, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }
}

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.8;
    }
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid transparent;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

/* Neo-tech Comments Button */
.neo-tech-comments-btn {
    position: fixed;
    top: 120px;
    left: 30px;
    z-index: 1000;
    pointer-events: auto;
}

.neo-tech-btn {
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    border: 2px solid #00ffff;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.5),
        0 0 40px rgba(0, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    animation: neoTechPulse 2s ease-in-out infinite;
}

.neo-tech-btn-inner {
    position: relative;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    border-radius: 6px;
    overflow: hidden;
}

.neo-tech-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 0 5px #00ffff);
    animation: neoTechGlow 1.5s ease-in-out infinite alternate;
}

.neo-tech-text {
    color: #00ffff;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px #00ffff;
    font-family: 'Courier New', monospace;
}

.neo-tech-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.3), transparent);
    animation: neoTechScan 3s ease-in-out infinite;
}

.neo-tech-scanner {
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: #00ffff;
    box-shadow: 0 0 10px #00ffff;
    animation: neoTechScanner 2s ease-in-out infinite;
}

/* Data stream effect */
.neo-tech-btn::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ffff, transparent, #00ffff, transparent);
    border-radius: 10px;
    z-index: -1;
    animation: dataStream 4s linear infinite;
    opacity: 0.3;
}

.neo-tech-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.6);
    border-color: #00ffff;
}

.neo-tech-btn:hover .neo-tech-icon {
    animation: neoTechGlow 0.5s ease-in-out infinite alternate;
}

.neo-tech-btn:hover .neo-tech-text {
    color: #ffffff;
    text-shadow: 0 0 15px #ffffff;
}

.neo-tech-btn:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.6),
        0 0 30px rgba(0, 255, 255, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Neo-tech animations */
@keyframes neoTechPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 255, 255, 0.5),
            0 0 40px rgba(0, 255, 255, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.1),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 255, 255, 0.7),
            0 0 60px rgba(0, 255, 255, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.15),
            inset 0 -1px 0 rgba(0, 0, 0, 0.5);
    }
}

@keyframes neoTechGlow {
    0% {
        filter: drop-shadow(0 0 5px #00ffff);
    }
    100% {
        filter: drop-shadow(0 0 15px #00ffff) drop-shadow(0 0 25px #00ffff);
    }
}

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

@keyframes neoTechScanner {
    0%, 100% {
        left: 0;
        opacity: 1;
    }
    50% {
        left: calc(100% - 2px);
        opacity: 0.7;
    }
}

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

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 2;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.floating-hearts {
    position: relative;
    width: 200px;
    height: 300px;
    flex: 1;
}

.heart {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    opacity: 0.8;
}

.heart1 {
    left: 20%;
    top: 20%;
    animation-delay: 0s;
}

.heart2 {
    left: 60%;
    top: 40%;
    animation-delay: 2s;
}

.heart3 {
    left: 30%;
    top: 70%;
    animation-delay: 4s;
}

@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: var(--light-text);
    transition: var(--transition);
    opacity: 0;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

.image-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff6e5, #ffeaf0);
}

.location-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.location-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    width: 350px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.location-image {
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image img {
    transform: scale(1.1);
}

.location-info {
    padding: 20px;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Comments Section */
.comments-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.comments-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.comment-form-container {
    background-color: var(--background);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.comment-form {
    background-color: var(--background);
}

.comments-list-container {
    background-color: var(--background);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    max-height: 600px;
    overflow-y: auto;
}

.comments-list-container h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.comments-list-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.comment-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--primary-color));
    opacity: 0.7;
}

.comment-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.comment-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.comment-avatar:hover {
    transform: scale(1.1);
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.comment-avatar:hover img {
    transform: scale(1.1);
}

.comment-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.comment-author {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

.comment-date {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.comment-text {
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1rem;
}

.comment-actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.like-btn {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
    padding: 5px 10px;
    border-radius: 15px;
}

.like-btn:hover {
    color: var(--primary-color);
    background-color: rgba(255, 107, 107, 0.1);
}

.like-btn.liked {
    color: var(--primary-color);
}

.like-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.like-count {
    font-size: 0.8rem;
    color: #666;
}

.empty-comments {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-style: italic;
}

.empty-comments p {
    font-size: 1.1rem;
    margin: 0;
}

/* Loading and animation states */
.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1); }
}

@keyframes floatHeart {
    0% { 
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    100% { 
        transform: translateY(-50px) scale(1.5);
        opacity: 0;
    }
}

.comment-hearts {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 16px;
    opacity: 0;
    animation: fadeInOut 2s ease-in-out;
    pointer-events: none;
}

/* Cloud status indicator */
.cloud-status {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cloud-status.online {
    background: rgba(76, 175, 80, 0.9);
}

.cloud-status.offline {
    background: rgba(244, 67, 54, 0.9);
}



/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--background);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.contact-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
}

.contact-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    padding: 8px 15px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Dating Stories Page Styles */
.stories-header {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/icon-with-text--respectmyvps---waifu-big-breast-si.png');
    background-size: cover;
    background-position: center;
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Back to Home Button - Summer Love Theme */
.nav-links a.back-home-btn {
    background: linear-gradient(135deg, #ff8e8e, #ffb3b3, #ffd1d1, #ff8e8e);
    color: white !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 
        0 4px 15px rgba(255, 142, 142, 0.4),
        0 0 30px rgba(255, 142, 142, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2) !important;
    position: relative !important;
    overflow: hidden !important;
}

.nav-links a.back-home-btn::before {
    display: none;
}

.nav-links a.back-home-btn::after {
    content: '💕';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 1rem;
    pointer-events: none;
    z-index: 10;
}

.nav-links a.back-home-btn:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 
        0 8px 25px rgba(255, 142, 142, 0.6),
        0 0 40px rgba(255, 142, 142, 0.4),
        0 0 60px rgba(255, 142, 142, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3) !important;
}



.nav-links a.back-home-btn:hover::after {
    content: '💖';
}

.nav-links a.back-home-btn:active {
    transform: translateY(-1px) scale(1.02) !important;
    box-shadow: 
        0 4px 15px rgba(255, 142, 142, 0.5),
        0 0 25px rgba(255, 142, 142, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}



.stories-section {
    padding: 100px 0;
    background-color: var(--background);
}

.story-card {
    display: flex;
    gap: 30px;
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-card.reverse {
    flex-direction: row-reverse;
}

.story-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    flex: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.story-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #777;
}

.location {
    display: flex;
    align-items: center;
}

.location-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23ff6b6b" d="M172.3 501.7C27 291 0 269.4 0 192 0 86 86 0 192 0s192 86 192 192c0 77.4-27 99-172.3 309.7-9.5 13.7-29.9 13.7-39.4 0zM192 272c44.2 0 80-35.8 80-80s-35.8-80-80-80-80 35.8-80 80 35.8 80 80 80z"/></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 5px;
}

.story-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial {
    font-style: italic;
    color: #555;
    padding: 15px 0;
    border-top: 1px dashed #ddd;
    margin-top: 15px;
}

.stories-cta {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

.stories-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stories-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.stories-cta .cta-button {
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 12px 30px;
}

.stories-cta .cta-button:hover {
    background-color: transparent;
    border-color: white;
    color: white;
}

/* Media Queries */
@media screen and (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .story-card,
    .story-card.reverse {
        flex-direction: column;
    }
    
    .story-image {
        max-width: none;
    }
    
    .comments-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    /* Mobile styles for the huge shiny button */
    .nav-links a[href="stories.html"] {
        padding: 0.8rem 1.5rem !important;
        font-size: 1rem !important;
        transform: scale(1.05) !important;
    }
    
    .nav-links a[href="stories.html"]:hover {
        transform: scale(1.1) translateY(-3px) !important;
    }
    
    .nav-links a[href="stories.html"]:active {
        transform: scale(1.08) translateY(-1px) !important;
    }
    
    /* Mobile styles for neo-tech comments button */
    .neo-tech-comments-btn {
        top: 100px;
        left: 20px;
    }
    
    .neo-tech-btn-inner {
        padding: 10px 15px;
        gap: 6px;
    }
    
    .neo-tech-icon {
        font-size: 1rem;
    }
    
    .neo-tech-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stories-cta h2 {
        font-size: 2rem;
    }
    
    .comment-form-container,
    .comments-list-container {
        padding: 20px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 576px) {
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    /* Extra small mobile styles for the huge shiny button */
    .nav-links a[href="stories.html"] {
        padding: 0.7rem 1.2rem !important;
        font-size: 0.9rem !important;
        transform: scale(1.02) !important;
        letter-spacing: 0.5px !important;
    }
    
    .nav-links a[href="stories.html"]:hover {
        transform: scale(1.05) translateY(-2px) !important;
    }
    
    .nav-links a[href="stories.html"]:active {
        transform: scale(1.03) translateY(-1px) !important;
    }
    
    /* Extra small mobile styles for neo-tech comments button */
    .neo-tech-comments-btn {
        top: 90px;
        left: 15px;
    }
    
    .neo-tech-btn-inner {
        padding: 8px 12px;
        gap: 4px;
    }
    
    .neo-tech-icon {
        font-size: 0.9rem;
    }
    
    .neo-tech-text {
        font-size: 0.7rem;
        letter-spacing: 0.3px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .location-card {
        width: 100%;
    }
    
    .story-content {
        padding: 20px;
    }
    
    .story-content h3 {
        font-size: 1.5rem;
    }
}