/* Enhanced Content Styles */

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0 40px;
}

.hero-stat {
    text-align: center;
    color: var(--white);
}

.hero-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat .stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

/* About Stats */
.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: var(--soft-green);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.stat-box .label {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Vision Cards */
.vision-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.vision-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
}

.vision-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.vision-card h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateX(10px);
}

.service-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.service-item .service-details {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-item .service-details li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Program Cards */
.program-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.program-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card .card-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.program-card .card-body {
    padding: 25px;
}

.program-card .card-body h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.program-card .program-features {
    margin-top: 15px;
}

.program-card .program-features li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin: 30px 0;
    padding: 0 30px;
}

.timeline-item:nth-child(odd) {
    text-align: right;
    padding-right: 60%;
}

.timeline-item:nth-child(even) {
    text-align: left;
    padding-left: 60%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 15px;
    height: 15px;
    background: var(--primary-green);
    border: 3px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px var(--primary-green);
}

.timeline-content {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-date {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Contact Info Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.contact-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item .icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.contact-item h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.contact-item .contact-details {
    color: var(--text-light);
    line-height: 1.6;
}

/* Organization Chart Styles */
.organization-chart {
    margin: 40px 0;
}

.org-level-1, .org-level-2 {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.org-level-2 {
    gap: 20px;
    flex-wrap: wrap;
}

.org-box {
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.org-box:hover {
    transform: translateY(-5px);
}

.org-box.president {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

.org-box h4 {
    margin-bottom: 10px;
    color: var(--primary-green);
}

.org-box.president h4 {
    color: var(--white);
}

.org-departments {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.dept-group {
    background: var(--soft-green);
    padding: 20px;
    border-radius: 15px;
}

.dept-group h5 {
    color: var(--primary-green);
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.dept-group ul {
    list-style: none;
    padding: 0;
}

.dept-group li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.dept-group li:last-child {
    border-bottom: none;
}

/* President Message Styles */
.president-message {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.president-photo {
    text-align: center;
}

.president-img {
    width: 100%;
    max-width: 250px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.president-content h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.president-content h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: normal;
}

.president-content blockquote {
    background: var(--primary-green);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 20px 0 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.president-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.president-signature {
    margin-top: 30px;
    text-align: right;
    color: var(--primary-green);
}

/* Certification Styles */
.cert-overview {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.cert-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.course-info {
    background: var(--soft-green);
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
}

.info-item {
    margin: 10px 0;
    color: var(--text-dark);
}

.cert-button {
    margin-top: 20px;
    text-align: center;
}

.cert-level {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: normal;
}

/* Tab Styles */
.curriculum-tabs {
    margin: 40px 0;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.tab-content {
    margin-top: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.curriculum-weeks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.week-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-green);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.week-item h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.week-item ul {
    list-style: none;
    padding: 0;
}

.week-item li {
    padding: 5px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.week-item li:last-child {
    border-bottom: none;
}

/* Schedule Table */
.schedule-table {
    margin: 40px 0;
    overflow-x: auto;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.schedule-table th,
.schedule-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.schedule-table th {
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
}

.schedule-table tbody tr:hover {
    background: var(--soft-green);
}

.status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status.recruiting {
    background: #e8f5e8;
    color: #2e7d32;
}

.status.full {
    background: #ffebee;
    color: #c62828;
}

.status.upcoming {
    background: #e3f2fd;
    color: #1976d2;
}

.schedule-notes {
    background: var(--soft-green);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.schedule-notes h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.schedule-notes li {
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* Application Steps */
.application-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.step-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    background: var(--primary-green);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h4 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.step-contact,
.step-documents,
.step-payment,
.step-start {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.application-cta {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin: 50px 0;
}

.application-cta h3 {
    margin-bottom: 15px;
    font-size: 2rem;
}

.application-cta p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-stats,
    .vision-cards,
    .service-grid,
    .program-cards,
    .contact-grid,
    .curriculum-weeks,
    .application-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .org-departments {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .president-message,
    .cert-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cert-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        text-align: left;
        padding-left: 40px;
        padding-right: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 20px;
    }
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .schedule-table {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .org-departments {
        grid-template-columns: 1fr;
    }
    
    .cert-stats {
        grid-template-columns: 1fr;
    }
    
    .application-cta {
        padding: 30px 20px;
    }
    
    .application-cta h3 {
        font-size: 1.5rem;
    }
}

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

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

/* Location & Map Styles */
.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    align-items: start;
}

.map-container {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-green);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.address-card,
.transport-info,
.parking-info,
.landmark-info {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--primary-green);
}

.address-card h3,
.transport-info h3,
.parking-info h3,
.landmark-info h3 {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.address-details p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.transport-method {
    margin-bottom: 20px;
}

.transport-method h4 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1rem;
}

.subway-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.line-9 {
    background: #cea43a;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

.station {
    background: var(--primary-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
}

.exit {
    background: #666;
    color: var(--white);
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
}

.bus-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.bus-type {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bus-type.blue {
    background: #0066cc;
    color: var(--white);
}

.bus-type.green {
    background: #22c55e;
    color: var(--white);
}

.bus-numbers {
    font-weight: 600;
    color: var(--text-dark);
}

.parking-details p {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.route-info h4 {
    color: var(--primary-green);
    margin: 15px 0 10px;
    font-size: 1rem;
}

.route-info ul {
    list-style: none;
    padding: 0;
}

.route-info li {
    margin-bottom: 8px;
    color: var(--text-dark);
    padding-left: 15px;
    position: relative;
}

.route-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 600;
}

.landmarks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.landmark-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: var(--soft-green);
    border-radius: 10px;
    color: var(--text-dark);
}

.landmark-icon {
    font-size: 1.2rem;
}

.location-notice {
    margin-top: 40px;
}

.notice-card {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.notice-card h4 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.notice-card p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--white);
    color: var(--primary-green);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Location Styles */
@media (max-width: 1024px) {
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .landmarks {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .subway-line {
        flex-wrap: wrap;
    }
    
    .bus-info {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .map-container iframe {
        height: 300px;
    }
    
    .location-info {
        gap: 20px;
    }
    
    .address-card,
    .transport-info,
    .parking-info,
    .landmark-info {
        padding: 20px;
    }
    
    .notice-card {
        padding: 25px 20px;
    }
}

/* Gallery Styles */
.gallery-nav {
    margin-bottom: 40px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.gallery-tab {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--primary-green);
    color: var(--white);
}

.gallery-section {
    display: none;
}

.gallery-section.active {
    display: block;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.gallery-overlay p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Gallery Modal (추후 확장 가능) */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

/* Responsive Gallery Styles */
@media (max-width: 768px) {
    .gallery-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .gallery-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .gallery-img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-overlay {
        position: static;
        transform: none;
        background: rgba(46, 125, 50, 0.9);
        padding: 15px;
    }
}

/* Board Styles */
.board-nav {
    margin-bottom: 40px;
}

.board-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.board-tab {
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.board-tab.active,
.board-tab:hover {
    background: var(--primary-green);
    color: var(--white);
}

.board-section {
    display: none;
}

.board-section.active {
    display: block;
}

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

.board-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.board-item.important {
    border-left: 5px solid #ff6b6b;
}

.board-item.review {
    border-left: 5px solid #ffd93d;
}

.board-badge {
    display: inline-block;
    background: #ff6b6b;
    color: var(--white);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.board-content h3 {
    margin-bottom: 10px;
}

.board-content h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.board-content h3 a:hover {
    color: var(--primary-green);
}

.board-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.board-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.board-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.answer-status {
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
}

.answer-status.answered {
    background: #e8f5e8;
    color: #2e7d32;
}

.answer-status.pending {
    background: #fff3e0;
    color: #f57c00;
}

.review-rating {
    margin-bottom: 10px;
}

.stars {
    color: #ffd93d;
    font-size: 1.2rem;
}

.write-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
}

.write-button .cta-button {
    border-radius: 50px;
    padding: 15px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive Board Styles */
@media (max-width: 768px) {
    .board-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .board-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .board-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .write-button {
        bottom: 20px;
        right: 20px;
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}