body {
background-color: #f8f9fa;
}
.winner-info {
display: flex;
align-items: center;
gap: 10px;
}
.profile-link:hover img {
transform: scale(1.05);
transition: transform 0.2s;
}
.comment-meta {
display: flex;
align-items: center;
gap: 15px;
}
.like-count {
color: #606060;
font-size: 0.9em;
display: flex;
align-items: center;
gap: 4px;
margin-top: 8px;
}
.like-count i {
font-size: 1.1em;
}
.deleted-comments {
color: #666;
font-size: 0.9em;
font-style: italic;
}
.winner-card {
visibility: hidden;
background: white;
border: none;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.winner-card:hover {
transform: translateY(-5px);
}
#drawingOverlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.9);
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
}
.drawing-container {
background: transparent !important;
z-index: 1000;
color: #fff;
font-size:2rem;
}
.drawing-text {
color: #0f0 !important;
text-shadow: 0 0 5px #0f0;
font-family: 'Courier New', monospace;
}
.total-comments {
color: #0f0 !important;
text-shadow: 0 0 5px #0f0;
}
.total-comments-label {
color: #0f0 !important;
opacity: 0.8;
}
#matrix-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1001;
background: black;
opacity: 0.2;
}
#matrix-canvas {
position: fixed;
top: 0;
left: 0;
z-index: 999;
}
.certificate {
background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
border: 2px solid #gold;
padding: 20px;
text-align: center;
width: 400px;
position: relative;
font-family: 'Times New Roman', serif;
box-shadow: 0 0 20px rgba(0,0,0,0.1);
word-wrap:anywhere;
}

.certificate::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border: 1px solid #d4af37;
margin: 10px;
pointer-events: none;
}

.certificate-header {
font-size: 30px;
color: #2c3e50;
margin-bottom: 20px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
}

.certificate-title {
font-size: 24px;
color: #34495e;
margin-bottom: 15px;
}

.certificate-winner-info {
display: flex;
align-items: center;
justify-content: center;
gap: 15px;
margin: 15px 0;
}

.certificate-profile-img {
width: 60px;
height: 60px;
border-radius: 50%;
border: 2px solid #d4af37;
padding: 2px;
background: white;
}

.certificate-name {
font-size: 28px;
color: #e74c3c;
font-weight: bold;
}

.certificate-date {
font-size: 18px;
color: #7f8c8d;
margin-top: 20px;
}

.certificate-seal {
width: 100px;
height: 100px;
border: 2px solid #d4af37;
border-radius: 50%;
margin: 20px auto;
display: flex;
align-items: center;
justify-content: center;
font-size: 40px;
color: #d4af37;
background: #fff;
box-shadow: 0 0 10px rgba(212,175,55,0.3);
}
.comment-date {
font-size: 12px;
color: #6c757d;
display: block;
margin-top: 2px;
}
.winner-number {
position: absolute;
top: -15px;
left: -15px;
width: 40px;
height: 40px;
background: #e74c3c;
border-radius: 50%;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
font-size: 18px;
border: 2px solid white;
box-shadow: 0 2px 5px rgba(0,0,0,0.2);
z-index: 1;
}
.certificate-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
margin-top: 40px;
}
.wincomment {margin-bottom: 10rem;}
.vbaslik2 {
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0px 5px 10px #9286bfdb;
	margin: 5px;
}
.video-stats{
	font-size: 20px;
}

.rainbow-text {font-size:2.5rem; font-weight:bold; background:linear-gradient(90deg,red,orange,yellow,green,blue,indigo,violet); background-size:300%; -webkit-background-clip:text; -webkit-text-fill-color:transparent; animation:rainbow 3s linear infinite;}
@keyframes rainbow {
0% {background-position:0%;}
50% {background-position:100%;}
100% {background-position:0%;}
}

@keyframes glow {
    0% { text-shadow: 0 0 5px gold; }
    50% { text-shadow: 0 0 10px goldenrod; }
    100% { text-shadow: 0 0 5px gold; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.confetti {
    display: inline-block;
    font-weight: bold;
    font-size: 2rem;
    color: #2e6ac8;
    animation: glow 2s infinite alternate, pulse 3s infinite;
}
.scroll-box {
  height: 105px;
  overflow-y: auto;
}
@media (max-width: 768px) {.drawing-container {font-size:1.4rem;}}