/* Reset */
* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font: 68.75%/1.4545em Verdana, Helvetica, Arial, sans-serif;
    background-color: #151514;
    color: #d4d4d3;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Pun Theme Structure */
.pun {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.pun .box {
    background-color: #272726;
    border: 1px solid #353534;
    border-radius: 4px;
}

/* Tüm içerik tek bir inbox içinde */
.pun .block .inbox {
    padding: 25px 20px 20px 20px;
    text-align: center;
}

/* Title - Üstte */
#brdtitle {
    text-align: center;
    margin-bottom: 12px;
}

#brdtitle h1 {
    font-size: 1.8em;
    font-weight: 400;
    font-family: Raleway, Verdana;
    margin-bottom: 3px;
}

#brdtitle h1 a {
    color: #eaeaea;
    text-decoration: none;
}

#brdtitle h1 a span {
    color: #95b806;
}

#brddesc {
    font-size: 11px;
    color: #888;
    margin-bottom: 25px;
    font-style: italic;
}

/* Button - Title'ın hemen altında */
.button {
    font-family: verdana, helvetica, arial, sans-serif;
    background-color: #212120;
    color: #ccc !important;
    border: 1px solid #3e3e3d;
    font-size: 11px;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    margin: 0;
    min-width: 165px;
    transition: all 0.2s ease;
}

.button:hover {
    background-color: #1b1b1a;
    border-color: #444;
    color: #aaa !important;
}

.button i {
    font-size: 14px;
}

/* Login info - Button'un hemen altında */
.login-info {
    font-size: 11px;
    color: #888;
    margin-top: 12px;
    line-height: 1.4;
}

/* Notifications */
.notify {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #3a3a3a;
    border: 1px solid rgba(100, 100, 100, 0.4);
    border-radius: 4px;
    padding: 10px 15px;
    font-size: 11px;
    color: #d4d4d3;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    max-width: 300px;
}

.notify.show {
    opacity: 1;
    transform: translateY(0);
}

.notify.hide {
    opacity: 0;
    transform: translateY(-20px);
}

.notify.success {
    border-left: 3px solid #95b806;
}

.notify.error {
    border-left: 3px solid #c44;
}

/* Footer */
#brdfooter {
    text-align: center;
    margin-top: 15px;
    font-size: 10px;
    color: #666;
}

@media (max-width: 600px) {
    .pun {
        max-width: 100%;
    }

    .button {
        min-width: 20px;
    }

    .notify {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}
