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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
            color: #f5f5f5;
            /* overflow-x: hidden; */
            /* line-height: 1.6; */
            /* height: 100%; */
            /* margin: 0; */
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            background-color: #1a1a1a;
            /* color: #ffffff; */
        }


.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.content {
  flex: 1;
  padding: 20px;
}


.text-left {
    text-align: left !important;
}

.pineapple-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

        /* Animated background particles */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: linear-gradient(45deg, #ffd700, #ffed4e, #ffc107, #ff8c00);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(20px);
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #f5f5f5;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ffd700;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffd700, #ff8c00);
            transition: width 0.3s ease;
        }

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

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff, #ffd700, #ff8c00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .hero .fluid-shape {
        position: relative;
        width: 100%;
        margin: 0 auto;
        }

        .hero .fluid-shape .fluid-img {
        width: 100%;
        height: auto;
        animation: float 6s ease-in-out infinite;
        }

        .cta-button {
            display: inline-block;
            padding: 18px 40px;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            color: #000000;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, #ff8c00, #ffd700);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Features Section */
        .features {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .features h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 60px;
            background: linear-gradient(135deg, #ffffff, #ffd700);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.05));
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ff8c00, #ffd700);
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 140, 0, 0.08));
        }

        .feature-card:hover::before {
            transform: translateX(0);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #000000;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #ffd700;
        }

        .feature-card p {
            opacity: 0.8;
            line-height: 1.8;
        }

 /* Footer */
        .footer {
            background: linear-gradient(135deg, #000000, #1a1a1a);
            color: #ffffff;
            text-align: center;
            padding: 2rem 0;
            margin-top: auto;
            border-top: 2px solid #ffd700;
            box-shadow: 0 -2px 10px rgba(255, 215, 0, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer p {
            margin-bottom: 0.5rem;
            color: #e0e0e0;
        }

        .footer p:first-child {
            color: #ffd700;
            font-weight: bold;
        }


        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .main-content {
                padding: 1rem;
            }

            .content-area {
                padding: 1rem;
            }
        }

                /* Responsive Design */
        @media (max-width: 768px) {
            .profile-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .profile-picture {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;              /* Esto la hace circular */
    border: 3px solid #ffd700;       /* Borde dorado */
    box-shadow: 0 0 10px #000;       /* Sombra opcional para destacarla */
            }

            .profile-name {
                font-size: 2rem;
            }

            .profile-stats {
                justify-content: center;
                flex-wrap: wrap;
            }

            .profile-actions {
                flex-direction: column;
                align-items: center;
            }

            .bio-details {
                grid-template-columns: 1fr;
            }

            .cover-section {
                height: 250px;
            }
        }

body.bg-dark {
    background: #0d0d0d;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background: rgba(255, 215, 0, 0.05);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.text-gold {
    color: #ffd700;
}

.cta-button {
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff8c00, #ffd700);
    transform: translateY(-2px);
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 50%;
}

.card-title {
    color: #2c3e50;
    font-weight: 600;
}

.card-text {
    color: #6c757d;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .col-md-6 {
        margin-bottom: 1rem;
    }
}

.toTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ff006e; /* Bright pink theme */
  color: white;
  padding: 12px 15px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 999;
  display: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.toTop:hover {
  background-color: #d1005f;
  transform: scale(1.1);
}

        :root {
            --primary-gold: #FFD700;
            --dark-gold: #B8860B;
            --light-gold: #FFEF94;
            --primary-black: #000000;
            --dark-gray: #1a1a1a;
            --medium-gray: #2d2d2d;
            --light-gray: #404040;
        }

        body {
            background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
            min-height: 100vh;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
        }

        .logout-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .logout-card {
            background: var(--medium-gray);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
            overflow: hidden;
            max-width: 450px;
            width: 100%;
        }

        .logout-header {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: var(--primary-black);
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .logout-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
        }

        .logout-header h2 {
            margin: 0;
            font-weight: 700;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }

        .logout-header .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .logout-body {
            padding: 2.5rem;
            text-align: center;
        }

        .logout-message {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .logout-user {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            border: none;
            color: var(--primary-black);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            margin: 0 10px 10px 0;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            color: var(--primary-black);
        }

        .btn-gold:active {
            transform: translateY(0);
        }

        .btn-secondary {
            background: var(--light-gray);
            border: 1px solid var(--primary-gold);
            color: #ffffff;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            margin: 0 10px 10px 0;
        }

        .btn-secondary:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
            transform: translateY(-1px);
            text-decoration: none;
        }

        .logout-links {
            text-align: center;
            margin-top: 1.5rem;
        }

        .logout-links a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .logout-links a:hover {
            color: var(--light-gold);
            text-decoration: underline;
        }

        .button-group {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }

        @media (max-width: 576px) {
            .logout-body {
                padding: 1.5rem;
            }
            
            .logout-header {
                padding: 1.5rem;
            }
            
            .logout-header h2 {
                font-size: 1.5rem;
            }

            .button-group {
                flex-direction: column;
                gap: 10px;
            }

            .btn-gold, .btn-secondary {
                margin: 0;
                width: 100%;
            }
        }
        
        
        /* Main Content Section */
        .main-content {
            flex: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            width: 100%;
        }

        .content-area {
            min-height: 400px;
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            border: 1px solid #333;
            position: relative;
            overflow: hidden;
        }

        .content-area::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #ffd700, #ffed4a, #ffd700);
        }

        .content-area h1 {
            color: #ffd700;
            margin-bottom: 1rem;
            text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
        }

        .content-area p {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        /* Profile Header Section */
        .profile-info-section {
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
            border: 2px solid #ffd700;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
            position: relative;
            margin-top: -100px;
            z-index: 10;
        }

        .profile-header {
            display: flex;
            align-items: flex-end;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }

        .profile-picture {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, #333, #2d2d2d);
            border: 6px solid #ffd700;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffd700;
            font-weight: bold;
            font-size: 14px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
            position: relative;
            flex-shrink: 0;
        }

        .profile-picture::after {
            content: '📷';
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: #ffd700;
            color: #000;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .profile-picture:hover::after {
            transform: scale(1.1);
        }

        .profile-details {
            flex: 1;
        }

        .profile-name {
            font-size: 2.5rem;
            font-weight: bold;
            color: #ffd700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
        }

        .profile-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .stat-item {
            text-align: center;
            padding: 0.5rem 1rem;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #ffd700;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        .stat-number {
            font-size: 1.5rem;
            font-weight: bold;
            color: #ffd700;
            display: block;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #ccc;
        }

        .profile-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #ffd700, #ffed4a);
            color: #000;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #ffed4a, #ffd700);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .btn-secondary {
            background: rgba(255, 215, 0, 0.1);
            color: #ffd700;
            border: 2px solid #ffd700;
        }

        .btn-secondary:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
        }

        /* Bio Section */
        .bio-section {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid #ffd700;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }

        .bio-header {
            background: linear-gradient(135deg, #ffd700, #ffed4a);
            color: #000000;
            text-align: center;
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .bio-section h3 {
            color: #ffd700;
            margin-bottom: 1rem;
        }

        .bio-text {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .bio-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }

        .bio-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #ccc;
        }

        .bio-icon {
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* Posts Section */
        .posts-section {
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
            border: 2px solid #ffd700;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .section-header {
            background: linear-gradient(135deg, #ffd700, #ffed4a);
            color: #000000;
            text-align: center;
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .posts-container {
            padding: 2rem;
        }

        .post-item {
            background: rgba(255, 215, 0, 0.05);
            border: 1px solid #ffd700;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .post-item:hover {
            background: rgba(90, 86, 63, 0.1);
            transform: translateY(-2px);
        }

        .post-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .post-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #ffd700;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .post-info h4 {
            color: #ffd700;
            margin-bottom: 0.25rem;
        }

        .post-time {
            color: #888;
            font-size: 0.9rem;
        }

        .post-content {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .post-actions {
            display: flex;
            gap: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }

        .post-action {
            color: #ccc;
            cursor: pointer;
            transition: color 0.3s ease;
        }

/* Like Button Styles */
.post-action {
    color: #ccc;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 4px;
}

.post-action:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
}

.post-action.liked {
    color: #ff4757;
}

.post-action.liked:hover {
    color: #ff6b81;
}

.post-action i {
    font-size: 1.1rem;
}

/* Comment Section Improvements */
.comment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    border-left: 3px solid rgba(255, 215, 0, 0.3);
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-avatar img {
    object-fit: cover;
}

.comment-author {
    color: #ffd700;
    font-weight: 500;
    font-size: 0.9rem;
}

.comment-time {
    color: #888;
    font-size: 0.8rem;
}

.comment-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.comment-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

/* Reply Section */
.reply-item {
    background: rgba(255, 215, 0, 0.03);
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 2px solid rgba(255, 215, 0, 0.2);
}

.reply-form-container textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    resize: none;
}

.reply-form-container textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    color: #fff;
}









        /* Content Sections */
        .content-section {
            background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
            border: 2px solid #ffd700;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
            overflow: hidden;
        }

        .section-header {
            background: linear-gradient(135deg, #141414, #414120);
            color: #e6e22a;
            text-align: center;
            padding: 1rem;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-content {
            padding: 2rem;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 1.1rem;
        }

        .photos-section .section-content {
            min-height: 400px;
        }

        .videos-section .section-content {
            min-height: 350px;
        }

        /* Grid Layout for Photos/Videos */
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            width: 100%;
        }

        .grid-item {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid #ffd700;
            border-radius: 8px;
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffd700;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .grid-item:hover {
            background: rgba(255, 215, 0, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }

        .video-item {
            aspect-ratio: 16/9;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #44433e, #ffed4a);
            color: #000000;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #ffed4a, #ffd700);
            color: #000000;
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
            transform: translateY(-3px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 1rem;
            }

            .profile-header {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
            }

            .profile-photo {
                width: 150px;
                height: 150px;
                margin: 0 auto;
            }

            .info-row {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .info-label {
                text-align: left;
            }

            .grid-container {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }

/* LOGIN TEMPLATE */
.login-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .login-card {
            background: var(--medium-gray);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
            overflow: hidden;
            max-width: 400px;
            width: 100%;
        }

        .login-header {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            color: var(--primary-black);
            text-align: center;
            padding: 2rem;
            position: relative;
        }

        .login-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
        }

        .login-header h2 {
            margin: 0;
            font-weight: 700;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }

        .login-header .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .login-body {
            padding: 2.5rem;
        }

        .form-control {
            background: var(--light-gray);
            border: 1px solid var(--primary-gold);
            border-radius: 8px;
            color: #ffffff;
            padding: 12px 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: var(--light-gray);
            border-color: var(--light-gold);
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
            color: #ffffff;
        }

        .form-control::placeholder {
            color: #cccccc;
        }

        .form-label {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            border: none;
            color: var(--primary-black);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            color: var(--primary-black);
        }

        .btn-gold:active {
            transform: translateY(0);
        }

        .form-check-input {
            background-color: var(--light-gray);
            border-color: var(--primary-gold);
        }

        .form-check-input:checked {
            background-color: var(--primary-gold);
            border-color: var(--primary-gold);
        }

        .form-check-label {
            color: #ffffff;
        }

        .login-links {
            text-align: center;
            margin-top: 1.5rem;
        }

        .login-links a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .login-links a:hover {
            color: var(--light-gold);
            text-decoration: underline;
        }

        .divider {
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
            color: #cccccc;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--primary-gold);
            opacity: 0.3;
        }

        .divider span {
            background: var(--medium-gray);
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }

        .alert {
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .alert-danger {
            background-color: rgba(220, 53, 69, 0.1);
            border-color: #dc3545;
            color: #ff6b6b;
        }

        .social-login {
            margin-top: 1rem;
        }

        .btn-social {
            background: var(--light-gray);
            border: 1px solid var(--primary-gold);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
        }

        .btn-social:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
            transform: translateY(-1px);
        }

        @media (max-width: 576px) {
            .login-body {
                padding: 1.5rem;
            }
            
            .login-header {
                padding: 1.5rem;
            }
            
            .login-header h2 {
                font-size: 1.5rem;
            }
        }

/* SIGNUP TEMPLATE */
        .signup-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .signup-card {
            background: var(--medium-gray);
            border: 2px solid var(--primary-gold);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
            overflow: hidden;
            max-width: 450px;
            width: 100%;
        }

.signup-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
    color: var(--primary-black);
    text-align: center;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

        .signup-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
        }

        .signup-header h2 {
            margin: 0;
            font-weight: 700;
            font-size: 1.8rem;
            position: relative;
            z-index: 1;
        }

        .signup-header .icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .signup-body {
            padding: 2.5rem;
        }

        .form-control {
            background: var(--light-gray);
            border: 1px solid var(--primary-gold);
            border-radius: 8px;
            color: #ffffff;
            padding: 12px 16px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            background: var(--light-gray);
            border-color: var(--light-gold);
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
            color: #ffffff;
        }

        .form-control::placeholder {
            color: #cccccc;
        }

        .form-label {
            color: var(--primary-gold);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--primary-gold), var(--dark-gold));
            border: none;
            color: var(--primary-black);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-gold:hover {
            background: linear-gradient(135deg, var(--light-gold), var(--primary-gold));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
            color: var(--primary-black);
        }

        .btn-gold:active {
            transform: translateY(0);
        }

        .signup-links {
            text-align: center;
            margin-top: 1.5rem;
        }

        .signup-links a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .signup-links a:hover {
            color: var(--light-gold);
            text-decoration: underline;
        }

        .divider {
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
            color: #cccccc;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--primary-gold);
            opacity: 0.3;
        }

        .divider span {
            background: var(--medium-gray);
            padding: 0 1rem;
            position: relative;
            z-index: 1;
        }

        .alert {
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .alert-danger {
            background-color: rgba(220, 53, 69, 0.1);
            border-color: #dc3545;
            color: #ff6b6b;
        }

        .social-login {
            margin-top: 1rem;
        }

        .btn-social {
            background: var(--light-gray);
            border: 1px solid var(--primary-gold);
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            width: 100%;
            justify-content: center;
            margin-bottom: 10px;
        }

        .btn-social:hover {
            background: var(--primary-gold);
            color: var(--primary-black);
            transform: translateY(-1px);
        }

        .password-requirements {
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid var(--primary-gold);
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .password-requirements h6 {
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
        }

        .password-requirements ul {
            color: #cccccc;
            margin-bottom: 0;
            padding-left: 1.2rem;
        }

        .password-requirements li {
            margin-bottom: 0.2rem;
        }

        .form-text {
            color: #cccccc;
            font-size: 0.85rem;
            margin-top: 0.3rem;
        }

        @media (max-width: 576px) {
            .signup-body {
                padding: 1.5rem;
            }
            
            .signup-header {
                padding: 1.5rem;
            }
            
            .signup-header h2 {
                font-size: 1.5rem;
            }
        }
.tabs-nav {
    border-bottom: 1px solid #444;
}

.tab-btn {
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 16px;
    color: #ccc;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    color: #ffd700;
}

.tab-btn.active {
    border-bottom: 2px solid #ffd700;
    color: #ffd700;
}

.tab-content {
    display: none;
    padding-top: 20px;
}

.tab-content.active {
    display: block;
}

.bio-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.bio-badge {
  background-color: #222;
  border: 1px solid #ffd700;
  color: #ffd700;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.bio-badge:hover {
  background-color: #ffd700;
  color: #111;
  cursor: default;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
  padding: 20px 0;
}

.photo-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 2px solid gold;
}

.glightbox-clean .gslide-title,
.glightbox-clean .gslide-desc {
  color: gold;
}
.glightbox-container {
  background-color: rgba(0, 0, 0, 0.95);
}


  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: none;
    background-color: #000;
    color: #ffd700;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
  }

  .back-to-top.show {
    display: block;
  }

  .btn-follow {
    background-color: #ffd700;
    color: #000;
    border: 2px solid #ffd700;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
  }

  .btn-unfollow {
    background-color: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
  }

  .btn-unfollow:hover {
    background-color: #ffd700;
    color: #000;
  }

  .btn-pending {
    background-color: #333;
    color: #bbb;
    border: 2px solid #666;
    font-weight: bold;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: not-allowed;
  }

  /* Post styling improvements */
  .post-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
  }

  .post-actions {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 15px;
  }

  .post-action {
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
    font-size: 14px;
  }

  .post-action:hover {
    color: #ffd700;
    text-decoration: none;
  }

  .post-action.liked {
    color: #ff4757;
  }

  /* Comments section styling */
  .post-comments {
    background: rgba(64, 63, 55, 0.3);
    border-radius: 8px;
    margin-top: 15px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(218, 187, 11, 0.1);
  }

  .comments-header {
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    font-weight: bold;
    color: #ffd700;
    font-size: 14px;
  }

  .comments-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 16px;
  }

  .comment-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 12px;
    border-left: 3px solid #ffd700;
  }

  .comment-item:last-child {
    margin-bottom: 0;
  }

  .comment-author {
    color: #ffd700;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 4px;
  }

  .comment-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
  }

  .comment-time {
    color: #b8b509;
    font-size: 12px;
  }

  .comment-form {
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
  }

  .comment-form textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fff;
    resize: vertical;
    min-height: 60px;
  }

  .comment-form textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffd700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
  }

  .comment-form textarea::placeholder {
    color: #999;
  }

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

  .post-comments {
    transition: all 0.3s ease;
  }

  .post-comments.show {
    animation: slideDown 0.3s ease;
  }

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

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-wrapper {
  text-align: center;
  color: white;
  width: 90%;
  max-width: 400px;
}

.progress-text {
  font-size: 1.2em;
  margin-bottom: 15px;
}

.progress-bar-container {
  width: 100%;
  height: 16px;
  background-color: #333;
  border-radius: 8px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, gold, orange);
  transition: width 0.2s ease;
}

  /* Contenedor general */
  .container-follow {
    background: #1c1c1c;
    border: 1px solid gold;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    padding: 2rem;
  }

  /* Nav Tabs */
  .nav-tabs-follow {
    border-bottom: 2px solid gold;
  }

  .nav-link-follow {
    background-color: #2a2a2a;
    color: gold;
    border: 1px solid #333;
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 10px 16px;
    font-weight: 500;
  }

  .nav-link-follow:hover {
    background-color: #3a3a3a;
    color: #ffd700;
  }

  .nav-link-follow.active {
    background-color: #111;
    color: gold;
    border-bottom-color: transparent;
    font-weight: bold;
  }

  /* Contenido de Tabs */
  .tab-content-follow {
    background-color: #111;
    padding: 20px;
    color: gold;
    border: 1px solid gold;
    border-top: none;
    border-radius: 0 0 16px 16px;
    margin-top: -1px;
  }

  /* Lista de usuarios */
  .list-group-follow {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .list-item-follow {
    background-color: #1a1a1a;
    color: #ddd;
    border: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    margin-bottom: 6px;
    border-radius: 10px;
  }

  .list-item-follow span {
    color: gold;
    font-weight: 500;
  }

  /* Botones */
  .btn-follow-follow {
    color: gold;
    border: 1px solid gold;
  }

  .btn-follow-follow:hover {
    background-color: gold;
    color: black;
  }

  .btn-unfollow-follow {
    color: red;
    border: 1px solid red;
  }

  .btn-unfollow-follow:hover {
    background-color: red;
    color: white;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .list-item-follow {
      flex-direction: column;
      align-items: flex-start;
    }

    .list-item-follow .btn {
      margin-top: 10px;
    }
  }
