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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    min-height: 100vh;
    background: #0f0f0f;
    color: white;
    overflow: hidden;
}

.player-container {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.video-player {
    width: 100%;
    max-width: 1400px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.video-container {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    background: #000;
}

.main-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0 0,0.5) 70%, transparent 100%);
    padding: 30px 24px 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.video-container:hover .player-controls {
    opacity: 1;
    transform: translateY(0);
}

.progress-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.progress-bar {
    width: 100%;
    height: 3px;
    background: rgba(255,255, 255,0.2);
    position: relative;
    transition: height 0.2s ease;
}

.progress-filled {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #2196f3;
    width: 0%;
    transition: width 0.1s linear;
}

.controls-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.control-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.control-btn:hover {
    background: rgba(255,255, 255,0.1);
}

.control-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.volume-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-display {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255, 255,0.9);
    font-variant-numeric: tabular-nums;
}

.video-info {
    padding: 20px;
}

.video-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.video-meta {
    font-size: 0.9rem;
}

.share-menu {
    position: absolute;
    background: rgba(28, 28, 28, 0.95);
    border-radius: 12px;
    padding: 16px;
    bottom: 70px;
    right: 20px;
    min-width: 200px;
    display: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-menu.active {
    display: block;
}

.share-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.share-buttons-container {
    display: grid;
    gap: 8px;
}

.share-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    font-size: 14px;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.share-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-button.facebook svg { 
    color: #1877f2; 
}
.share-button.twitter svg { 
    color: #1da1f2; 
}
.share-button.whatsapp svg { 
    color: #25d366; 
}
.share-button.copy svg { 
    color: #9ca3af; 
}