/* Hakkımızda ve İletişim Sayfaları CSS */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    background: rgb(0 0 0 / 36%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-section h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.content-section p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.member-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* İletişim Formu */
.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* JackPoint CSS Eklentileri */
/* JackPoint Sayfası Stilleri */
.points-dashboard {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.current-points {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.points-icon {
    font-size: 3rem;
    background: rgba(255, 255, 255, 0.2);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.points-info h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    opacity: 0.9;
}

.points-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0;
}

.points-value span {
    font-size: 1rem;
    opacity: 0.8;
}

.points-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.earning-methods {
    display: grid;
    gap: 1rem;
}

.method-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.method-item:hover {
    transform: translateY(-2px);
}

.method-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-content {
    flex: 1;
}

.method-content h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.method-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.method-points {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.rewards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.reward-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.reward-item:hover {
    transform: translateY(-3px);
}

.reward-image {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.reward-content h3 {
    color: white;
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.reward-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
}

.reward-cost {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    display: inline-block;
}

.redeem-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.redeem-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.redeem-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.redeem-btn.disabled:hover {
    transform: none;
    box-shadow: none;
}

.points-history {
    display: grid;
    gap: 1rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    min-width: 100px;
}

.history-action {
    color: white;
    flex: 1;
    margin: 0 1rem;
}

.history-points {
    color: #43e97b;
    font-weight: bold;
    min-width: 80px;
    text-align: right;
}

.history-points:contains('-') {
    color: #ff6b6b;
}

/* Responsive */
@media (max-width: 768px) {
    .points-dashboard {
        grid-template-columns: 1fr;
    }
    
    .points-stats {
        grid-template-columns: 1fr;
    }
    
    .rewards-grid {
        grid-template-columns: 1fr;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Etkinlik Detay Sayfası - Papilet Tarzı */
.event-hero {
    background: #f8f9fa;
    padding: 2rem 0;
}

/* Etkinlik Hero Section - Yeniden Düzenlenmiş */
.event-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.event-image-section {
    position: relative;
}

.event-main-image {
    width: 100%;
    height: 585px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-category-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.btn-back {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: white;
    transform: scale(1.1);
}

.event-info-section {
    padding: 0;
}

.event-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.event-info-grid {
    margin-bottom: 2rem;
}

/* Bilet Alma Kartı */
.price-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.price-section h3 {
    font-size: 1.2rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 9px;
}

.event-performance {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-performance h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.performance-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.performance-location,
.performance-venue {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.performance-datetime {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.performance-date,
.performance-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.price-info {
    text-align: right;
    margin-bottom: 1rem;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e74c3c;
}

.ticket-actions {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.btn-primary:hover {
    background: #d44333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

/* Etkinlik Hakkında */
.event-about {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.about-header,
.artists-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.about-icon,
.artists-icon {
    font-size: 1.2rem;
}

.event-about h3,
.event-artists h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.about-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.btn-read-more {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-read-more:hover {
    text-decoration: underline;
}

/* Sanatçılar */
.event-artists {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.artists-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.artist-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #f8f9fa;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
}

.artist-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: bold;
}

.artist-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.artist-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.artist-initial {
    font-size: 16px;
    font-weight: bold;
    color: white;
}

.artist-name {
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
}

/* Etkinlik Detayları ve Kurallar */
.event-details-section {
    padding: 3rem 0;
    background: white;
}

.details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.left-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: fit-content;
}

.middle-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.right-column {
    display: flex;
    flex-direction: column;
    margin-top: -10px;
    height: fit-content;
}

.left-column .details-card,
.right-column .details-card {
    min-height: 523px;
    display: flex;
    flex-direction: column;
}

.left-column .venue-card {
    min-height: 500px;
}


@media (max-width: 1024px) {
    .details-wrapper {
        grid-template-columns: 1fr 1fr;
    }
    
    .right-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .details-wrapper {
        grid-template-columns: 1fr;
    }
    
    .left-column,
    .middle-column,
    .right-column {
        grid-column: 1;
    }
    
    .left-column .details-card,
    .right-column .details-card {
        min-height: 520px;
    }
}

.details-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.details-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.rules-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rules-list li {
    padding: 0.6rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.rules-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.rules-list li:last-child {
    border-bottom: none;
}

.venue-info {
    text-align: center;
}

.venue-info p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.venue-address {
    margin-bottom: 1.2rem !important;
}

.btn-map {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-map:hover {
    background: #d44333;
    transform: translateY(-2px);
}

/* Benzer Etkinlikler */
.similar-events {
    padding: 3rem 0;
    background: #f8f9fa;
}

.similar-events h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 2.5rem;
}

.similar-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.similar-event-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.similar-event-card:hover {
    transform: translateY(-5px);
}

.similar-event-image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.similar-event-info {
    padding: 1.2rem;
}

.similar-event-info h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.similar-event-info p {
    color: #666;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.similar-event-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .event-title {
        font-size: 1.8rem;
    }
    
    .event-main-image {
        height: 300px;
    }
    
    .performance-details,
    .performance-datetime {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price-section {
        padding: 1.2rem;
    }
    
    .similar-events-grid {
        grid-template-columns: 1fr;
    }
}

/* Sanatçılar Bölümü */
.artists-section {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.artist-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
}

.artist-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.artist-role {
    color: #666;
    font-size: 0.9rem;
}

/* İletişim Bilgileri */
.contact-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

/* İletişim kartı - Etkinlik detay sayfası */
.contact-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-card h3 {
    color: black !important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    width: 100%;
}

.contact-icon-img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-text {
    font-size: 14px;
    font-weight: 500;
}

/* Sanatçılar kartı - Etkinlik detay sayfası */
.artists-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border: none;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.artists-card h3 {
    color: black !important;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Eski contact-item stilleri (diğer sayfalar için) */
.contact-item i {
    margin-right: 0.8rem;
    color: #e74c3c;
    width: 20px;
}

.contact-item .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.info-card h3 .icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
}

.social-link .icon {
    width: 20px;
    height: 20px;
}

.contact-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #e74c3c;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.facebook {
    background: #4267b2;
}

/* Organizatör Bilgileri */
.organizer-section {
    background: white;
    padding: 2rem 0;
    border-top: 1px solid #eee;
}

.organizer-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.organizer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
    flex-shrink: 0;
}

.organizer-info h4 {
    font-size: 1.3rem;
    color: #f1c40f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.organizer-info p {
    color: #666;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Etiketler */
.tags-section {
    background: #f8f9fa;
    padding: 2rem 0;
}

.tags-container {
    margin-top: 1.5rem;
}

.tag {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #d44333;
    transform: translateY(-1px);
    color: white;
}

/* Açıklama Genişletme */
.description-toggle {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-weight: 600;
    margin-top: 0.5rem;
    padding: 0;
    text-decoration: underline;
}

.description-toggle:hover {
    color: #d44333;
}

.description-full {
    display: none;
}

.description-full.show {
    display: block;
}

@media (max-width: 480px) {
    .event-title {
        font-size: 1.5rem;
    }
    
    .event-main-image {
        height: 250px;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .btn-primary {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .organizer-card {
        flex-direction: column;
        text-align: center;
    }
    
    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Kullanım Koşulları Sayfası Stilleri */
.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 25px;
    color: #667eea;
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.terms-navigation {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.terms-navigation .nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.terms-navigation .nav-item:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.terms-navigation .nav-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.terms-navigation .nav-item i {
    font-size: 1rem;
}

.terms-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.terms-content h3 {
    color: #667eea;
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.terms-content h3:first-child {
    margin-top: 0;
}

.terms-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.terms-content strong {
    color: white;
    font-weight: 600;
}

/* Organizatör Profil Sayfası Stilleri */
.organizer-hero {
    position: relative;
    min-height: 400px;
    padding: 2rem 0;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.organizer-cover-section {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.organizer-cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
}

.organizer-profile-section {
    position: relative;
    z-index: 2;
}

.organizer-profile-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.organizer-avatar-large {
    flex-shrink: 0;
}

.organizer-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.organizer-avatar-placeholder-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    border: 4px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.organizer-info-content {
    flex: 1;
}

.organizer-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.organizer-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.organizer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #34495e;
    font-weight: 500;
}

.meta-item i {
    color: #667eea;
    width: 16px;
}

.organizer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-follow-large {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.btn-follow-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-follow-large.following {
    background: #27ae60;
}

.btn-profile {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    border: 2px solid #667eea;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.btn-profile:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.organizer-details-section {
    padding: 3rem 0;
    background: #f8f9fa;
}

.organizer-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: #e96052;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 1rem;
}

.info-card h3 i {
    color: #667eea;
    font-size: 1.2rem;
}

.about-content p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e3f2fd;
    transform: translateX(5px);
}

.contact-item i {
    color: #667eea;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item span {
    flex: 1;
    color: #2c3e50;
    font-weight: 500;
}

.contact-action {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.social-media {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.social-media h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.website {
    background: #34495e;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.card-header-with-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f1f2f6;
    padding-bottom: 1rem;
}

.btn-view-all {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.event-card-mini {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.event-card-mini:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.event-image-mini {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.event-image-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card-mini:hover .event-image-mini img {
    transform: scale(1.05);
}

.event-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.event-date-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.date-day {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 0.8rem;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
}

.event-info-mini {
    padding: 1.5rem;
}

.event-title-mini {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
}

.event-title-mini a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-title-mini a:hover {
    color: #667eea;
}

.event-meta-mini {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
}

.event-venue, .event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.event-venue i, .event-time i {
    color: #667eea;
    width: 16px;
    font-size: 0.9rem;
}

.event-sales {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 600;
    background: rgba(39, 174, 96, 0.1);
    padding: 6px 12px;
    border-radius: 15px;
    width: fit-content;
}

.no-events {
    text-align: center;
    padding: 3rem 2rem;
    color: #7f8c8d;
}

.no-events i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
    color: #bdc3c7;
}

.no-events p {
    margin: 0;
    font-size: 1.1rem;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .organizer-profile-info {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .organizer-title {
        font-size: 2rem;
    }
    
    .organizer-meta {
        justify-content: center;
    }
    
    .organizer-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .organizer-actions {
        justify-content: center;
    }
}

.agreement-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.agreement-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.agreement-box i {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.agreement-box h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.agreement-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.accept-btn {
    background: white;
    color: #667eea;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-navigation {
        flex-direction: column;
        align-items: center;
    }
    
    .terms-navigation .nav-item {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }
    
    .terms-content {
        padding: 1.5rem;
    }
    
    .agreement-box {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .last-updated {
        margin: 1rem;
    }
}

@media (max-width: 480px) {
    .terms-content {
        padding: 1rem;
    }
    
    .terms-content h3 {
        font-size: 1.1rem;
    }
    
    .agreement-box {
        padding: 1rem;
    }
    
    .accept-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}