body {
    font-family: Verdana, Geneva, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

.container {
    max-width: 480px;
    margin: 60px auto;
    background: linear-gradient(145deg, #2a2d3a 0%, #1e1e2f 100%);
    padding: 50px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    text-align: center;
    
}

h1 {
    color: #ffffff;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 32px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

form label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 22px;
    
    border: 2px solid #dfe6e9;
    box-sizing: border-box;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 15px;
}

form input:focus {
    outline: none;
    border-color: #6c5ce7;
}

form button {
    background: linear-gradient(45deg, #4300fc, #5e0ae6);
    color: white;
    padding: 18px 40px;
    border: none;
    
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    font-family: Verdana, Geneva, sans-serif;
    box-shadow: 0 4px 15px rgba(18, 15, 187, 0.3);
    transition: all 0.3s ease;
}

form button:hover {
    background: linear-gradient(45deg, #1839a8, #1c0f8f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 41, 121, 0.4);
}

a {
    display: inline-block;
    margin-top: 25px;
    color: #5f27cd;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
   
}

a:hover {
    background-color: #f0f0f0;
}

p {
    color: #2d3436;
    font-size: 16px;
    line-height: 1.8;
}

p strong {
    color: #5f27cd;
}

.result-header {
    margin-bottom: 30px;
}

.result-header h1 {
    font-size: 30px;
    color: #ffffff;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-card {
    background: linear-gradient(145deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.result-label {
    color: #636e72;
    font-size: 15px;
    font-weight: 500;
}

.result-value {
    color: #2d3436;
    font-size: 16px;
    font-weight: 600;
}

.result-divider {
    height: 2px;
    background: #dfe6e9;
    margin: 20px 0;
}

.result-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.result-label-main {
    color: #636e72;
    font-size: 14px;
    margin-bottom: 10px;
}

.result-value-main {
    color: #5f27cd;
    font-size: 32px;
    font-weight: 700;
}

.result-badge {
    text-align: center;
    padding: 15px 25px;

    font-weight: 600;
    font-size: 16px;
    margin-top: 20px;
}

.result-badge.odlicno {
    background: linear-gradient(45deg, #00b894, #00cec9);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 184, 148, 0.3);
}

.result-badge.dobro {
    background: linear-gradient(45deg, #0984e3, #74b9ff);
    color: white;
    box-shadow: 0 4px 15px rgba(9, 132, 227, 0.3);
}

.result-badge.prosjecno {
    background: linear-gradient(45deg, #fdcb6e, #ffeaa7);
    color: #2d3436;
    box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.result-badge.lose {
    background: linear-gradient(45deg, #d63031, #ff7675);
    color: white;
    box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3);
}

.back-button {
    display: inline-block;
    margin-top: 25px;
    color: white;
    background: #6c5ce7;
    text-decoration: none;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 25px;
}

.back-button:hover {
    background: #5f27cd;
}