/* =================================
------------------------------------
  TIYEMDER - Activity Detail Styles
------------------------------------
====================================*/

/* ===== ACTIVITY DETAIL PAGE ===== */
.activity-detail-page {
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #f1f8e9 100%);
  position: relative;
  overflow: hidden;
}

/* ===== HERO SECTION ===== */
.activity-header-section {
  position: relative;
  background: linear-gradient(135deg, #0E2062, #4a69bd);
  padding: 60px 0;
  color: #fff;
  overflow: hidden;
}

.activity-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.activity-floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  transition: transform 2s ease;
}

.activity-floating-element:nth-child(1) {
  top: -30px;
  left: 10%;
  width: 100px;
  height: 100px;
}

.activity-floating-element:nth-child(2) {
  bottom: -50px;
  right: 15%;
  width: 120px;
  height: 120px;
}

.activity-floating-element:nth-child(3) {
  top: 20%;
  left: 35%;
  width: 60px;
  height: 60px;
}

.activity-floating-element:nth-child(4) {
  bottom: 30%;
  right: 30%;
  width: 80px;
  height: 80px;
}

.activity-page-heading {
  position: relative;
  z-index: 2;
  width: 100%;
}

.activity-hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.activity-hero-left h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-top: 15px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.activity-badge-wrapper {
  margin-bottom: 15px;
}

.activity-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.activity-title-badge i {
  color: #fff;
  font-size: 1rem;
}

.activity-breadcrumb {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.activity-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.activity-breadcrumb a:hover {
  opacity: 0.8;
}

.activity-breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.activity-breadcrumb i {
  font-size: 0.75rem;
}

/* Hero pattern overlay - similar to post detail */
.activity-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

/* ===== ACTIVITY DETAIL SECTION ===== */
.activity-detail-section {
  padding: 100px 0;
  position: relative;
  z-index: 2;
}

/* Activity Article */
.activity-detail-article {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 32, 98, 0.1);
  margin-bottom: 40px;
}

.activity-detail-image {
  width: 100%;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.activity-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.activity-detail-article:hover .activity-detail-image img {
  transform: scale(1.05);
}

.activity-detail-header {
  padding: 40px 40px 20px;
  border-bottom: 1px solid rgba(14, 32, 98, 0.1);
}

.activity-detail-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0E2062;
  margin-bottom: 20px;
  line-height: 1.3;
}

.activity-detail-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.activity-detail-meta-left, .activity-detail-meta-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.activity-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 1rem;
  font-weight: 500;
}

.activity-meta-item i {
  color: #0E2062;
  font-size: 14px;
}

.activity-detail-content {
  padding: 40px;
}

.activity-detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}

.activity-detail-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.activity-detail-content h2, 
.activity-detail-content h3, 
.activity-detail-content h4 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #0E2062;
  font-weight: 700;
}

.activity-detail-content h2 {
  font-size: 2rem;
}

.activity-detail-content h3 {
  font-size: 1.7rem;
}

.activity-detail-content h4 {
  font-size: 1.4rem;
}

/* Additional Info */
.activity-additional-info {
  background: #f8f9fa;
  border-left: 4px solid #0E2062;
  padding: 25px;
  margin: 30px 0;
  border-radius: 0 10px 10px 0;
}

.activity-additional-info h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0E2062;
}

.activity-additional-info h3 i {
  color: #4a69bd;
}

.activity-additional-info p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 0;
}

/* Gallery Section */
.activity-gallery-section {
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(14, 32, 98, 0.08);
}

.content-section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #0E2062;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-section-title i {
  color: #4a69bd;
  font-size: 1.4rem;
}

.gallery-grid {
  margin-top: 20px;
}

.gallery-item-wrapper {
  margin-bottom: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 200px;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 32, 98, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

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

.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.gallery-caption {
  background: #fff;
  padding: 15px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 3px solid #4a69bd;
}

.gallery-caption h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0E2062;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
  line-height: 1.4;
}

/* Modal Stilleri */
#galleryModal .modal-body img {
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-modal-description {
  margin-top: 15px;
  padding: 10px;
  color: #555;
  background: #f8f9fa;
  border-radius: 8px;
}

@media (max-width: 767px) {
    .gallery-item {
        height: 160px;
    }
}

/* ===== COMMENTS SECTION ===== */
.activity-comments-section {
  background: #fff;
  padding: 40px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 32, 98, 0.1);
}

.section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #0E2062;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(14, 32, 98, 0.1);
}

.section-title i {
  color: #4a69bd;
  font-size: 1.4rem;
}

.comments-list {
  margin: 30px 0;
}

.comment-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(14, 32, 98, 0.1);
}

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

.comment-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #f8f9fa;
}

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

.comment-body {
  flex-grow: 1;
}

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

.comment-header h5 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0E2062;
  margin: 0;
}

.comment-header span {
  font-size: 0.85rem;
  color: #777;
}

.comment-text {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

.no-comments {
  text-align: center;
  padding: 40px 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.no-comments-icon {
  font-size: 3.5rem;
  color: #777;
  margin-bottom: 20px;
}

.no-comments p {
  color: #555;
  font-size: 1.1rem;
  margin: 0;
}

/* Comment Form */
.comment-form-section {
  margin-top: 40px;
}

.comment-form .form-control {
  border-radius: 10px;
  padding: 15px;
  border: 2px solid #e9ecef;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.comment-form .form-control:focus {
  outline: none;
  border-color: #0E2062;
  box-shadow: 0 0 0 4px rgba(14, 32, 98, 0.1);
  transform: translateY(-2px);
}

.comment-form textarea {
  min-height: 150px;
}

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

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: linear-gradient(135deg, #0E2062, #4a69bd);
  color: #fff;
  box-shadow: 0 8px 20px rgba(14, 32, 98, 0.3);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary-custom::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;
}

.btn-primary-custom:hover::before {
  left: 100%;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(14, 32, 98, 0.4);
}

/* ===== SIDEBAR ===== */
.activity-sidebar {
  position: sticky;
  top: 100px;
}

.activity-widget {
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px;
  margin-bottom: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(14, 32, 98, 0.1);
}

.activity-widget h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0E2062;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.activity-widget h4 i {
  font-size: 1.2rem;
  color: #4a69bd;
}

/* Sidebar Inputs */
.sidebar-input {
  width: 100%;
  padding: 15px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.sidebar-input:focus {
  outline: none;
  border-color: #0E2062;
  box-shadow: 0 0 0 4px rgba(14, 32, 98, 0.1);
  transform: translateY(-2px);
}

/* Event Info List */
.event-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.event-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(14, 32, 98, 0.1);
}

.event-info-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.event-info-list li:first-child {
  padding-top: 0;
}

.event-info-list li i {
  color: #4a69bd;
  font-size: 1.2rem;
  width: 25px;
  text-align: center;
}

.event-info-list li div {
  flex: 1;
}

.event-info-list .label {
  color: #777;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 5px;
}

.event-info-list .value {
  color: #333;
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
}

/* Map Widget */
.map-widget {
  padding: 0;
  overflow: hidden;
}

.map-widget h4 {
  padding: 25px 30px;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(14, 32, 98, 0.1);
}

#map {
  height: 300px;
  width: 100%;
}

/* Related Activities */
.related-activities {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.related-activity-item {
  display: flex;
  gap: 15px;
  text-decoration: none;
  padding: 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.related-activity-item:hover {
  background: rgba(14, 32, 98, 0.05);
  transform: translateY(-3px);
}

.related-img {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.related-date {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(14, 32, 98, 0.8);
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  line-height: 1;
}

.related-date .day {
  display: block;
  font-weight: 700;
  font-size: 1rem;
}

.related-date .month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
}

.related-content {
  flex-grow: 1;
}

.related-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #0E2062;
  margin: 0 0 8px;
  line-height: 1.4;
}

.related-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 0.9rem;
}

.related-location i {
  color: #4a69bd;
  font-size: 0.9rem;
}

/* ===== NEW FEATURES STYLES ===== */

/* Status Badges */
.activity-status-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.activity-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
}

.status-completed {
    background: linear-gradient(45deg, #3498db, #74b9ff);
    color: white;
}

.status-cancelled {
    background: linear-gradient(45deg, #e74c3c, #fd79a8);
    color: white;
}

.status-full {
    background: linear-gradient(45deg, #f39c12, #fdcb6e);
    color: white;
}

.activity-category-badge {
    background: rgba(14, 32, 98, 0.1);
    color: #0E2062;
    border: 1px solid rgba(14, 32, 98, 0.2);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Countdown Timer */
.activity-countdown {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 70px;
    backdrop-filter: blur(10px);
}

.countdown-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0E2062;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 4px;
    font-weight: 500;
}

.countdown-expired {
    background: linear-gradient(45deg, #e74c3c, #fd79a8);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Info Cards */
.activity-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    padding: 0;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 32, 98, 0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.info-card i {
    font-size: 2rem;
    color: #4a69bd;
    background: linear-gradient(45deg, #4a69bd, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0E2062;
}

.info-value small {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

/* Schedule Timeline */
.activity-schedule {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.activity-schedule h3 {
    color: #0E2062;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.schedule-timeline {
    position: relative;
    padding-left: 30px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #4a69bd, #74b9ff);
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    background: rgba(14, 32, 98, 0.02);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #4a69bd;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 25px;
    width: 12px;
    height: 12px;
    background: #4a69bd;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px rgba(74, 105, 189, 0.3);
}

.timeline-time {
    display: inline-block;
    background: #4a69bd;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-content h5 {
    color: #0E2062;
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.5;
}

.timeline-speaker {
    color: #4a69bd;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Speakers Section */
.activity-speakers {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.activity-speakers h3 {
    color: #0E2062;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.speaker-card {
    background: rgba(14, 32, 98, 0.02);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 32, 98, 0.05);
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.speaker-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #4a69bd;
}

.speaker-info h5 {
    color: #0E2062;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.speaker-title {
    color: #4a69bd;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 500;
}

.speaker-bio {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.speaker-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #4a69bd;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.speaker-social:hover {
    background: #0E2062;
    transform: scale(1.1);
}

/* Rating Section */
.activity-rating-section {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.activity-rating-section h3 {
    color: #0E2062;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-form {
    margin-bottom: 30px;
}

.rating-stars {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.rating-stars input[type="radio"] {
    display: none;
}

.rating-stars label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rating-stars label:hover,
.rating-stars label:hover ~ label,
.rating-stars input[type="radio"]:checked ~ label {
    color: #f39c12;
    transform: scale(1.1);
}

.rating-stars label:hover {
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.5);
}

.recent-ratings {
    border-top: 1px solid rgba(14, 32, 98, 0.1);
    padding-top: 25px;
}

.recent-ratings h4 {
    color: #0E2062;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.rating-item {
    background: rgba(14, 32, 98, 0.02);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.rating-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.rating-header strong {
    color: #0E2062;
}

.rating-stars-display {
    display: flex;
    gap: 2px;
}

.rating-stars-display .fa-star {
    font-size: 0.9rem;
}

.rating-stars-display .fa-star.filled {
    color: #f39c12;
}

.rating-stars-display .fa-star:not(.filled) {
    color: #ddd;
}

.rating-date {
    color: #888;
    font-size: 0.85rem;
}

/* Toast Notifications */
.toast {
    border-radius: 10px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.toast-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.toast-error {
    background: linear-gradient(135deg, #e74c3c, #fd79a8);
    color: white;
}

.toast-header {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: inherit;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .activity-countdown {
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .activity-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .info-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .info-card i {
        font-size: 1.5rem;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-stars label {
        font-size: 1.5rem;
    }
    
    .schedule-timeline {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -27px;
    }
}

@media (max-width: 576px) {
    .activity-status-wrapper {
        justify-content: center;
    }
    
    .activity-countdown {
        justify-content: center;
    }
    
    .activity-info-cards {
        grid-template-columns: 1fr;
    }
    
    .activity-schedule,
    .activity-speakers,
    .activity-rating-section {
        padding: 20px;
    }
    
    .rating-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #4a69bd;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Enhanced Animations */
.activity-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.activity-slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.activity-slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Organize edilmiş bölüm stilleri */
.activity-organizer-section,
.activity-tags-section,
.activity-program-details,
.activity-speakers-info {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(14, 32, 98, 0.08);
}

.info-row {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
}

.info-row .info-label {
    min-width: 140px;
    font-weight: 600;
    color: #0E2062;
}

.info-row .info-value {
    flex: 1;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    background: rgba(14, 32, 98, 0.1);
    color: #0E2062;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #0E2062;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

.tag-item i {
    margin-right: 5px;
    font-size: 0.8rem;
}

/* Geliştirilmiş Resim Galerisi Stilleri */
.activity-image-gallery {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

.main-gallery-slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.main-gallery-slider .carousel-inner {
    border-radius: 15px;
    height: 500px;
}

.main-gallery-slider .carousel-item {
    height: 500px;
    background-color: #f8f9fa;
    position: relative;
}

.main-gallery-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-gallery-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.7);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    border-radius: 0 0 15px 15px;
    text-align: left;
}

.main-gallery-slider .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 32, 98, 0.2);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.main-gallery-slider .gallery-overlay i {
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.main-gallery-slider .carousel-item:hover .gallery-overlay {
    opacity: 1;
}

.main-gallery-slider .carousel-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: thin;
}

.gallery-thumbnails::-webkit-scrollbar {
    height: 5px;
}

.gallery-thumbnails::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.gallery-thumbnails::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.thumbnail-item {
    flex: 0 0 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail-item.active {
    border-color: #0E2062;
}

.thumbnail-item:hover {
    transform: translateY(-3px);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .main-gallery-slider .carousel-inner, 
    .main-gallery-slider .carousel-item {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .main-gallery-slider .carousel-inner, 
    .main-gallery-slider .carousel-item {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .main-gallery-slider .carousel-inner, 
    .main-gallery-slider .carousel-item {
        height: 250px;
    }
    
    .gallery-thumbnails {
        gap: 5px;
    }
    
    .thumbnail-item {
        flex: 0 0 60px;
        height: 45px;
    }
}
