* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-content {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: start;
}

.video-container {
    flex: 1;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}


video {
    width: 100%;
    border-radius: 5px;
    pointer-events: none;
}

video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-enclosure {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-moz-media-controls {
    display: none !important;
}

video::--ms-media-controls {
    display: none !important;
}

#restartButton {
    padding: 14px 28px;
    font-size: 16px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    min-width: 200px;
}

#restartButton:hover {
    background-color: #333333;
}

#restartButton:active {
    transform: scale(0.98);
}

.click-counter {
    text-align: center;
    margin: 10px 0;
}

.click-counter span {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    display: block;
}

.stats {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #e8e8e8;
}

.stat-item {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #e8e8e8;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item span:first-child {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.stat-item span:last-child {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    display: block;
}

.stat-item span:last-child::after {
    content: "";
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.stat-item:first-child span {
    display: inline;
    font-size: 16px;
    color: #333;
}

.stat-item:first-child span:nth-child(2) {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 0 5px;
}

.ad-space {
    background-color: #e9ecef;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    color: #666;
}

.ad-left, .ad-right {
    width: 160px;
    min-height: 600px;
}

.ad-top, .ad-bottom {
    width: 100%;
    min-height: 90px;
}

/* Mobil ve tablet responsive */
@media (max-width: 1024px) {
    .ad-left, .ad-right {
        display: none;
    }
    
    .main-content {
        flex-direction: column;
        align-items: center;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    body {
        padding: 5px;
    }
    
    .container {
        gap: 10px;
    }
    
    .video-container {
        padding: 20px 15px;
        gap: 15px;
    }
    
    #restartButton {
        padding: 12px 24px;
        font-size: 15px;
        min-width: 180px;
    }
    
    .stats {
        max-width: 100%;
        padding: 15px;
    }
    
    .stat-item {
        padding: 10px 0;
    }
    
    .stat-item span:last-child {
        font-size: 20px;
    }
    
    .click-counter span {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .video-container {
        padding: 15px 10px;
    }
    
    #restartButton {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .stat-item span:first-child {
        font-size: 13px;
    }
    
    .stat-item span:last-child {
        font-size: 18px;
    }
    
    .click-counter span {
        font-size: 28px;
    }
}

