/* General body styling */
body {
    font-family: "Inter", sans-serif;
    background: linear-gradient(to bottom right, #000000, #111111);
    color: #e0e0e0;
    background-image:
        linear-gradient(rgba(0, 255, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    animation: background-scan 30s linear infinite;
}

/* Keyframe animation for background scanning effect */
@keyframes background-scan {
    from { background-position: 0 0; }
    to { background-position: 100% 100%; }
}

/* Main content box styling */
.content-box {
    background-color: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 255, 0, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

/* Custom SVG Button Styles */
.container {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem; /* Tailwind's mt-6 equivalent */
    margin-bottom: 1.5rem; /* Add some bottom margin */
}

.circle {
    stroke: #f8aa28; /* Orange color */
    stroke-dasharray: 650;
    stroke-dashoffset: 650;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    opacity: 0.3;
}

.playBut {
    display: inline-block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #00b894;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.playBut .triangle {
    -webkit-transition: all 0.7s ease-in-out;
    transition: all 0.7s ease-in-out;
    stroke-dasharray: 240;
    stroke-dashoffset: 480;
    stroke: #fff; /* White triangle initially */
    transform: translateY(0);
}

.playBut:hover .triangle {
    stroke-dashoffset: 0;
    opacity: 1;
    stroke: #f8aa28;
    animation: nudge 0.7s ease-in-out;
}

@keyframes nudge {
    0% { transform: translateX(0); }
    30% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    70% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

.playBut:hover .circle {
    stroke-dashoffset: 0;
    opacity: 1;
}

/* Styling for the video iframe */
.video-iframe {
    width: 100%;
    aspect-ratio: 16/9;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #10b981;
}
