/* Akira Toriyama Tribute Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url('https://www.shutterstock.com/image-photo/bangkok-thailand-22-april-2021-600nw-1960520509.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.6;
    min-height: 100vh;
    font-family: Arial, sans-serif;
}

#main {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-top: 20px;
    margin-bottom: 20px;
}

#title {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    text-align: center;
    padding: 40px 20px;
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

#img-div {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff, #f8f9fa);
}

#image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#image:hover {
    transform: scale(1.02);
}

#img-caption {
    margin-top: 20px;
    font-style: italic;
    color: #666;
    font-size: 1.1em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#tribute-info {
    padding: 40px;
    background: white;
    font-size: 1.1em;
    line-height: 1.8;
}

.section-title + ul {
    margin-top: 15px;
    padding-left: 20px;
}

.section-title + ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.section-title + ul li::marker {
    color: orange;
}

.highlight-box {
    background: linear-gradient(135deg, #fff3e0, #ffebcd);
    border-left: 5px solid #ff6b35;
    padding: 25px;
    margin: 25px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tribute-link-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

#tribute-link {
    display: inline-block;
    color: white;
    text-decoration: none;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#tribute-link:hover {
    background: white;
    color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.quote {
    font-style: italic;
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    border-left: 4px solid #ff6b35;
    background: #f9f9f9;
}

.timeline-item {
    display: flex;
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.timeline-year {
    font-weight: bold;
    color: #ff6b35;
    margin-right: 20px;
    min-width: 60px;
}

@media (max-width: 768px) {
    #title {
        font-size: 2em;
        padding: 30px 15px;
    }

    #tribute-info {
        padding: 20px;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-year {
        margin-bottom: 10px;
    }
}