/* Golf-themed Landing Page Styles */
.landing-page {
    background: linear-gradient(135deg, #1e5128 0%, #2d6a4f 50%, #40916c 100%);
    min-height: 100vh;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.welcome-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto !important;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-section h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #1e5128, #40916c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    font-weight: 800;
    animation: slideInDown 0.6s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-section > p {
    font-size: 1.2rem !important;
    color: #2d6a4f !important;
    margin-bottom: 30px !important;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Golf Ball Animation */
.golf-animation-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 450px;
    margin: 40px auto;
    perspective: 1500px;
    transform-style: preserve-3d;
}

.golf-course {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, #74c69d 0%, #52b788 40%, #40916c 70%, #2d6a4f 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 -10px 30px rgba(0, 0, 0, 0.2),
        inset 0 10px 20px rgba(255, 255, 255, 0.1),
        0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

/* Golf course mowing pattern for realism */
.golf-course::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: repeating-conic-gradient(
        from 0deg at center,
        transparent 0deg,
        transparent 15deg,
        rgba(255, 255, 255, 0.02) 15deg,
        rgba(255, 255, 255, 0.02) 30deg
    );
}

/* Hole on the green - centered */
.golf-course::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, #000 0%, #1a1a1a 60%, #333 100%);
    border-radius: 50%;
    box-shadow: 
        inset 0 5px 15px rgba(0, 0, 0, 0.9),
        0 0 0 4px rgba(80, 120, 90, 0.8),
        0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.golf-flag {
    position: absolute;
    left: 50%;
    bottom: 200px;
    transform: translateX(-50%);
    width: 4px;
    height: 120px;
    background: linear-gradient(to bottom, #444, #222);
    border-radius: 2px;
    animation: flagSway 3s ease-in-out infinite;
    transform-origin: bottom center;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.golf-flag::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    width: 35px;
    height: 25px;
    background: linear-gradient(135deg, #ff4757 0%, #e63946 50%, #c0282f 100%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    animation: flagWave 2s ease-in-out infinite;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transform-origin: left center;
}

.golf-flag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@keyframes flagSway {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    25% { transform: translateX(-50%) rotate(1.5deg); }
    75% { transform: translateX(-50%) rotate(-1.5deg); }
}

@keyframes flagWave {
    0%, 100% { transform: rotateY(0deg) scaleX(1); }
    25% { transform: rotateY(15deg) scaleX(0.95); }
    50% { transform: rotateY(0deg) scaleX(0.9); }
    75% { transform: rotateY(-15deg) scaleX(0.95); }
}

.golf-ball {
    position: absolute;
    left: 10%;
    bottom: 80px;
    width: 35px;
    height: 35px;
    background: radial-gradient(circle at 35% 35%, #ffffff, #f5f5f5 40%, #d0d0d0);
    border-radius: 50%;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        inset -3px -3px 8px rgba(0, 0, 0, 0.15),
        inset 2px 2px 5px rgba(255, 255, 255, 0.8);
    animation: golfBallRoll 10s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    z-index: 3;
}

/* Golf ball dimples for realism */
.golf-ball::before,
.golf-ball::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(200, 200, 200, 0.6);
    border-radius: 50%;
    box-shadow: 
        5px 3px 0 rgba(200, 200, 200, 0.5),
        10px 8px 0 rgba(200, 200, 200, 0.4),
        3px 12px 0 rgba(200, 200, 200, 0.5),
        15px 5px 0 rgba(200, 200, 200, 0.4);
}

.golf-ball::before {
    top: 6px;
    left: 8px;
}

.golf-ball::after {
    top: 14px;
    right: 10px;
}

/* Ball shadow */
.ball-shadow {
    position: absolute;
    left: 10%;
    bottom: 75px;
    width: 35px;
    height: 8px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.5), transparent 70%);
    border-radius: 50%;
    animation: ballShadow 10s cubic-bezier(0.45, 0, 0.55, 1) infinite;
    filter: blur(3px);
    z-index: 1;
}

@keyframes golfBallRoll {
    0% {
        left: 10%;
        bottom: 80px;
        transform: translateX(-50%) rotate(0deg) scale(1);
        opacity: 1;
    }
    15% {
        left: 25%;
        bottom: 140px;
        transform: translateX(-50%) rotate(200deg) scale(1.05);
        opacity: 1;
    }
    25% {
        left: 38%;
        bottom: 110px;
        transform: translateX(-50%) rotate(420deg) scale(1);
        opacity: 1;
    }
    35% {
        left: 45%;
        bottom: 150px;
        transform: translateX(-50%) rotate(600deg) scale(1.03);
        opacity: 1;
    }
    50% {
        left: 50%;
        bottom: 190px;
        transform: translateX(-50%) rotate(900deg) scale(0.95);
        opacity: 1;
    }
    60% {
        left: 50%;
        bottom: 200px;
        transform: translateX(-50%) rotate(1080deg) scale(0.7);
        opacity: 0.8;
    }
    70% {
        left: 50%;
        bottom: 200px;
        transform: translateX(-50%) rotate(1260deg) scale(0.4);
        opacity: 0.4;
    }
    75% {
        left: 50%;
        bottom: 200px;
        transform: translateX(-50%) rotate(1440deg) scale(0.1);
        opacity: 0;
    }
    75.1%, 100% {
        left: 10%;
        bottom: 80px;
        transform: translateX(-50%) rotate(0deg) scale(1);
        opacity: 0;
    }
    99% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes ballShadow {
    0% {
        left: 10%;
        width: 35px;
        opacity: 0.5;
    }
    15% {
        left: 25%;
        width: 25px;
        opacity: 0.3;
    }
    25% {
        left: 38%;
        width: 32px;
        opacity: 0.5;
    }
    35% {
        left: 45%;
        width: 28px;
        opacity: 0.4;
    }
    50% {
        left: 50%;
        width: 25px;
        opacity: 0.4;
    }
    60% {
        left: 50%;
        width: 18px;
        opacity: 0.3;
    }
    70% {
        left: 50%;
        width: 10px;
        opacity: 0.2;
    }
    75%, 100% {
        left: 50%;
        width: 5px;
        opacity: 0;
    }
}

/* Action Buttons Styling */
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 40px !important;
}

.action-buttons button,
.action-buttons a {
    padding: 14px 30px !important;
    border: none !important;
    border-radius: 50px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.action-buttons button::before,
.action-buttons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-buttons button:hover::before,
.action-buttons a:hover::before {
    width: 300px;
    height: 300px;
}

.action-buttons button:hover,
.action-buttons a:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3) !important;
}

#popup-login-button {
    background: linear-gradient(135deg, #007bff, #0056b3) !important;
    color: #fff !important;
}

#popup-register-button {
    background: linear-gradient(135deg, #6c757d, #495057) !important;
    color: #fff !important;
}

#place-bets-button {
    background: linear-gradient(135deg, #28a745, #1e7e34) !important;
    color: #fff !important;
}

#popup-update-password-button {
    background: linear-gradient(135deg, #17a2b8, #117a8b) !important;
    color: #fff !important;
}

#popup-find-username-button {
    background: linear-gradient(135deg, #17a2b8, #117a8b) !important;
    color: #fff !important;
}

#main-page-forgot-password-button {
    background: linear-gradient(135deg, #ffc107, #e0a800) !important;
    color: #212529 !important;
}

#logout-form button {
    background: linear-gradient(135deg, #dc3545, #bd2130) !important;
    color: #fff !important;
}

/* Feedback Messages */
.action-buttons > div[style*="border"] {
    animation: slideInDown 0.5s ease-out;
    border-radius: 10px !important;
    font-weight: 500;
}

/* General styles for the popup forms */
.modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    z-index: 1000;
    width: 100%;
    max-width: 450px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -48%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Form elements */
.modal h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
    text-align: center;
    color: #1e5128;
    font-weight: 700;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal label {
    font-weight: bold;
    margin-bottom: 5px;
}
.modal input[type="text"],
.modal input[type="password"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%; /* Ensure both fields have the same width */
    box-sizing: border-box; /* Include padding and border in the width */
}

.modal input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.modal button {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.modal button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.modal button.btn-primary {
    background: linear-gradient(135deg, #1e5128, #40916c);
    color: #fff;
}

.modal button.btn-secondary {
    background: linear-gradient(135deg, #e0e0e0, #bdbdbd);
    color: #333;
}

/* Add a backdrop for the modal */
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    backdrop-filter: blur(5px);
    animation: backdropFadeIn 0.3s ease-out;
}

@keyframes backdropFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-section {
        padding: 40px 20px !important;
    }
    
    .welcome-section h1 {
        font-size: 2rem;
    }
    
    .golf-animation-container {
        height: 350px;
    }
    
    .golf-course {
        width: 300px;
        height: 300px;
    }
    
    .golf-flag {
        height: 90px;
        bottom: 150px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons button,
    .action-buttons a {
        width: 100%;
        max-width: 300px;
    }
}
/* Welcome User Box */
.welcome-user-box {
    text-align: right;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #2d6a4f;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #1e5128;
    font-size: 16px;
}

.welcome-user-box strong {
    color: #1e5128;
    font-weight: 700;
}

/* General table styles */
.teams-table,
.striped {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.teams-table th,
.striped th {
    background: linear-gradient(135deg, #1e5128, #2d6a4f) !important;
    color: #ffffff !important;
    padding: 15px;
    text-align: center;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.teams-table td,
.striped td {
    padding: 15px;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    vertical-align: middle;
    color: #333;
    transition: background-color 0.3s ease;
}

.teams-table tr:nth-child(even) td,
.striped tr:nth-child(even) td {
    background-color: #f8f9fa;
}

.teams-table tr:last-child td,
.striped tr:last-child td {
    border-bottom: none;
}

.striped th:first-child,
.striped td:first-child {
    width: 10%;
    text-align: center;
}

.striped th:nth-child(2),
.striped td:nth-child(2) {
    width: 40%;
    text-align: left;
}

.striped th:nth-child(3),
.striped td:nth-child(3) {
    width: 10%;
    text-align: center;
}

.teams-table tbody tr:hover td,
.striped tbody tr:hover td {
    background-color: #d4edda;
    cursor: pointer;
}

.teams-table input[type="radio"] {
    transform: scale(1.2);
    margin: 0 auto;
    display: block;
}
@media (max-width: 768px) {
    .striped th, .striped td {
        font-size: 14px; /* Reduce font size for smaller screens */
    }
    .striped {
        display: block; /* Allow the table to scroll horizontally */
        overflow-x: auto; /* Enable horizontal scrolling */
    }
}
.user-bets-table {
    width: 70%; /* Make the table smaller */
    margin: 0 auto; /* Center the table */
    border: 1px solid #ddd;
}

.user-bets-table th,
.user-bets-table td {
    padding: 8px;
    text-align: center;
}

.user-bets-table th:nth-child(2),
.user-bets-table td:nth-child(2) {
    width: 20%; /* Reduce the width of the Total Bets column */
    text-align: center;
}

.user-bets-table th:nth-child(1),
.user-bets-table td:nth-child(1) {
    width: 50%; /* Make the Username column wider */
    text-align: left;
}

.user-bets-table tr:hover {
    background-color: #f2f2f2;
}

form input[type="text"] {
    width: 300px;
    padding: 5px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.bet-amount {
    margin: 20px 0;
}

.bet-amount label {
    font-weight: bold;
    margin-right: 10px;
}

.bet-amount input {
    padding: 5px;
    font-size: 16px;
    width: 100px;
}

button,
.button,
input[type="submit"] {
    background: linear-gradient(135deg, #2d6a4f, #1e5128) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline-block;
}

button:hover,
.button:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, #40916c, #2d6a4f) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

button.button-danger {
    background: linear-gradient(135deg, #dc3545, #bd2130) !important;
}

button.button-danger:hover {
    background: linear-gradient(135deg, #c82333, #a71d2a) !important;
}

button.button-primary,
.button-primary {
    background: linear-gradient(135deg, #2d6a4f, #1e5128) !important;
}

button.button-secondary,
.button-secondary {
    background: linear-gradient(135deg, #6c757d, #495057) !important;
}

button.button-secondary:hover,
.button-secondary:hover {
    background: linear-gradient(135deg, #5a6268, #3d4347) !important;
}
/* Style for the bet amount input */
.bet-amount input {
    width: 100px; /* Set a fixed width */
    padding: 5px; /* Add padding */
    font-size: 16px; /* Increase font size */
    border: 1px solid #ccc; /* Add a light border */
    border-radius: 5px; /* Round the corners */
}

/* Style for the bet amount label */
.bet-amount label {
    font-weight: bold;
    margin-right: 10px;
}
.already-bet {
    color: #0073aa;
    font-weight: bold;
    font-size: 14px;
}
/* Style all text inputs globally */
input[type="text"] {
    width: 100%; /* Make the input span the full width of its container */
    padding: 8px; /* Add padding for better usability */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    border: 1px solid #ccc; /* Add a subtle border */
    border-radius: 4px; /* Add rounded corners */
    font-size: 14px; /* Adjust font size for readability */
}

/* Optional: Add hover and focus effects */
input[type="text"]:focus {
    border-color: #0073aa; /* Change border color on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5); /* Add a subtle shadow */
}
/* Style all dropdowns globally */
select {
    width: 100%; /* Make the dropdown span the full width of its container */
    padding: 8px; /* Add padding for better usability */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
    border: 1px solid #ccc; /* Add a subtle border */
    border-radius: 4px; /* Add rounded corners */
    font-size: 14px; /* Adjust font size for readability */
    background-color: #fff; /* Set a white background */
    appearance: none; /* Remove default browser styling */
}

/* Optional: Add hover and focus effects */
select:focus {
    border-color: #0073aa; /* Change border color on focus */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.5); /* Add a subtle shadow */
}
/* Highlight rows marked as paid */
.paid-row {
    background-color: #d4edda; /* Light green background */
    color: #155724; /* Dark green text */
}
input[type="number"]#bet_amount {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}
.site-main {
    width: 100% !important; /* Allow the content area to take up the full width */
    max-width: 1200px; /* Optional: Set a maximum width for larger screens */
    margin: 0 auto; /* Center the content */
    padding: 0 20px; /* Add some padding for spacing */
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}
.add-team-table {
    width: 60%; /* Make the table smaller */
    margin: 0 auto; /* Center the table */
    border: 1px solid #ddd; /* Add a border for better visibility */
}

.add-team-table th,
.add-team-table td {
    padding: 8px; /* Reduce padding to make the table more compact */
    text-align: left; /* Align text to the left */
}

.add-team-table input[type="text"] {
    width: 90%; /* Reduce the width of input fields */
    margin-bottom: 5px; /* Add spacing between inputs */
}
body {
    font-family: 'Arial', sans-serif; /* Use a fallback font */
}
/* Explicitly target the .payouts table */

.payouts {
    width: 80%; /* Reduce the overall width of the table */
    margin: 20px auto; /* Center the table */
    border-collapse: collapse; /* Remove spacing between table cells */
    font-size: 14px; /* Smaller font size for compactness */
}

.payouts th,
.payouts td {
    padding: 10px; /* Add padding for readability */
    text-align: left; /* Align text to the left */
    border: 1px solid #ddd; /* Add a light border */
}

/* Match the column heading styles with other striped tables */
.payouts th {
    background-color: #64f570; /* Match the green background color */
    color: #fff; /* White text color */
    font-weight: bold; /* Bold header text */
}

.payouts tr:nth-child(even) {
    background-color: #f9f9f9; /* Light gray background for even rows */
}

.payouts tr:hover {
    background-color: #f1f1f1; /* Highlight row on hover */
}

/* Explicitly set column widths for the payouts table */
.payouts td:first-child,
.payouts th:first-child {
    width: 40%; /* Make the Username column wider */
}

.payouts td:nth-child(2),
.payouts th:nth-child(2) {
    width: 20%; /* Teams column */
    text-align: center; /* Center-align the text */
}

.payouts td:nth-child(3),
.payouts th:nth-child(3) {
    width: 20%; /* Amounts Bet column */
    text-align: center; /* Center-align the text */
}

.payouts td:nth-child(4),
.payouts th:nth-child(4) {
    width: 20%; /* Total Payout column */
    text-align: center; /* Center-align the text */
}
.team-input {
    width: 150px;
    box-sizing: border-box; /* Ensures padding is included in the width */
}
/* Ensure the green background for paid rows overrides alternating row styles */
.paid-row {
    background-color: #d4edda !important; /* Light green background */
    color: #155724; /* Dark green text for better contrast */
}
/* Make the tagline text white */
.site-description, .tagline {
    color: #fff; /* Set text color to white */
}
.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-right: 5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}