/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #000;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes greenLavaFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.navbar {
  padding: 1rem 0;
  background: linear-gradient(
    135deg,
    #345727,
    #0a572c,
    #000,
    #1c5e02,
    #0a572c
  );
  background-size: 300% 300%;
  animation: greenLavaFlow 15s ease infinite;
}


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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #0a572c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0a5828;
    transition: width 0.3s ease;
}

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

.btn-primary {
    background: #48ff00;
    color: #000;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4eff54;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(139, 69, 19, 0.121));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-main {
    color: #fff;
}

.title-accent {
    color: #33ff00;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
}

/* Packages Section */
.packages {
    padding: 100px 0;
    background: #111;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.package-card.featured {
    border: 2px solid #ff9500;
    transform: scale(1.05);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.coin-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.package-card:hover .coin-icon {
    transform: scale(1.2) rotate(-5deg);
}


.package-badge.popular {
    background: #48ff00;
    color: #000;
}

.package-badge.recommended {
    background: #ff6b35;
    color: #fff;
}

.package-badge.vip {
    background: #8b5cf6;
    color: #fff;
}

.package-content {
    padding: 2rem;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.package-coins {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 1rem;
}

.package-description {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.package-features {
    margin-bottom: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    margin-bottom: 0.5rem;
}

.feature i {
    color: #ffd700;
    width: 16px;
}

.package-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.package-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.9rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #000;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-description {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #00ff40;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #000;
}

.feature-content h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #ccc;
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #111;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #22ff00;
    margin-bottom: 0.5rem;
}

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

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #000;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #1aff00;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #000;
}

.contact-details h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ccc;
    line-height: 1.6;
}

.contact-form {
    background: #111;
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #000;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2bff00;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    cursor: pointer;
}

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

/* Footer */
.footer {
    background: #111;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #15ff00;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #00ff11;
    color: #000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

.hero-subtitle {
    font-size: 1rem;
    text-shadow: 6px 6px 8px rgba(0, 0, 0, 0.893);
}


    .section-title {
        font-size: 1.8rem;
    }

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

    .package-content {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 2rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111;
}

::-webkit-scrollbar-thumb {
    background: #258024;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4eff9b;
}

/* --- Floating Button --- */
.floating-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  z-index: 1000;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease;
  background: none;
  border: none;
  padding: 0;
}

.floating-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-button:hover {
  transform: scale(1.05);
}

/* --- Overlay --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

/* --- Modal Wrapper --- */
.modal-wrapper {
  display: flex;
  gap: 30px;
  animation: fadeSlideIn 0.5s ease;
}

/* --- Modal Content (izquierda) --- */
.modal-content {
  background: #111;
  color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  max-width: 350px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dev-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
  border: 3px solid #ff00007b;
  box-shadow: 0 0 10px #ff00007b;
}

.modal-content p {
  font-size: 1rem;
  margin: 10px 0 20px;
  color: #ccc;
  text-align: center;
}

.extra-images {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.extra-images img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  border: 5px solid #ff00007b;
  box-shadow: 0 0 16px #ff00007b;
  transition: transform 0.3s, box-shadow 0.3s;
}

.extra-images img:hover {
  transform: scale(1.12);
  box-shadow: 0 0 22px #ff00007b;
}

/* --- Imagen Modal Overlay --- */
.image-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  animation: fadeIn 0.3s ease;
}

/* --- Imagen Modal Content --- */
.image-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 25px #ff00007b;
}

.image-modal-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* --- Cerrar botón --- */
.image-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2rem;
  color: #ff4d4d;
  cursor: pointer;
  transition: color 0.3s ease;
}

.image-modal-close:hover {
  color: #ff7b7b;
}

/* --- Fade In Animation --- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* --- Side Panel (derecha) --- */
.side-panel {
  background: #181818;
  padding: 25px 20px;
  border-radius: 12px;
  max-width: 300px;
  width: 90%;
  box-shadow: 0 10px 25px rgba(72, 255, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.side-panel h3 {
  color: #ff0000bc;
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-align: center;
  border-bottom: 1px solid #ff00007b;
  padding-bottom: 5px;
}

/* Accordion in Side Panel */
.accordion {
  background: #222;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(72, 255, 0, 0.2);
}

.accordion-header {
  padding: 12px 16px;
  background: #222;
  color: #48ff00;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: #2a2a2a;
}

.accordion-header::after {
  content: "▼";
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.accordion-header.open::after {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #1c1c1c;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.accordion-body.open {
  padding: 12px 16px;
  max-height: 500px;
}

.accordion-body a {
  text-decoration: none;
  color: #b2ffb2;
  padding: 8px 12px;
  border-radius: 6px;
  background: #222;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}

.accordion-body a:hover {
  background: #48ff00;
  color: #000;
  transform: translateX(4px);
}

/* Social Links in Side Panel */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-links a {
  color: #48ff00;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #48ff00;
  border-radius: 8px;
  background: #222;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #48ff00;
  color: #000;
}

/* Close Button */
.close-button {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2rem;
  cursor: pointer;
  color: #48ff00;
  transition: color 0.3s ease;
}

.close-button:hover {
  color: #4eff54;
}

/* Animation */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- XSocial-links BASE --- */
.xsocial-links {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.xsocial-links li {
  width: 100%;
}

.xsocial-links a {
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 1.1rem;
  padding: 12px 16px;
  border-radius: 8px;
  transition: background 0.3s, color 0.3s, transform 0.2s, box-shadow 0.3s;
}

.xsocial-links a i {
  font-size: 1.4rem;
}

/* --- TWITCH --- */
.twitch-links a {
  color: #a970ff;
  background: #1f1b2e;
  border: 2px solid #a970ff;
  box-shadow: 0 0 8px rgba(169, 112, 255, 0.3);
}

.twitch-links a:hover {
  background-color: #a970ff;
  color: #1f1b2e;
  transform: translateY(-2px);
  box-shadow: 0 0 12px #a970ff;
}

/* --- YOUTUBE --- */
.youtube-links a {
  color: #ff4444;
  background: #1b0b0b;
  border: 2px solid #ff4444;
  box-shadow: 0 0 8px rgba(255, 68, 68, 0.3);
}

.youtube-links a:hover {
  background-color: #ff4444;
  color: #1b0b0b;
  transform: translateY(-2px);
  box-shadow: 0 0 12px #ff4444;
}

/* --- GITHUB --- */
.github-links a {
  color: #c9d1d9;
  background: #0d1117;
  border: 2px solid #c9d1d9;
  box-shadow: 0 0 8px rgba(201, 209, 217, 0.3);
}

.github-links a:hover {
  background-color: #c9d1d9;
  color: #0d1117;
  transform: translateY(-2px);
  box-shadow: 0 0 12px #c9d1d9;
}

/* --- DISCORD --- */
.discord-links a {
  color: #7289da;
  background: #1e2337;
  border: 2px solid #7289da;
  box-shadow: 0 0 8px rgba(114, 137, 218, 0.3);
}

.discord-links a:hover {
  background-color: #7289da;
  color: #1e2337;
  transform: translateY(-2px);
  box-shadow: 0 0 12px #7289da;
}

/* --- INSTAGRAM --- */
.instagram-links a {
  color: #e1306c;
  background: #2a0e1e;
  border: 2px solid #e1306c;
  box-shadow: 0 0 8px rgba(225, 48, 108, 0.3);
}

.instagram-links a:hover {
  background-color: #e1306c;
  color: #2a0e1e;
  transform: translateY(-2px);
  box-shadow: 0 0 12px #e1306c;
}

/* --- Responsive para pantallas pequeñas aún más compacto --- */
@media (max-width: 768px) {

  .modal-wrapper {
    flex-direction: column;
    gap: 12px;
    max-width: 90%;
  }

  .modal-content, .side-panel {
    max-width: 100%;
    width: 100%;
    padding: 14px 12px;
  }

  .dev-avatar {
    width: 60px;
    height: 60px;
  }

  .modal-content p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .extra-images {
    gap: 8px;
    margin-top: 15px;
  }

  .extra-images img {
    width: 90px;
    height: 90px;
    border-width: 3px;
  }

  .accordion-header {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .accordion-body a {
    font-size: 0.85rem;
    padding: 6px 8px;
  }

  .xsocial-links a {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .image-modal-content {
    max-width: 90%;
    max-height: 75%;
  }

  .close-button,
  .image-modal-close {
    font-size: 1.6rem;
    top: 6px;
    right: 10px;
  }

  iframe {
    width: 100% !important;
    height: auto !important;
  }
}


.twitch-embed-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 2rem auto;
}

.twitch-embed-container iframe {
  border: none;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.twitch-embed-container iframe:first-child {
  flex: 2 1 600px;
  height: 450px;
}

.twitch-embed-container iframe:last-child {
  flex: 1 1 350px;
  height: 450px;
}
