body {
    margin: 0;
    padding: 0;
    background-color: #000000;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    box-sizing: border-box;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

#logo {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

#linksContainer {
    width: 100%;
    box-sizing: border-box;
}

.link-button {
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.link-button:hover {
    transform: scale(1.02);
    background-color: #2a2a2a;
}

.link-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    flex-shrink: 0;
}

.link-text {
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copyright {
    margin-top: auto;
    padding-top: 40px;
    text-align: center;
    color: #666666;
    font-size: 12px;
    line-height: 1.5;
    width: 100%;
    box-sizing: border-box;
}

/* Hikaye sayfası için eklenen stiller */
#storiesContainer {
    width: 100%;
    box-sizing: border-box;
}

.story-button {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
    color: #ffffff;
    transition: transform 0.2s, background-color 0.2s;
}

.story-button:hover {
    transform: scale(1.02);
    background-color: #2a2a2a;
}

.story-title {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: #ffffff;
}

.story-content {
    font-size: 14px;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 10px;
}

.story-date {
    font-size: 12px;
    color: #666666;
    text-align: right;
}

/* Mobil cihazlar için ek düzenlemeler */
@media screen and (max-width: 480px) {
    .container {
        padding: 15px;
    }

    .link-button {
        padding: 12px 15px;
    }

    .link-text {
        font-size: 14px;
    }

    .link-icon {
        width: 20px;
        height: 20px;
        margin-right: 10px;
    }

    .copyright {
        font-size: 10px;
        padding-top: 30px;
    }

    .story-button {
        padding: 12px 15px;
    }

    .story-title {
        font-size: 14px;
    }

    .story-content {
        font-size: 13px;
    }

    .story-date {
        font-size: 10px;
    }
}