/* E-Gazete Site Stilleri */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav a:hover,
.nav a.active {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

/* Magazine Grid */
.magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

/* Magazine Card */
.magazine-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.magazine-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

/* Card Image */
.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.magazine-card:hover .card-thumbnail {
    transform: scale(1.05);
}

.card-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
}

/* Card Title */
.card-title {
    padding: 1rem;
    text-align: center;
    background: white;
}

.card-title h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.gazete-status {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.gazete-status.active {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.gazete-status.inactive {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Cover Content */
.cover-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.cover-header {
    margin-bottom: 1rem;
}

.magazine-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
}

.magazine-subtitle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.magazine-type {
    background: #3498db;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.magazine-date {
    color: #7f8c8d;
    font-size: 0.9rem;
    font-weight: 500;
}

.cover-footer {
    margin-top: auto;
}

.magazine-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #ecf0f1;
}

.file-size {
    color: #7f8c8d;
    font-size: 0.8rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
}

.status-badge.inactive {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* Gazete Detay */
.gazete-detail-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.gazete-detail-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #ecf0f1;
}

.gazete-detail-title-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gazete-detail-thumbnail {
    flex-shrink: 0;
}

.detail-thumbnail-image {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.detail-thumbnail-image:hover {
    transform: scale(1.05);
}

.gazete-detail-title-content {
    flex: 1;
    min-width: 300px;
}

.gazete-detail-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: left;
}

.gazete-detail-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.gazete-detail-meta > div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

.gazete-detail-meta i {
    color: #3498db;
}

.gazete-detail-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Gazete Detay Sekmesi */
.gazete-detail {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
    overflow-y: auto;
}

.detail-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.detail-header h2 {
    margin: 0;
    font-size: 1.5rem;
    flex: 1;
}

.detail-content {
    padding: 2rem;
    min-height: calc(100vh - 80px);
}

.detail-content iframe {
    width: 100%;
    height: 80vh;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Gazete Container (eski) */
.gazete-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.gazete-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
}

.gazete-date {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.gazete-date i {
    margin-right: 0.5rem;
    color: #3498db;
}

/* Gazete Actions */
.gazete-actions {
    margin-bottom: 2rem;
    text-align: left;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #6c757d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.back-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* PDF Container */
.pdf-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 80vh;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.pdf-controls {
    background: #f8f9fa;
    padding: 1rem;
    border-bottom: 1px solid #ecf0f1;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pdf-controls .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pdf-controls .btn-primary {
    background: #3498db;
    color: white;
}

.pdf-controls .btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.pdf-controls .btn-secondary {
    background: #95a5a6;
    color: white;
}

.pdf-controls .btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

.pdf-viewer iframe {
    width: 100%;
    height: 800px;
    border: none;
    display: block;
}

/* Image Viewer */
.image-viewer {
    text-align: center;
}

.gazete-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.gazete-image:hover {
    transform: scale(1.02);
}

/* No Magazine State */
.no-magazine {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 500px;
    margin: 0 auto;
}

.no-magazine-icon {
    margin-bottom: 2rem;
}

.no-magazine-icon i {
    font-size: 5rem;
    color: #bdc3c7;
    opacity: 0.7;
}

.no-magazine h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 600;
}

.no-magazine p {
    color: #7f8c8d;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Künye Sayfası */
.künye-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
}

.page-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #3498db;
    padding-bottom: 1rem;
}

.künye-content {
    display: grid;
    gap: 2rem;
}

.künye-section {
    border: 1px solid #ecf0f1;
    border-radius: 8px;
    padding: 1.5rem;
    background: #f8f9fa;
}

.künye-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.künye-section h3 i {
    color: #3498db;
}

.künye-info {
    display: grid;
    gap: 0.8rem;
}

.künye-info p {
    margin: 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ecf0f1;
}

.künye-info p:last-child {
    border-bottom: none;
}

.künye-info strong {
    color: #2c3e50;
    display: inline-block;
    min-width: 150px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #3498db;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #bdc3c7;
}

.contact-item i {
    background: #3498db;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.copyright {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin: 0;
}

/* Simple Footer for Künye */
.footer-simple {
    background: #f8f9fa;
    color: #6c757d;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid #dee2e6;
}

.footer-simple-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.footer-logo p {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0.2rem 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        gap: 1rem;
    }
    
    .gazete-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .pdf-viewer iframe {
        height: 600px;
    }
    
    .künye-info strong {
        min-width: auto;
        display: block;
        margin-bottom: 0.3rem;
    }
    
    .gazete-detail-title-section {
        flex-direction: column;
        text-align: center;
    }
    
    .gazete-detail-title {
        text-align: center;
        font-size: 2rem;
    }
    
    .gazete-detail-meta {
        justify-content: center;
    }
    
    .detail-thumbnail-image {
        width: 150px;
        height: 120px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .magazine-cover {
        max-width: 350px;
    }
    
    .pdf-toolbar {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .gazete-container,
    .künye-container {
        padding: 1rem;
    }
    
    .gazete-title,
    .page-title {
        font-size: 1.5rem;
    }
    
    .pdf-viewer iframe {
        height: 400px;
    }
}

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

.gazete-container,
.künye-container {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* PDF Viewer Stilleri */
.pdf-viewer-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
}

.pdf-controls-bottom {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.pdf-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pdf-btn:hover:not(:disabled) {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pdf-btn:active:not(:disabled) {
    transform: translateY(0) scale(0.95);
    transition: all 0.1s ease;
}

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

.page-info {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.pdf-zoom-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.pdf-canvas-container {
    position: relative;
    background: #f8f9fa;
    min-height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: auto;
    cursor: pointer;
}

#pdfCanvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
    background: white;
}

/* Kitap Çevirme Alanları */
.page-turn-areas {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
}

.page-turn-left,
.page-turn-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    pointer-events: all;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-turn-left {
    left: 0;
}

.page-turn-right {
    right: 0;
}

.page-turn-left:hover,
.page-turn-right:hover {
    background: rgba(52, 152, 219, 0.1);
    backdrop-filter: blur(1px);
}

.page-turn-left:hover::after {
    content: '📖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    opacity: 0.7;
    animation: pageTurnHint 1s ease-in-out infinite alternate;
}

.page-turn-right:hover::after {
    content: '📖';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scaleX(-1);
    font-size: 2.5rem;
    opacity: 0.7;
    animation: pageTurnHint 1s ease-in-out infinite alternate;
}

@keyframes pageTurnHint {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-50%, -50%) scale(1.1); }
}

/* Alt Kontrol Paneli */
.page-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pdf-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#pdfCanvas {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.pdf-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #6c757d;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pdf-loading i {
    font-size: 2rem;
    color: #3498db;
}

.pdf-loading p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* A4 Büyüklüğünde Kapak Fotoğrafı */
.magazine-card {
    position: relative;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 3/4; /* A4 oranı */
    max-width: 300px;
    margin: 0 auto;
}

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

.card-image {
    width: 100%;
    height: 80%;
    overflow: hidden;
    position: relative;
}

.card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.magazine-card:hover .card-thumbnail {
    transform: scale(1.05);
}

.card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.card-title {
    padding: 1rem;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
}

.card-title h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    line-height: 1.3;
    margin: 0 0 0.5rem 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magazine-card:hover .card-overlay {
    opacity: 1;
}

.card-overlay i {
    font-size: 3rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.card-meta i {
    font-size: 0.7rem;
}

/* Responsive PDF Viewer */
@media (max-width: 768px) {
    .pdf-controls-bottom {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .page-navigation,
    .pdf-zoom-controls,
    .pdf-actions {
        justify-content: center;
        width: 100%;
    }
    
    .pdf-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .magazine-card {
        max-width: 250px;
    }
    
    .page-turn-left,
    .page-turn-right {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .pdf-controls-bottom {
        padding: 0.8rem;
    }
    
    .pdf-btn {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .page-info {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
    
    .magazine-card {
        max-width: 200px;
    }
    
    .card-title h3 {
        font-size: 0.9rem;
    }
    
    .page-turn-left,
    .page-turn-right {
        width: 40%;
    }
}