* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.login-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1a0a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.login-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px;
    border-radius: 20px;
    border: 3px solid #9b59b6;
    box-shadow: 0 0 50px rgba(155, 89, 182, 0.5);
    text-align: center;
    min-width: 350px;
}

.login-box h2 {
    font-size: 3em;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.login-subtitle {
    color: #ccc;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.login-box input {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #9b59b6;
    border-radius: 10px;
    color: #fff;
    font-size: 1.1em;
    outline: none;
    transition: all 0.3s ease;
}

.login-box input:focus {
    border-color: #e91e63;
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.login-box input::placeholder {
    color: #888;
}

.login-box button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.login-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.8);
}

.error-message {
    color: #ff4444;
    margin-top: 15px;
    font-size: 0.9em;
    min-height: 20px;
}

.site-content {
    width: 100%;
    height: 100vh;
}

.pornhub-logo {
    position: fixed;
    top: 15px;
    right: 40px;
    font-size: 5em;
    font-weight: bold;
    background: linear-gradient(135deg, #ff9500 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 8px;
    z-index: 10000;
    font-family: 'Arial Black', Arial, sans-serif;
    pointer-events: none;
    filter: drop-shadow(0 0 20px rgba(255, 149, 0, 0.8));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 149, 0, 0.8));
    }
    to {
        filter: drop-shadow(0 0 40px rgba(255, 204, 0, 0.9));
    }
}

.ad-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-right: 3px solid #9b59b6;
    z-index: 100;
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
}

.ad-label {
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    color: #fff;
    padding: 8px 15px;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.5);
}

.ad-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 2px dashed rgba(155, 89, 182, 0.3);
    padding: 0;
    min-height: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: calc(100vh - 30px);
}

.ad-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.ad-placeholder {
    color: #666;
    text-align: center;
    font-size: 0.9em;
    line-height: 1.6;
}

.stars-container {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: relative;
}

.star-page {
    min-width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.star-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff9900, transparent);
    z-index: 1;
}

.star-page::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff9900, transparent);
    z-index: 1;
}

.star-page.active {
    transform: translateX(0);
}

.star-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1400px;
    height: 100vh;
    gap: 0;
    align-items: center;
    padding: 60px;
}

.star-image-container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.star-image-container::before {
    content: 'Popüler';
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    color: #fff;
    padding: 10px 20px;
    font-size: 0.9em;
    font-weight: bold;
    z-index: 10;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.6);
}

.star-image {
    width: 100%;
    height: 90%;
    object-fit: cover;
    border-radius: 15px;
    border: 3px solid #9b59b6;
    box-shadow: 0 0 50px rgba(155, 89, 182, 0.5);
    transition: transform 0.3s ease;
}

.star-image:hover {
    transform: scale(1.02);
}

.star-info {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
}

.star-title {
    font-size: 4em;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.2;
    filter: drop-shadow(0 0 20px rgba(155, 89, 182, 0.6));
}

.star-description {
    font-size: 1.4em;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.star-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #333;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: rgba(155, 89, 182, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(155, 89, 182, 0.3);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(155, 89, 182, 0.2);
    border-color: #9b59b6;
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.4);
}

.stat-number {
    font-size: 2.5em;
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(155, 89, 182, 0.5));
}

.stat-label {
    font-size: 0.9em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.navigation {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 30px;
    border-radius: 50px;
    border: 2px solid #9b59b6;
    box-shadow: 0 0 30px rgba(155, 89, 182, 0.4);
}

.nav-btn {
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    font-size: 2em;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-weight: bold;
}

.nav-btn:hover {
    background: #fff;
    background: linear-gradient(135deg, #e91e63 0%, #9b59b6 100%);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(155, 89, 182, 0.6);
}

.nav-btn:active {
    transform: scale(0.95);
}

.nav-dots {
    display: flex;
    gap: 15px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #9b59b6;
}

.nav-dot.active {
    background: linear-gradient(135deg, #9b59b6 0%, #e91e63 100%);
    box-shadow: 0 0 15px rgba(155, 89, 182, 0.8);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .ad-sidebar {
        display: none;
    }

    .stars-container {
        margin-left: 0;
        width: 100vw;
    }

    .star-content {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .star-image-container {
        height: 50vh;
    }

    .star-image {
        height: 100%;
    }

    .star-info {
        padding: 30px 20px;
        height: auto;
    }

    .star-title {
        font-size: 2.5em;
    }

    .star-description {
        font-size: 1.1em;
    }

    .star-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-number {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .pornhub-logo {
        font-size: 1.8em;
        top: 10px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        letter-spacing: 3px;
        line-height: 1;
        max-width: calc(100vw - 30px);
        text-align: center;
    }

    .star-page::after {
        display: none;
    }

    .star-title {
        font-size: 2em;
        letter-spacing: 2px;
    }

    .star-description {
        font-size: 1em;
    }

    .navigation {
        bottom: 20px;
        padding: 10px 20px;
        gap: 20px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }
}

@media (max-width: 480px) {
    .pornhub-logo {
        font-size: 1.4em;
        top: 5px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        letter-spacing: 2px;
        text-align: center;
    }
}
