body {
    background-image: url('/files/images/demirci-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow-x: hidden;
}


.demirci-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

/* GIF Modal */
.gif-modal {
    display: none;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto 0;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gif-modal.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.gif-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gif-modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

.gif-modal-close {
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.gif-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.gif-modal-body {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background: #000;
}

.gif-modal-body img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ana içerik */
.main-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85) 0%, rgba(30, 30, 30, 0.8) 100%);
    border-radius: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    padding: 2rem;
    margin-top: 80px;
    overflow: visible;
}

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

.info-card {
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
}

.info-card-title {
    font-size: 0.875rem;
    color: #a3a3a3;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card-title img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.info-card-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.action-section {
    text-align: center;
    margin: 2rem 0;
}

.action-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.action-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    min-width: 200px;
}

.action-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.action-message {
    padding: 1rem 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 0.75rem;
    color: #ffc107;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0.5rem 0;
}

.action-btn.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.action-btn.success:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.action-btn.danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.action-btn.orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.action-btn.orange:hover:not(:disabled) {
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.status-message {
    margin-bottom: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    display: none;
    min-height: 50px;
    align-items: center;
    justify-content: center;
}

.status-message.active {
    display: flex;
}

.status-message.success {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #10b981;
    color: #10b981;
}

.status-message.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.status-message.info {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid #ef4444;
    color: #ef4444;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: #ef4444;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.bekleme-timer {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ef4444;
    margin-top: 1rem;
    text-align: center;
}

/* Balık emoji gösterimi */
.balik-emoji-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-radius: 1.5rem;
    border: 2px solid rgba(239, 68, 68, 0.3);
    animation: fadeInScale 0.5s ease-out;
}

.balik-emoji-container.active {
    display: flex;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.balik-emoji-large {
    font-size: 8rem;
    line-height: 1;
    margin: 1rem 0;
    animation: bounce 1s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.5));
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.balik-emoji-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 1rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.balik-emoji-subtitle {
    font-size: 1rem;
    color: #a3a3a3;
    margin-top: 0.5rem;
}


/* Accordion Stilleri */
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    padding: 1rem;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.accordion-header:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px);
}

.accordion-header span:first-child {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    pointer-events: none;
    /* Hover sorununu önlemek için */
    display: inline-block;
}

.accordion-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: #ef4444;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-header.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.accordion-content.active {
    max-height: 5000px;
    opacity: 1;
    margin-top: 1rem;
    overflow: visible;
}

.baliklar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    overflow: visible;
    position: relative;
}

.balik-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.balik-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    z-index: 10;
}

.balik-item-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.balik-item-emoji img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.balik-item-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.balik-item-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
}

/* Accordion Bölümleri */
.baliklar-section,
.market-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(30, 30, 30, 0.8);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: visible;
    position: relative;
    z-index: 1;
}


.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    overflow: visible;
    position: relative;
}

.market-item {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.market-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    z-index: 10;
}

.market-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.market-item.disabled:hover {
    transform: none;
    box-shadow: none;
}

.market-item-emoji {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.market-item-emoji img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.market-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.market-item-description {
    font-size: 0.875rem;
    color: #a3a3a3;
    margin-bottom: 0.75rem;
    min-height: 40px;
}

.market-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.market-item-price img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    flex-shrink: 0;
}

.market-item-button {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.market-item-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.market-item-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modern Ekonomi Bar - Revolutionary Design */
.ekonomi-bar {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.ekonomi-bar-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 0 60px rgba(239, 68, 68, 0.05);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.ekonomi-bar-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    opacity: 0.6;
}

.ekonomi-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 1rem;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 120px;
    justify-content: center;
}

.ekonomi-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ef4444, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ekonomi-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(239, 68, 68, 0.3) inset,
        0 0 30px rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.4);
}

.ekonomi-item:hover::before {
    opacity: 1;
}

.ekonomi-icon {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.ekonomi-item:hover .ekonomi-icon {
    transform: scale(1.1) rotate(5deg);
}

.ekonomi-label {
    font-size: 0.875rem;
    color: #a3a3a3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

.ekonomi-value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(135deg, #ffffff 0%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
    margin-left: 0;
}

@media (max-width: 768px) {
    .ekonomi-bar-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 1rem;
    }

    .ekonomi-item {
        min-height: 100px;
        padding: 1rem 0.75rem;
    }

    .ekonomi-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .ekonomi-label {
        font-size: 0.75rem;
    }

    .ekonomi-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .ekonomi-bar-inner {
        grid-template-columns: 1fr;
    }
}

/* Modern buton animasyonları */
.action-btn {
    position: relative;
    overflow: hidden;
}

/* Transfer Modal Styles - Same as magaza.ejs */
.transfer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    justify-content: center;
    align-items: center;
}

.transfer-modal.active {
    display: flex;
}

.transfer-modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border-radius: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    backdrop-filter: blur(15px);
}

.transfer-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.transfer-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.transfer-modal-close {
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.transfer-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.transfer-direction-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.transfer-direction-btn {
    flex: 1;
    padding: 0.75rem;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transfer-direction-btn.active {
    background: #ef4444;
    border-color: #ef4444;
}

.transfer-direction-btn:hover:not(.active) {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.transfer-amount-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(30, 30, 30, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.transfer-amount-input:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.transfer-submit-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transfer-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.transfer-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modern Transfer Design */
.ekonomi-item-with-transfer {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
}

.ekonomi-item-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.ekonomi-kasa {
    font-size: 0.8rem;
    color: #a3a3a3;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-weight: 500;
}

.ekonomi-kasa span {
    color: #ef4444;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.transfer-btn-small {
    margin-top: 0.25rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.08) 100%);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 0.75rem;
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.transfer-btn-small::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.transfer-btn-small:hover {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 20px rgba(239, 68, 68, 0.4),
        0 0 0 2px rgba(239, 68, 68, 0.2) inset;
    border-color: #ef4444;
}

.transfer-btn-small:hover::before {
    width: 300px;
    height: 300px;
}

.transfer-btn-small:active {
    transform: translateY(-1px) scale(1.02);
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-btn:hover::before {
    width: 300px;
    height: 300px;
}

.action-btn span {
    position: relative;
    z-index: 1;
}

/* Durum mesajı animasyonları */
.status-message {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bilgi kartları hover efekti */
.info-card {
    transition: all 0.3s ease;
    cursor: default;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .main-content {
        padding: 1rem;
        margin-top: 60px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }

    .gif-modal {
        max-width: 100%;
        margin: 1rem auto 0;
    }

    .gif-modal-header {
        padding: 0.75rem 1rem;
    }

    .gif-modal-title {
        font-size: 1rem;
    }
}
